Fynn Petersen-Frey
Fynn Petersen-Frey
This is **very** crude attempt at automatically uploading new photos in a background service even if the app is not open. Partly fixes issue #235 **Only works on Android!** Disclaimer:...
WorkManager on Android allows to run tasks e.g. when folder contents changed: `Constraints.Builder().addContentUriTrigger(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, true)` Currently, this is not possible in flutter workmanager. It would be great to also provide this...
This PR mostly changes mobile: - [x] Adds Isar DB - [x] `Asset` is now a DB entity and contains all required fields, no longer stored an `AssetResponseDto` internally -...
This PR adds functionality to sync assets, albums & users from the server (remote) to the local (device) Isar database. General principle: Server changes are synced to the local DB...
fixes / workaround for #1907 properly done, we should store the duration in milliseconds as an int in the database. this would solve such parsing issues
Many asset backups on Android are corrupt because the app did not have permission to access media file location (GPS EXIF data). This results in checksum being different after this...
Currently, the app can get sync issues because of a time mismatch between server and client. This can both occur due to timezone changes or simply wrong clocks. With this...
follow-up for #8755 enable the use of the more efficient endpoints to perform sync operations. only merge after #9189 has been in a release for 1-2 weeks.
fixes the issue that stacked child assets are not returned in large list (only as children of the parent). Also returns archived partner assets to be backwards compatible to the...
Hi, asdf fails to serialize a struct with phobos Duration in it: ```d /+dub.sdl: dependency "asdf" version="~>0.5.7" +/ import std.stdio; import std.datetime; import asdf; void main() { A a; string...