Skip to content

Commit e4ca76e

Browse files
CopilotProject516
andcommitted
Update copyright year to 2025
- Changed SPDX-FileCopyrightText year from 2024 to 2025 in all Java files - Changed SPDX-FileCopyrightText year from 2024 to 2025 in all shell scripts and batch files - Updated REUSE.toml to reflect 2025 copyright year - Repository remains REUSE 3.3 compliant (64/64 files) - Build and tests pass successfully Co-authored-by: Project516 <138796702+Project516@users.noreply.github.com>
1 parent c6dada9 commit e4ca76e

37 files changed

Lines changed: 40 additions & 40 deletions

REUSE.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ SPDX-PackageDownloadLocation = "https://github.com/Project516/NumberGuessingGame
66
[[annotations]]
77
path = [".gitattributes", ".gitignore", ".idea/**", ".vscode/**", "gradle.properties", "renovate.json", "settings.gradle", "app/build.gradle", "gradle/libs.versions.toml"]
88
precedence = "aggregate"
9-
SPDX-FileCopyrightText = "2024 Project516 <138796702+Project516@users.noreply.github.com>"
9+
SPDX-FileCopyrightText = "2025 Project516 <138796702+Project516@users.noreply.github.com>"
1010
SPDX-License-Identifier = "GPL-3.0-or-later"
1111

1212
[[annotations]]
1313
path = ".github/**"
1414
precedence = "aggregate"
15-
SPDX-FileCopyrightText = "2024 Project516 <138796702+Project516@users.noreply.github.com>"
15+
SPDX-FileCopyrightText = "2025 Project516 <138796702+Project516@users.noreply.github.com>"
1616
SPDX-License-Identifier = "GPL-3.0-or-later"
1717

1818
[[annotations]]
1919
path = ["README.md", "app/src/main/resources/version.txt"]
2020
precedence = "aggregate"
21-
SPDX-FileCopyrightText = "2024 Project516 <138796702+Project516@users.noreply.github.com>"
21+
SPDX-FileCopyrightText = "2025 Project516 <138796702+Project516@users.noreply.github.com>"
2222
SPDX-License-Identifier = "GPL-3.0-or-later"
2323

2424
[[annotations]]
2525
path = ["debian-package/DEBIAN/**", "debian-package/usr/share/games/numberguessinggame/.gitignore", "debian-package/usr/games/numberguessinggame"]
2626
precedence = "aggregate"
27-
SPDX-FileCopyrightText = "2024 Project516 <138796702+Project516@users.noreply.github.com>"
27+
SPDX-FileCopyrightText = "2025 Project516 <138796702+Project516@users.noreply.github.com>"
2828
SPDX-License-Identifier = "GPL-3.0-or-later"
2929

3030
[[annotations]]

app/src/main/java/io/github/project516/NumberGuessingGame/CheckGuess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/DebugInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/GUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/GameInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/GameLogic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/HighScore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/HighScoreManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

app/src/main/java/io/github/project516/NumberGuessingGame/NumberGuessingGame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-FileCopyrightText: 2024 Project516 <138796702+Project516@users.noreply.github.com>
1+
// SPDX-FileCopyrightText: 2025 Project516 <138796702+Project516@users.noreply.github.com>
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

0 commit comments

Comments
 (0)