From c2ede60e645fb46146f97feca698c6254da8168a Mon Sep 17 00:00:00 2001
From: taskmanager <51055281+Mantaraix@users.noreply.github.com>
Date: Wed, 19 Jul 2023 19:43:25 +0100
Subject: [PATCH] Author
---
pages/blog/welcome.md | 39 +++++++++++++++++++++++
pages/blogExample.md | 1 +
pages/revivalExample.md | 2 ++
pages/revivals/mercury.md | 1 +
src/lib/types.ts | 2 ++
src/routes/post/[post]/+page.svelte | 2 +-
src/routes/revival/[revival]/+page.svelte | 2 +-
7 files changed, 47 insertions(+), 2 deletions(-)
diff --git a/pages/blog/welcome.md b/pages/blog/welcome.md
index c2a7603..b64324b 100644
--- a/pages/blog/welcome.md
+++ b/pages/blog/welcome.md
@@ -1,6 +1,45 @@
---
title: Welcome!
date: 2023-07-19 05:08 PM
+author: task
---
Welcome to the Revival Archive!
+
+We've began migrating revivals from our [Discord](https://discord.gg/zfC3VH2WBa) to the Archive!
+
+Up until the date of this blog post, there are about **70** revivals and about 30+ defunct revivals in our Discord server.
+Not all of these revivals meet the requirements for the Revival Archive, so about half of those revivals will be gone.
+
+In a span of a week or so, the archive should have all the revivals migrated from the Discord + reviews.
+
+## What's been happening in the past few weeks?
+
+### RBXGS Binaries
+RBXGS binaries dating from early November 2007 to early March 2008 were found.
+These binaries were used back then to host game servers and render thumbnails. In addition to these binaries, debug symbols were included which have line numbers, function names, full class structs and global variable names.
+
+You can download these binaries at https://archive.org/details/rbxgssetup
+
+### Austiblox
+
+A popular revival named Austiblox (previous domain: austiblox.net) suddenly went defunct due to internal and community problems.
+
+Going to their website read:
+> Austiblox has been closed until further notice due to the community being terrible.
+> If we come back, everything will be wiped.
+> Probably wont tho.
+> Thank you for playing!
+> We ran for two years! What an accomplishment!
+
+In addition to these internal and community problems - IPs and even emails of 300 users were leaked! (if you were part of the 300, Austiblox have apparently sent you an email.)
+
+However, it seems like the owners have retconned this and decided to not take Austiblox down. Going to http://austiverse.com/notice as of this blog post reads:
+
+> Austiblox has been closed until further notice due to a site and client revamp.
+> We are no longer dead. Expect more from us soon.
+
+If you thought the owners couldn't change more things, you're in for a surprise. They've now renamed Austiblox to Rewinder and moved their website to .
+Their [Discord](https://discord.gg/austiblox) seems to remain active as they work on their "site and client revamp".
+
+**That seems like all for now! Thanks for reading.**
\ No newline at end of file
diff --git a/pages/blogExample.md b/pages/blogExample.md
index e6fc929..2420e30 100644
--- a/pages/blogExample.md
+++ b/pages/blogExample.md
@@ -6,6 +6,7 @@ title: Second blog post # Two posts shouldn't have the same title
# Date will show as "Not yet published" if omitted
date: 2023-07-09 11:40 AM # Must be in any valid JS date format
# updated: 2023-07-12 05:52 AM
+author: you # Your username.
---
# The full blog post will go here.
diff --git a/pages/revivalExample.md b/pages/revivalExample.md
index ac46029..b2cf2bb 100644
--- a/pages/revivalExample.md
+++ b/pages/revivalExample.md
@@ -3,6 +3,7 @@
# Try not to have spaces in the filename
name: Mercury # Two revivals shouldn't have the same name
+# Date will show as "Not yet published" if omitted
date: 2023-07-09 01:58 PM # Must be in any valid JS date format
logo: mercury.svg # Optional, stored in /static/logos/{whatever}
clients: # Optional, list of client years available
@@ -17,6 +18,7 @@ rating: # Optional, rating is out of 5
# Overview is in plain text, shows on the revival index page
overview: | # Optional, MUST be indented with spaces because yaml.
Mercury is a revival
+author: you # Your username.
---
# The full revival review will go here.
diff --git a/pages/revivals/mercury.md b/pages/revivals/mercury.md
index b09a093..8a9d028 100644
--- a/pages/revivals/mercury.md
+++ b/pages/revivals/mercury.md
@@ -8,4 +8,5 @@ clients:
- 2013
overview: |
Example revival
+author: task
---
diff --git a/src/lib/types.ts b/src/lib/types.ts
index fc2b892..5a80fb1 100644
--- a/src/lib/types.ts
+++ b/src/lib/types.ts
@@ -13,10 +13,12 @@ export type RevivalMetadata = {
overall: number
}
overview: string
+ author: string
}
export type PostMetadata = {
title: string
date: Date
+ author: string
updated?: Date
}
diff --git a/src/routes/post/[post]/+page.svelte b/src/routes/post/[post]/+page.svelte
index d8f301d..d3243d8 100644
--- a/src/routes/post/[post]/+page.svelte
+++ b/src/routes/post/[post]/+page.svelte
@@ -17,7 +17,7 @@
{data.title}
- {when(data.date)}
+ {when(data.date)} by {data.author}
{#if data.updated}
diff --git a/src/routes/revival/[revival]/+page.svelte b/src/routes/revival/[revival]/+page.svelte
index a75bbf3..7025f8f 100644
--- a/src/routes/revival/[revival]/+page.svelte
+++ b/src/routes/revival/[revival]/+page.svelte
@@ -31,7 +31,7 @@
{/if}
- {when(data.date)}
+ {when(data.date)} by {data.author}
{#if data.updated}