Author
This commit is contained in:
parent
4fb67b34fb
commit
c2ede60e64
|
|
@ -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.<br>
|
||||
> If we come back, everything will be wiped.<br>
|
||||
> Probably wont tho.<br>
|
||||
> Thank you for playing!<br>
|
||||
> 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.<br>
|
||||
> 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 <https://rewinder.fun>.
|
||||
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.**
|
||||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -8,4 +8,5 @@ clients:
|
|||
- 2013
|
||||
overview: |
|
||||
Example revival
|
||||
author: task
|
||||
---
|
||||
|
|
|
|||
|
|
@ -13,10 +13,12 @@ export type RevivalMetadata = {
|
|||
overall: number
|
||||
}
|
||||
overview: string
|
||||
author: string
|
||||
}
|
||||
|
||||
export type PostMetadata = {
|
||||
title: string
|
||||
date: Date
|
||||
author: string
|
||||
updated?: Date
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
<span class="mt-2 flex">
|
||||
<h1 class="text-2rem m-0">{data.title}</h1>
|
||||
<span class="mt-a ms-a mb-0.5">
|
||||
{when(data.date)}
|
||||
{when(data.date)} by {data.author}
|
||||
{#if data.updated}
|
||||
<br />
|
||||
<em>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
{/if}
|
||||
</div>
|
||||
<span class="mt-a ms-a mb-0.5">
|
||||
{when(data.date)}
|
||||
{when(data.date)} by {data.author}
|
||||
{#if data.updated}
|
||||
<br />
|
||||
<em>
|
||||
|
|
|
|||
Loading…
Reference in New Issue