V2 Feature overhaul and improvements

This commit is contained in:
2025-12-29 12:12:38 +11:00
parent a8f64580c7
commit 65383788b1
15 changed files with 1851 additions and 386 deletions

View File

@@ -41,6 +41,19 @@ fi
if ! command -v git &> /dev/null; then
echo "📦 Installing git..."
apt-get update && apt-get install -y git
apt-get update && apt-get install -y git
fi
# Install ffmpeg if not present
if ! command -v ffmpeg &> /dev/null; then
echo "📦 Installing ffmpeg..."
apt-get update && apt-get install -y ffmpeg
fi
# Install traceroute if not present
if ! command -v traceroute &> /dev/null; then
echo "📦 Installing traceroute..."
apt-get update && apt-get install -y traceroute
fi
# Create app directory