Version 1.2.16: Verbesserte Suchfunktion und Reset-Buttons

This commit is contained in:
2025-03-21 12:42:18 +01:00
parent 9922c0ae9d
commit 408f2f9c21
2 changed files with 4 additions and 4 deletions

View File

@@ -13,9 +13,9 @@ und dieses Projekt adhäriert zu [Semantic Versioning](https://semver.org/lang/d
## [1.2.16] - 2024-03-21 ## [1.2.16] - 2024-03-21
### Geändert ### Geändert
- Verbesserte Darstellung der Suchergebnisse mit rechtsbündigen Aktionen - Verbesserte Suchfunktion: Highlighting für allgemeine Suche in allen Feldern
- Optimierte CSS-Styles für bessere Lesbarkeit und Layout - Optimierte Reset-Buttons in den Suchfeldern
- JavaScript-Code in separate Datei ausgelagert für bessere Wartbarkeit - Verbesserte CSS-Styles für die Suchfeld-Icons
## [1.2.15] - 2024-03-20 ## [1.2.15] - 2024-03-20
### Hinzugefügt ### Hinzugefügt

2
app.py
View File

@@ -13,7 +13,7 @@ import sqlite3
from functools import wraps from functools import wraps
app = Flask(__name__, static_folder='static') app = Flask(__name__, static_folder='static')
app.config['SECRET_KEY'] = os.getenv('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.16' app.config['VERSION'] = '1.2.16'
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)