diff --git a/scripts/projects.js b/scripts/projects.js index 9ef15f6..bca38ec 100644 --- a/scripts/projects.js +++ b/scripts/projects.js @@ -16,16 +16,6 @@ const projects = [{ status: "In development", icon: "wildwood" }, - { - name: "MLEM", - desc: "MLEM is short for (M)LEM (L)ibrary by (E)llpeck for (M)onoGame. It's a set of NuGet packages that make creating games with the .NET-based framework MonoGame a lot easier. MLEM includes a user interface system, a bunch of extension methods, a simple startup class and more.", - links: { - "Get it on NuGet": "https://www.nuget.org/packages?q=mlem", - "Code on GitHub": "https://github.com/Ellpeck/MLEM" - }, - status: "Side project", - icon: "mlem" - }, { name: 'Actually Additions', desc: 'Actually Additions is a rather popular Minecraft mod that I used to work on. It\'s become widely known in the modding community and has reached over 10 million downloads by now, which is crazy. I don\'t work on it anymore myself, but it\'s being maintained for current versions by someone else.', @@ -39,12 +29,22 @@ const projects = [{ { name: "Nature's Aura", desc: "Nature's Aura is a new Minecraft mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.", - status: 'Paused', + status: 'In development', links: { 'CurseForge page': 'https://minecraft.curseforge.com/projects/natures-aura' }, icon: 'na' }, + { + name: "MLEM", + desc: "MLEM is short for (M)LEM (L)ibrary by (E)llpeck for (M)onoGame. It's a set of NuGet packages that make creating games with the .NET-based framework MonoGame a lot easier. MLEM includes a user interface system, a bunch of extension methods, a simple startup class and more.", + links: { + "Get it on NuGet": "https://www.nuget.org/packages?q=mlem", + "Code on GitHub": "https://github.com/Ellpeck/MLEM" + }, + status: "Side project", + icon: "mlem" + }, { name: "Tetro", desc: "Tetro is a Tetris clone I wrote in an afternoon and a bit. You can play it in the browser. It also features multiple game piece designs and some custom game modes. It was pretty fun to make, and it's pretty fun to play.", diff --git a/scripts/quote.js b/scripts/quote.js index 4a4bc88..5db46d8 100644 --- a/scripts/quote.js +++ b/scripts/quote.js @@ -22,6 +22,8 @@ Wir Sind Helden Juli MALINDA + Demi Lovato + Taylor Swift */ const quotes = [ @@ -162,6 +164,22 @@ const quotes = [ "Without love, you can save the world", "Nothing is ever anyone's fault", "We're all just products of childhood trauma", - "The moment is me" + "The moment is me", + "You need to calm down", + "You're being too loud", + "Shade never made anybody less gay", + "I forgot that you existed", + "I thought that it would kill me but it didn't", + "I'd be the man", + "I will be rising from the ground", + "Like a skyscraper", + "We can't back down, there's too much at stake", + "This is serious, don't walk away", + "We can't pretend it's not happening", + "You - Me, we're face to face but we don't see eye to eye", + "Like fire and rain, you can drive me insane", + "I can't stay mad at you for anything", + "You're the harmony to every song I sing", + "I wouldn't change a, wouldn't change a thing" ]; $('#quote-text').html('' + quotes[Math.floor(Math.random() * quotes.length)] + ''); \ No newline at end of file