Update AppImage 1.2.1.3

This commit is contained in:
MacRimi
2026-05-22 18:47:30 +02:00
parent 840385272c
commit f2a40b993a
8 changed files with 177 additions and 19 deletions
+3 -3
View File
@@ -10435,7 +10435,7 @@ def api_health():
return jsonify({
'status': 'healthy',
'timestamp': datetime.now().isoformat(),
'version': '1.2.1.2-beta'
'version': '1.2.1.3-beta'
})
# ─── User-configurable health thresholds ─────────────────────────────────────
@@ -10872,7 +10872,7 @@ def api_info():
"""Root endpoint with API information"""
return jsonify({
'name': 'ProxMenux Monitor API',
'version': '1.2.1.2-beta',
'version': '1.2.1.3-beta',
'endpoints': [
'/api/system',
'/api/system-info',
@@ -11522,7 +11522,7 @@ if __name__ == '__main__':
try:
import sqlite3
from pathlib import Path
MONITOR_VERSION = '1.2.1.2-beta'
MONITOR_VERSION = '1.2.1.3-beta'
db_path = Path('/usr/local/share/proxmenux/health_monitor.db')
if db_path.exists():
conn = sqlite3.connect(str(db_path), timeout=10)