aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/org/pacien/tincapp/context/ConfigurationDirectoryMigrator.kt
Commit message (Collapse)AuthorAge
* storage: rename ConfigurationDirectoryMigrator -> StorageMigratorpacien2023-07-30
|
* storage: move app and tinc daemon logs to user-accessible cache directorypacien2023-07-30
|
* ConfigurationDirectoryMigrator: avoid the use of NIO API absent on old ↵pacien2020-12-09
| | | | | | | Android versions The Java NIO API is not fully available below Android API level 26, causing errors on devices that we still support otherwise.
* app: add configuration directory migratorpacien2020-12-08
This adds an automatic configuration migrator which moves the configuration files previously located on the external public-ish directory to the private app storage, so that existing users can seamlessly transition to the next version. The cache directory containing the logs is cleared instead of being migrated, because those files are considered disposable. GitHub: related to #103