Fixed mouse cursor always visible, even on game clock where it is preferred to be invisible while idle

This commit is contained in:
2021-09-30 08:46:44 -05:00
parent 870a3e4e8b
commit 7bfc404413
5 changed files with 9 additions and 7 deletions

View File

@@ -7,13 +7,13 @@ Releasy::Project.new do
version TAC::VERSION
executable "timecrafters_configuration_tool.rb"
files ["lib/**/*.*", "media/**/*.*", "data"]
files ["lib/**/*.*", "media/**/*.*", "data/.gitkeep", "data/configs/.gitkeep"]
exclude_encoding # Applications that don't use advanced encoding (e.g. Japanese characters) can save build size with this.
verbose
add_build :windows_folder do
icon "media/icon.ico"
executable_type :console # Assuming you don't want it to run with a console window.
executable_type :windows # Assuming you don't want it to run with a console window.
add_package :exe # Windows self-extracting archive.
end
end