From 0f79060f585ed87476fbbc26ca7e3b7367c4863a Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 7 Oct 2025 18:06:16 -0700 Subject: [PATCH] add openfront copyright to loading screen (#2151) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: This will make the copyright notice more clear. Screenshot 2025-10-07 at 6 03 44 PM ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: evan --- resources/lang/en.json | 1 + src/client/GameStartingModal.ts | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/resources/lang/en.json b/resources/lang/en.json index e4771d029..24d5e297d 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -249,6 +249,7 @@ }, "game_starting_modal": { "title": "Game is Starting...", + "code_license": "Code licensed under AGPL-3.0", "desc": "Preparing for the lobby to start. Please wait." }, "difficulty": { diff --git a/src/client/GameStartingModal.ts b/src/client/GameStartingModal.ts index 9ae0ad232..ebbeea98b 100644 --- a/src/client/GameStartingModal.ts +++ b/src/client/GameStartingModal.ts @@ -84,13 +84,20 @@ export class GameStartingModal extends LitElement { .modal button:active { transform: translateY(1px); } + + .copyright { + font-size: 32px; + margin-top: 20px; + opacity: 1; + } `; render() { return html` `; }