Remove old config.ini (migrated to ~/.config/), add *.AppImage to gitignore, fix build script
This commit is contained in:
parent
8a1f6811c0
commit
59865169e6
1
.gitignore
vendored
1
.gitignore
vendored
@ -36,3 +36,4 @@ converted/
|
|||||||
# Logs
|
# Logs
|
||||||
*.log
|
*.log
|
||||||
specs.md
|
specs.md
|
||||||
|
*.AppImage
|
||||||
|
|||||||
43
config.ini
43
config.ini
@ -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
|
|
||||||
@ -120,6 +120,8 @@ create_apprun() {
|
|||||||
cat > "$APP_DIR/AppRun" << 'APPRUN'
|
cat > "$APP_DIR/AppRun" << 'APPRUN'
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
HERE="$(dirname "$(readlink -f "$0")")"
|
HERE="$(dirname "$(readlink -f "$0")")"
|
||||||
|
export QT_QPA_PLATFORMTHEME=gtk3
|
||||||
|
export QT_STYLE_OVERRIDE=
|
||||||
exec "$HERE/usr/bin/neo-pod-desktop/neo-pod-desktop" "$@"
|
exec "$HERE/usr/bin/neo-pod-desktop/neo-pod-desktop" "$@"
|
||||||
APPRUN
|
APPRUN
|
||||||
chmod +x "$APP_DIR/AppRun"
|
chmod +x "$APP_DIR/AppRun"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user