From 64c4c92cb13457e6d9c3a364ba8beed653976908 Mon Sep 17 00:00:00 2001 From: limited_dev Date: Wed, 14 Jun 2023 16:15:56 +0200 Subject: [PATCH] feat: added QR Code to index fix: fixed language in index Signed-off-by: limited_dev --- ImageBoardServerApp/Pages/Basic/Index.razor | 12 +++++++++--- ImageBoardServerApp/Util/TheManager.cs | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ImageBoardServerApp/Pages/Basic/Index.razor b/ImageBoardServerApp/Pages/Basic/Index.razor index e4454fd..74fa521 100644 --- a/ImageBoardServerApp/Pages/Basic/Index.razor +++ b/ImageBoardServerApp/Pages/Basic/Index.razor @@ -3,7 +3,7 @@ @using ImageBoardServerApp.Data.Repository @inject AuthenticationStateProvider authStateProvider -

BulletBoard @ver

+

BulletBoards @ver

This is a simple imageboard made in Razor Server.
@@ -16,7 +16,7 @@ Check out the project on Gitlab.

- We're currently @amountOfUsers User(s), viewing @amountOfPosts Post(s) with @amountOfComments Comment(s). + We're currently @amountOfUsers users, viewing @amountOfPosts post with @amountOfComments comment.
Click here to: @@ -25,12 +25,18 @@ Create an account to start posting - + +   + or Log into your account + +
+
+ QR CODE

@code{ diff --git a/ImageBoardServerApp/Util/TheManager.cs b/ImageBoardServerApp/Util/TheManager.cs index 019c91d..ae06cb4 100644 --- a/ImageBoardServerApp/Util/TheManager.cs +++ b/ImageBoardServerApp/Util/TheManager.cs @@ -6,7 +6,7 @@ namespace ImageBoardServerApp.Util; public class TheManager { - public static string version = "v1.0.0-rc1"; + public static string version = "v1.0.0-rc2"; private static long getDiff(PostData post) {