This commit is contained in:
parent
8a042383da
commit
860827539c
|
|
@ -2,6 +2,7 @@
|
||||||
name: Novetus
|
name: Novetus
|
||||||
website: https://bitl.itch.io/novetus
|
website: https://bitl.itch.io/novetus
|
||||||
logo: novetus.png
|
logo: novetus.png
|
||||||
|
date: 2023-07-09 01:58 PM
|
||||||
clients:
|
clients:
|
||||||
- 2007
|
- 2007
|
||||||
- 2008
|
- 2008
|
||||||
|
|
@ -10,6 +11,14 @@ clients:
|
||||||
- 2011
|
- 2011
|
||||||
- 2012
|
- 2012
|
||||||
overview: |
|
overview: |
|
||||||
Novetus is a long-standing part of the revival community and has been there from the very beginning - over time it has been updated with new features that solidify its place in this community.
|
Novetus is a long-standing part of the revival community and has been there for quite a while - over time it has been updated with new features that solidify its place in this community.
|
||||||
author: task
|
author: task
|
||||||
|
rating: # Optional, rating is out of 5
|
||||||
|
clients: 5
|
||||||
|
overall: 5
|
||||||
---
|
---
|
||||||
|
Novetus is a multi-client launcher created by Bitl back in late 2018 as a successor to his previous project RBXLegacy. In addition to being built on the same codebase, Novetus brings a heap of new features that elevates it above its predecessor and improves on user experience.
|
||||||
|
|
||||||
|
<img src="/revivals/novetus-1.png" alt="RBXLegacy" height="256" class="float-left inline-block" />
|
||||||
|
|
||||||
|
fsdfdssdadadadadadadadadadadadadadadadadsssssssssssssssssssssssssssssss
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div class="xl:max-w-300 flex flex-col xl:flex-row">
|
<div class="xl:max-w-300 flex flex-col xl:flex-row">
|
||||||
<article class="w-180 pt-8">
|
<article class="xl:w-180 pt-8">
|
||||||
<div class="-ms-4 flex flex-col">
|
<div class="-ms-4 flex flex-col">
|
||||||
{#if data.logo}
|
{#if data.logo}
|
||||||
<img
|
<img
|
||||||
|
|
@ -50,27 +50,28 @@
|
||||||
<div class="post mb-10">
|
<div class="post mb-10">
|
||||||
<svelte:component this={data.content} />
|
<svelte:component this={data.content} />
|
||||||
</div>
|
</div>
|
||||||
|
<div class="mt-5">
|
||||||
|
<h1>Rating</h1>
|
||||||
|
|
||||||
<h1>Rating</h1>
|
<table>
|
||||||
|
{#each Object.keys(ratingCategories) as category}
|
||||||
<table>
|
<tr>
|
||||||
{#each Object.keys(ratingCategories) as category}
|
<td
|
||||||
<tr>
|
class:pt-4={category == "overall"}
|
||||||
<td
|
class="pe-6">
|
||||||
class:pt-4={category == "overall"}
|
{category.charAt(0).toUpperCase() +
|
||||||
class="pe-6">
|
category.slice(1)}
|
||||||
{category.charAt(0).toUpperCase() +
|
</td>
|
||||||
category.slice(1)}
|
<td class:pt-4={category == "overall"}>
|
||||||
</td>
|
<Stars
|
||||||
<td class:pt-4={category == "overall"}>
|
rating={ratingCategories[
|
||||||
<Stars
|
category
|
||||||
rating={ratingCategories[
|
]} />
|
||||||
category
|
</td>
|
||||||
]} />
|
</tr>
|
||||||
</td>
|
{/each}
|
||||||
</tr>
|
</table>
|
||||||
{/each}
|
</div>
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<h2 class="font-300 text-center tracking-wide">
|
<h2 class="font-300 text-center tracking-wide">
|
||||||
|
|
@ -142,4 +143,8 @@
|
||||||
:global(p)
|
:global(p)
|
||||||
margin 0
|
margin 0
|
||||||
opacity 0.8
|
opacity 0.8
|
||||||
|
|
||||||
|
:global(p)
|
||||||
|
word-wrap: break-word
|
||||||
|
float: right
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 53 KiB |
Loading…
Reference in New Issue