Remove old config.ini (migrated to ~/.config/), add *.AppImage to gitignore, fix build script

This commit is contained in:
Maksim Totmin 2026-05-31 18:02:21 +07:00
parent 8a1f6811c0
commit 59865169e6
3 changed files with 3 additions and 43 deletions

1
.gitignore vendored
View File

@ -36,3 +36,4 @@ converted/
# Logs
*.log
specs.md
*.AppImage

View File

@ -1,43 +0,0 @@
[General]
# Default output directory
output_dir = ~/Music/iPod
# Default audio format (m4a or mp3)
format = m4a
# Default audio quality in kbps (128, 192, 256, 320)
quality = 256
# Clean temporary files after transfer (true/false)
clean_temp = true
[Video]
# Enable video download (true/false)
enable_video = false
# Default video resolution (640x480, 480x360, 320x240)
resolution = 640x480
[Metadata]
# Embed album artwork (true/false)
embed_artwork = true
# Use MusicBrainz for enhanced metadata (true/false)
use_musicbrainz = false
[Device]
# Auto-detect iPod on startup (true/false)
auto_detect = true
# Custom mount point (leave empty for auto-detection)
mount_point =
[Advanced]
# Temporary directory
temp_dir = temp
# Number of simultaneous downloads (1-4)
concurrent_downloads = 2
# Debug mode (true/false)
debug = false

View File

@ -120,6 +120,8 @@ create_apprun() {
cat > "$APP_DIR/AppRun" << 'APPRUN'
#!/bin/bash
HERE="$(dirname "$(readlink -f "$0")")"
export QT_QPA_PLATFORMTHEME=gtk3
export QT_STYLE_OVERRIDE=
exec "$HERE/usr/bin/neo-pod-desktop/neo-pod-desktop" "$@"
APPRUN
chmod +x "$APP_DIR/AppRun"