From b611b52c7a87cad99127908598bab019fe9e7c3f Mon Sep 17 00:00:00 2001 From: Lucas Dower Date: Mon, 28 Apr 2025 21:29:23 +0100 Subject: [PATCH] Bump version and update announcement message --- src/config.ts | 4 ++-- src/ui/components/header.ts | 3 ++- styles.css | 7 +++++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/config.ts b/src/config.ts index adea947..4306432 100644 --- a/src/config.ts +++ b/src/config.ts @@ -10,8 +10,8 @@ export class AppConfig { public readonly RELEASE_MODE; public readonly MAJOR_VERSION = 0; - public readonly MINOR_VERSION = 8; - public readonly HOTFIX_VERSION = 9; + public readonly MINOR_VERSION = 9; + public readonly HOTFIX_VERSION = 0; public readonly VERSION_TYPE: 'd' | 'a' | 'r' = 'r'; // dev, alpha, or release build public readonly MINECRAFT_VERSION = '1.20.1'; diff --git a/src/ui/components/header.ts b/src/ui/components/header.ts index 382bd4f..2bc5031 100644 --- a/src/ui/components/header.ts +++ b/src/ui/components/header.ts @@ -53,7 +53,8 @@ export class HeaderComponent extends BaseComponent { public override generateHTML(): string { return `
- The next release of ObjToSchematic will be a major overhaul with new features coming later in 2024. Join the Discord for updates. + This is the legacy version of ObjToSchematic.
+ It will not receive any more updates, bug fixes, or community support. Pull requests will be considered for merging.
diff --git a/styles.css b/styles.css index f77e0e0..2c57e08 100644 --- a/styles.css +++ b/styles.css @@ -18,6 +18,9 @@ --blue-500: hsl(190, 85%, 27%); --blue-600: hsl(190, 75%, 35%); --blue-700: hsl(190, 58%, 48%); + + --amber-500: rgb(127, 88, 10); + --amber-600: rgb(156, 112, 22); --text-bright: white; --text-light: hsl(0, 0%, 85%); @@ -752,8 +755,8 @@ a { } .announcement { - border: 1px solid var(--blue-600); - background: var(--blue-500); + border: 1px solid var(--amber-600); + background: var(--amber-500); margin-bottom: 30px; padding: 10px; color: var(--text-bright);