feat: v1.0.8 mit Lautstärke-Fix und neuen Listen

This commit is contained in:
darklithium
2026-06-04 21:39:13 +02:00
parent 4c5268a528
commit bdbbf43b90
10 changed files with 680 additions and 118 deletions
+6 -2
View File
@@ -15,7 +15,7 @@ import platform
# APP-METADATEN
# ============================================================================
APP_NAME = "fortunecookie"
APP_VERSION = "1.1.0"
APP_VERSION = "1.1.1"
MAINTAINER = "darklithium <dev@darklithium.de>"
@@ -40,6 +40,8 @@ AVAILABLE_FORTUNE_LISTS = [
"fortune", # Standard Glückskeks-Sprueche
"farmer wisdom", # Bauernweisheiten
"UNfortune", # Gothic/UNfortune-Sprueche
"sandman", # Bettgehzeit-Sprueche
"famous quotes", # Berühmte Zitate
]
# Aktuelle Spruchliste (Standard: fortune)
@@ -269,7 +271,9 @@ def get_fortune_lists_with_description():
descriptions = {
"fortune": "Glückskeks-Sprüche",
"farmer wisdom": "Bauernweisheiten",
"UNfortune": "Darkside-Sprüche"
"UNfortune": "Darkside-Sprüche",
"sandman": "Bettgehzeit!",
"famous quotes": "Berühmte Zitate"
}
for list_name in AVAILABLE_FORTUNE_LISTS:
count = len(_fortunes.get(list_name, []))