chore: Release v1.2.21

This commit is contained in:
2025-03-24 10:44:45 +01:00
parent efce228aed
commit 37db897046
3 changed files with 10 additions and 3 deletions

View File

@@ -225,3 +225,10 @@ und dieses Projekt adhäriert zu [Semantic Versioning](https://semver.org/lang/d
- Dunkles Theme für bessere Lesbarkeit bei schlechten Lichtverhältnissen - Dunkles Theme für bessere Lesbarkeit bei schlechten Lichtverhältnissen
- Theme-Switcher im Hamburger-Menü - Theme-Switcher im Hamburger-Menü
- Automatische Speicherung der Theme-Präferenz - Automatische Speicherung der Theme-Präferenz
## [1.2.21] - 2024-03-24
### Fixed
- Verbesserte Datenbankinitialisierung und CSV-Import
- Korrektur der Suchfunktionalität
## [1.2.20] - 2024-03-24

View File

@@ -19,7 +19,7 @@ Eine einfache und effiziente Kundensuche für medisoftware Kunden.
## Version ## Version
Aktuelle Version: 1.2.20 Aktuelle Version: 1.2.21
## Installation ## Installation

2
app.py
View File

@@ -15,7 +15,7 @@ import markdown2
app = Flask(__name__, static_folder='static') app = Flask(__name__, static_folder='static')
app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY', 'dev') app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY', 'dev')
app.config['ALLOWED_IP_RANGES'] = os.getenv('ALLOWED_IP_RANGES', '192.168.0.0/16,10.0.0.0/8').split(',') app.config['ALLOWED_IP_RANGES'] = os.getenv('ALLOWED_IP_RANGES', '192.168.0.0/16,10.0.0.0/8').split(',')
app.config['VERSION'] = '1.2.20' app.config['VERSION'] = '1.2.21'
app.config['DATABASE'] = 'data/customers.db' app.config['DATABASE'] = 'data/customers.db'
app.config['DATABASE_TIMEOUT'] = 20 app.config['DATABASE_TIMEOUT'] = 20
app.config['DATABASE_POOL_SIZE'] = 5 app.config['DATABASE_POOL_SIZE'] = 5