mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-10-01 23:56:18 +00:00
Update AppImage
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import { ProxmoxDashboard } from "@/components/proxmox-dashboard"
|
import { ProxmoxDashboard } from "../components/proxmox-dashboard"
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
|
@@ -1,17 +1,17 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useState, useEffect } from "react"
|
import { useState, useEffect } from "react"
|
||||||
import { Badge } from "@/components/ui/badge"
|
import { Badge } from "./ui/badge"
|
||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "./ui/button"
|
||||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "./ui/tabs"
|
||||||
import { SystemOverview } from "@/components/system-overview"
|
import { SystemOverview } from "./system-overview"
|
||||||
import { StorageMetrics } from "@/components/storage-metrics"
|
import { StorageMetrics } from "./storage-metrics"
|
||||||
import { NetworkMetrics } from "@/components/network-metrics"
|
import { NetworkMetrics } from "./network-metrics"
|
||||||
import { VirtualMachines } from "@/components/virtual-machines"
|
import { VirtualMachines } from "./virtual-machines"
|
||||||
import { SystemLogs } from "@/components/system-logs"
|
import { SystemLogs } from "./system-logs"
|
||||||
import { RefreshCw, AlertTriangle, CheckCircle, XCircle, Languages, Server } from "lucide-react"
|
import { RefreshCw, AlertTriangle, CheckCircle, XCircle, Languages, Server } from "lucide-react"
|
||||||
import Image from "next/image"
|
import Image from "next/image"
|
||||||
import { ThemeToggle } from "@/components/theme-toggle"
|
import { ThemeToggle } from "./theme-toggle"
|
||||||
|
|
||||||
interface SystemStatus {
|
interface SystemStatus {
|
||||||
status: "healthy" | "warning" | "critical"
|
status: "healthy" | "warning" | "critical"
|
||||||
|
@@ -318,7 +318,8 @@ PYEOF
|
|||||||
# Build AppImage
|
# Build AppImage
|
||||||
echo "🔨 Building unified AppImage v${VERSION}..."
|
echo "🔨 Building unified AppImage v${VERSION}..."
|
||||||
cd "$WORK_DIR"
|
cd "$WORK_DIR"
|
||||||
ARCH=x86_64 ./appimagetool --no-appstream "$APP_DIR" "$APPIMAGE_NAME"
|
export NO_CLEANUP=1
|
||||||
|
ARCH=x86_64 ./appimagetool --no-appstream --verbose "$APP_DIR" "$APPIMAGE_NAME"
|
||||||
|
|
||||||
# Move to dist directory
|
# Move to dist directory
|
||||||
mv "$APPIMAGE_NAME" "$DIST_DIR/"
|
mv "$APPIMAGE_NAME" "$DIST_DIR/"
|
||||||
|
Reference in New Issue
Block a user