summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-05-12 12:52:47 +0300
committerViljami Ilola <+@hix.fi>2024-05-12 12:52:47 +0300
commit732f955bd9d3e56220c0cdfe026da22c3e6322af (patch)
tree0bc99d30c3fe2a390933a22c98b65412da61e218
parent31d5a4b85fe471be0e3f5fd55f3662647d099adf (diff)
v0.4.post1 - initial highscoresHEAD0.4.post1master
-rw-r--r--CHANGELOG.txt4
-rw-r--r--pyproject.toml2
-rw-r--r--src/sliceitoff/settings/static.py28
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")
]