feat: mobile-like window size and always-visible stats

- Changed window size to mobile phone format (400x800)
- Removed width condition for ActiveProxyFooter - now always visible
- Added run-umbrix.sh launch script with icon copying
- Stats cards now display on all screen sizes
This commit is contained in:
Umbrix Developer
2026-01-17 13:09:20 +03:00
parent ec5ebbd54b
commit 76a374950f
245 changed files with 7931 additions and 1315 deletions

15
scripts/post-build-linux.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Скрипт для копирования libcore.so после Flutter build
BUNDLE_DIR="build/linux/x64/release/bundle/lib"
SOURCE_FILE="libcore/bin/lib/hiddify-core.so"
if [ -f "$SOURCE_FILE" ]; then
echo "Копируем libcore.so в bundle..."
rm -f "$BUNDLE_DIR/libcore.so"
cp "$SOURCE_FILE" "$BUNDLE_DIR/libcore.so"
echo "✓ libcore.so скопирован"
else
echo "⚠ Файл $SOURCE_FILE не найден. Запустите: make linux-libs"
exit 1
fi