diff --git a/AppImage/components/settings.tsx b/AppImage/components/settings.tsx index 01cf566..bbc7cb1 100644 --- a/AppImage/components/settings.tsx +++ b/AppImage/components/settings.tsx @@ -6,8 +6,7 @@ import { Input } from "./ui/input" import { Label } from "./ui/label" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "./ui/card" import { Shield, Lock, User, AlertCircle, CheckCircle, Info, LogOut, Wrench, Package } from "lucide-react" -import { Sparkles, ChevronDown, ChevronUp } from "lucide-react" -import { APP_VERSION, CHANGELOG } from "./release-notes-modal" +import { APP_VERSION } from "./release-notes-modal" import { getApiUrl } from "../lib/api-config" import { TwoFactorSetup } from "./two-factor-setup" @@ -578,116 +577,6 @@ export function Settings() { - {/* Release Notes */} - - -
- - Release Notes -
- View changes and improvements in ProxMenux Monitor -
- -
-
-
- -
-
-

Current Version

-

ProxMenux Monitor v{APP_VERSION}

-
-
-
Latest
-
- -
- {Object.entries(CHANGELOG).map(([version, details]) => { - const isExpanded = expandedVersions[version] - const isCurrent = version === APP_VERSION - - return ( -
- - - {isExpanded && ( -
- {details.changes.added && ( -
-
-
- Added -
-
-
    - {details.changes.added.map((item, idx) => ( -
  • {item}
  • - ))} -
-
- )} - - {details.changes.changed && ( -
-
-
- Changed -
-
-
    - {details.changes.changed.map((item, idx) => ( -
  • {item}
  • - ))} -
-
- )} - - {details.changes.fixed && ( -
-
-
- Fixed -
-
-
    - {details.changes.fixed.map((item, idx) => ( -
  • {item}
  • - ))} -
-
- )} -
- )} -
- ) - })} -
-
-
- {/* ProxMenux Optimizations */}