Compare commits
1 Commits
feature/vc
...
v1.2.16
Author | SHA1 | Date | |
---|---|---|---|
4d5a7b4f5e |
@@ -13,9 +13,9 @@ und dieses Projekt adhäriert zu [Semantic Versioning](https://semver.org/lang/d
|
||||
|
||||
## [1.2.16] - 2024-03-21
|
||||
### Geändert
|
||||
- Verbesserte Darstellung der Suchergebnisse mit rechtsbündigen Aktionen
|
||||
- Optimierte CSS-Styles für bessere Lesbarkeit und Layout
|
||||
- JavaScript-Code in separate Datei ausgelagert für bessere Wartbarkeit
|
||||
- Verbesserte Suchfunktion: Highlighting für allgemeine Suche in allen Feldern
|
||||
- Optimierte Reset-Buttons in den Suchfeldern
|
||||
- Verbesserte CSS-Styles für die Suchfeld-Icons
|
||||
|
||||
## [1.2.15] - 2024-03-20
|
||||
### Hinzugefügt
|
||||
|
2
app.py
2
app.py
@@ -13,7 +13,7 @@ import sqlite3
|
||||
from functools import wraps
|
||||
|
||||
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['VERSION'] = '1.2.16'
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
Reference in New Issue
Block a user