From cd0e6153de2fc143e29449fe5fe5384d42d5dc24 Mon Sep 17 00:00:00 2001 From: James Packer Date: Tue, 21 Apr 2026 08:06:11 +0100 Subject: [PATCH] Update some older copyright dates, and ensure the title is visible at lower resolutions. --- LICENSE | 2 +- README | 2 +- src/ScenarioChoice.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 50cc7a6d..724e49fa 100644 --- a/LICENSE +++ b/LICENSE @@ -4,7 +4,7 @@ FOR NAVIGATION. BRIDGE COMMAND MUST NOT BE USED FOR SAFETY-CRITICAL APPLICATIONS SUCH AS NAVIGATION ON THE SEA. -Bridge Command is Copyright (C) 2025 by James Packer. The model files +Bridge Command is Copyright (C) 2026 by James Packer. The model files distributed in this release are copyright by their authors. In this release, models have been provided by Ragnar, Juergen Klemp, Simon D Richardson, Jason Simpson, Thierry Videlaine, NETC (Naval Education diff --git a/README b/README index 400cc4c8..1d614f6e 100644 --- a/README +++ b/README @@ -18,7 +18,7 @@ src/CompilingLinuxAndMac.txt Licence ------- -Bridge Command is Copyright (C) 2025 by James Packer. The model files +Bridge Command is Copyright (C) 2026 by James Packer. The model files distributed in this release are copyright by their authors. In this release, models have been provided by Ragnar, Juergen Klemp, Simon D Richardson, Jason Simpson, Thierry Videlaine, NETC (Naval Education diff --git a/src/ScenarioChoice.cpp b/src/ScenarioChoice.cpp index 1ffc5e6b..9ac609d5 100644 --- a/src/ScenarioChoice.cpp +++ b/src/ScenarioChoice.cpp @@ -47,13 +47,13 @@ void ScenarioChoice::chooseScenario(std::string& scenarioName, std::string& host //Make gui elements irr::core::stringw titleText(LONGNAME.c_str()); - titleText.append(L"\nCopyright 2024 James Packer\n\n"); + titleText.append(L"\nCopyright 2026 James Packer\n\n"); titleText.append(L"Build: "); titleText.append(irr::core::stringw(__DATE__)); titleText.append(L" "); titleText.append(irr::core::stringw(__TIME__)); irr::core::dimension2d titleDimensions = gui->getSkin()->getFont()->getDimension(titleText.c_str()); - irr::gui::IGUIStaticText* title = gui->addStaticText(titleText.c_str(),irr::core::rect((su-titleDimensions.Width)/2, 0.017*sh, (su+titleDimensions.Width)/2, 0.09*sh)); + irr::gui::IGUIStaticText* title = gui->addStaticText(titleText.c_str(),irr::core::rect((su-titleDimensions.Width)/2, 0.00*sh, (su+titleDimensions.Width)/2, 0.13*sh)); title->setTextAlignment(irr::gui::EGUIA_CENTER,irr::gui::EGUIA_CENTER); irr::gui::IGUIStaticText* instruction = gui->addStaticText(language->translate("scnChoose").c_str(),irr::core::rect(0.02*su,0.13*sh,0.30*su, 0.17*sh));