From 3f273bf6f8a23677b5db41038d08fb5304180b2d Mon Sep 17 00:00:00 2001 From: JFronny Date: Sun, 29 Jan 2023 18:39:17 +0100 Subject: [PATCH] Update copyright --- LICENSE | 2 +- .../java/io/gitlab/jfronny/inceptum/gtk/window/AboutWindow.java | 2 +- .../io/gitlab/jfronny/inceptum/imgui/window/AboutWindow.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 01122f6..37260e2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ Inceptum - A FOSS Launcher for Minecraft written in Java -Copyright (C) 2021 JFronny +Copyright (C) 2021-2023 JFronny This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/launcher-gtk/src/main/java/io/gitlab/jfronny/inceptum/gtk/window/AboutWindow.java b/launcher-gtk/src/main/java/io/gitlab/jfronny/inceptum/gtk/window/AboutWindow.java index ada000e..07251d0 100644 --- a/launcher-gtk/src/main/java/io/gitlab/jfronny/inceptum/gtk/window/AboutWindow.java +++ b/launcher-gtk/src/main/java/io/gitlab/jfronny/inceptum/gtk/window/AboutWindow.java @@ -9,7 +9,7 @@ import io.gitlab.jfronny.inceptum.gtk.util.I18n; public class AboutWindow extends AboutDialog { public AboutWindow() { programName = "Inceptum"; - copyright = "Copyright (C) 2021 JFronny"; + copyright = "Copyright (C) 2021-2023 JFronny"; version = BuildMetadata.VERSION; licenseType = License.MIT_X11; license = I18n.get("about.license"); diff --git a/launcher-imgui/src/main/java/io/gitlab/jfronny/inceptum/imgui/window/AboutWindow.java b/launcher-imgui/src/main/java/io/gitlab/jfronny/inceptum/imgui/window/AboutWindow.java index 357037b..e7cdc3f 100644 --- a/launcher-imgui/src/main/java/io/gitlab/jfronny/inceptum/imgui/window/AboutWindow.java +++ b/launcher-imgui/src/main/java/io/gitlab/jfronny/inceptum/imgui/window/AboutWindow.java @@ -15,7 +15,7 @@ public class AboutWindow extends Window { @Override public void draw() { - ImGui.text("Inceptum " + BuildMetadata.VERSION + " Copyright (C) 2021 JFronny"); + ImGui.text("Inceptum " + BuildMetadata.VERSION + " Copyright (C) 2021-2023 JFronny"); ImGui.text("This program comes with ABSOLUTELY NO WARRANTY."); ImGui.text("This is free software, and you are welcome to redistribute it under certain conditions.");