|
Hi,
|
Replies: 1 comment 1 reply
|
Yes — for the Flatpak build, backing up the whole The current code stores profiles and the SQLite databases under GLib's config directory (inside Flatpak this becomes For example: flatpak kill io.github.falldaemon.engplayer 2>/dev/null || true
tar -C "$HOME/.var/app" -czf engplayer-backup.tar.gz io.github.falldaemon.engplayerRestore it only while the app is stopped, ideally after installing the same or a newer EngPlayer version. Two caveats:
So the short answer is: yes for EngPlayer's complete internal configuration and databases; no for external media and Flatpak permissions. |
Yes — for the Flatpak build, backing up the whole
$HOME/.var/app/io.github.falldaemon.engplayerdirectory is the safest way to preserve EngPlayer's own state, provided EngPlayer is stopped while you copy it.The current code stores profiles and the SQLite databases under GLib's config directory (inside Flatpak this becomes
.../config/EngPlayer) and its generated cache under.../cache/EngPlayer. Copying the whole app directory covers both, including favorites, scheduled recordings, playback progress, API settings, and profile data.For example:
R…