diff --git a/AppImage/components/login.tsx b/AppImage/components/login.tsx index 0c6c4f9..d1de5d7 100644 --- a/AppImage/components/login.tsx +++ b/AppImage/components/login.tsx @@ -237,7 +237,7 @@ export function Login({ onLogin }: LoginProps) { -

ProxMenux Monitor v1.0.1

+

ProxMenux Monitor v1.0.2

) diff --git a/AppImage/components/release-notes-modal.tsx b/AppImage/components/release-notes-modal.tsx index 330c20a..b7e3403 100644 --- a/AppImage/components/release-notes-modal.tsx +++ b/AppImage/components/release-notes-modal.tsx @@ -6,7 +6,7 @@ import { Dialog, DialogContent, DialogTitle } from "./ui/dialog" import { X, Sparkles, Link2, Shield, Zap, HardDrive, Gauge, Wrench, Settings } from "lucide-react" import { Checkbox } from "./ui/checkbox" -const APP_VERSION = "1.0.1" // Sync with AppImage/package.json +const APP_VERSION = "1.0.2" // Sync with AppImage/package.json interface ReleaseNote { date: string diff --git a/AppImage/scripts/flask_server.py b/AppImage/scripts/flask_server.py index 15637fc..75e47e6 100644 --- a/AppImage/scripts/flask_server.py +++ b/AppImage/scripts/flask_server.py @@ -5553,7 +5553,7 @@ def api_health(): return jsonify({ 'status': 'healthy', 'timestamp': datetime.now().isoformat(), - 'version': '1.0.1' + 'version': '1.0.2' }) @app.route('/api/prometheus', methods=['GET']) @@ -5819,7 +5819,7 @@ def api_info(): """Root endpoint with API information""" return jsonify({ 'name': 'ProxMenux Monitor API', - 'version': '1.0.1', + 'version': '1.0.2', 'endpoints': [ '/api/system', '/api/system-info',