Skip to content

Commit 53b5510

Browse files
committed
Update README and license files; modify release build script
- Changed the link to the license file in README.md from LICENSE.md to LICENSE.txt. - Updated the copyright year in the release-build.bat script to the current year. - Added LICENSE.txt file containing the full text of the GNU General Public License v3.0.
1 parent 9bdf2df commit 53b5510

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@ Feel free to submit issues and pull requests to improve this application. See th
130130

131131
## License
132132

133-
This project is open source and available under the GNU General Public License v3.0 License. Please see [License File](LICENSE.md) for more information.
133+
This project is open source and available under the GNU General Public License v3.0 License. Please see [License File](LICENSE.txt) for more information.

scripts/release-build.bat

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,16 @@ mkdir "%RELEASE_DIR%"
7777
REM Copy files to release directory
7878
copy "dist\click-guardian.exe" "%RELEASE_DIR%\" >nul
7979

80+
for /f "tokens=2 delims==" %%Y in ('"wmic os get localdatetime /value | findstr ="') do set CURYEAR=%%Y
81+
set CURYEAR=!CURYEAR:~0,4!
82+
8083
REM Create README for release
8184
(
8285
echo Click Guardian v%VERSION%
8386
echo.
8487
echo Prevents accidental double-clicks with configurable delay protection
8588
echo.
86-
echo © 2025 Click Guardian Project
89+
echo © %CURYEAR% Azizul Hakim
8790
echo.
8891
echo Build Information:
8992
echo - Version: %VERSION%

0 commit comments

Comments
 (0)