diff options
-rw-r--r-- | CHANGELOG.txt | 4 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | src/sliceitoff/settings/static.py | 28 |
3 files changed, 19 insertions, 15 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 766a142..220235d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -16,3 +16,7 @@ - Settings menu. - SFX and music volume - Fix default settings reading + +0.4.post1 + + - Made initial high-scores more generic diff --git a/pyproject.toml b/pyproject.toml index 3de2b31..139f1e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sliceitoff" -version = "0.4" +version = "0.4.post1" description = "Arcade game where one slices play area off while avoiding slicing happy faces." repository = "https://git.hix.fi/sliceitoff.git/" authors = ["Viljami Ilola <+@hix.fi>"] diff --git a/src/sliceitoff/settings/static.py b/src/sliceitoff/settings/static.py index 8c8935b..27d4a1c 100644 --- a/src/sliceitoff/settings/static.py +++ b/src/sliceitoff/settings/static.py @@ -1,26 +1,26 @@ """ settings.static - default settings etc static data """ DEFAULT_SETTINGS = [ - ("hiscore", "281238!HIL"), - ("hiscore", "190355!VIL"), - ("hiscore", "164710!KSU"), ("hiscore", "100000!---"), ("hiscore", "90000!---"), - ("hiscore", "80000!-S-"), - ("hiscore", "70000!-L-"), - ("hiscore", "60000!-I-"), - ("hiscore", "50000!-C-"), - ("hiscore", "40000!-E-"), + ("hiscore", "80000!---"), + ("hiscore", "70000!---"), + ("hiscore", "60000!---"), + ("hiscore", "50000!---"), + ("hiscore", "40000!---"), ("hiscore", "30000!---"), - ("hiscore", "25000!-I-"), - ("hiscore", "20000!-T-"), + ("hiscore", "25000!---"), + ("hiscore", "20000!---"), ("hiscore", "15000!---"), - ("hiscore", "10000!-O-"), - ("hiscore", "8000!-F-"), - ("hiscore", "6000!-F-"), + ("hiscore", "10000!---"), + ("hiscore", "8000!---"), + ("hiscore", "6000!---"), ("hiscore", "4000!---"), ("hiscore", "2000!---"), - ("hiscore", "0!---"), + ("hiscore", "1000!---"), + ("hiscore", "500!---"), + ("hiscore", "250!---"), + ("hiscore", "125!---"), ("sfx_volume", "10"), ("music_volume", "10") ] |