Merge branch 'develop'
This commit is contained in:
commit
9ea43d951c
8 changed files with 24 additions and 9 deletions
|
@ -4,13 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## <a id="unreleased"></a>[Unreleased]
|
||||
|
||||
## <a id="v1.11.7"></a>[v1.11.7] - 2024-07-18
|
||||
## <a id="v1.11.8"></a>[v1.11.8] - 2024-07-19
|
||||
|
||||
### Added
|
||||
|
||||
- Explorer: set custom path as home
|
||||
- Explorer: create shortcut to custom path
|
||||
- predictive back support (inter-app)
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -21,6 +20,8 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
- crash when cataloguing some PNG files
|
||||
|
||||
## <a id="v1.11.7"></a>[v1.11.7] - 2024-07-18 [YANKED AGAIN!]
|
||||
|
||||
## <a id="v1.11.6"></a>[v1.11.6] - 2024-07-17 [YANKED]
|
||||
|
||||
## <a id="v1.11.5"></a>[v1.11.5] - 2024-07-11
|
||||
|
|
|
@ -102,12 +102,17 @@
|
|||
</intent>
|
||||
</queries>
|
||||
|
||||
<!--
|
||||
as of Flutter v3.22.2, predictive back gesture does not work
|
||||
as expected when extending `FlutterFragmentActivity`
|
||||
so we disable `enableOnBackInvokedCallback`
|
||||
-->
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:appCategory="image"
|
||||
android:banner="@drawable/banner"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||
android:enableOnBackInvokedCallback="true"
|
||||
android:enableOnBackInvokedCallback="false"
|
||||
android:fullBackupContent="@xml/full_backup_content"
|
||||
android:fullBackupOnly="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
|
|
|
@ -54,7 +54,7 @@ import deckers.thibault.aves.channel.streams.SettingsChangeStreamHandler
|
|||
import deckers.thibault.aves.model.FieldMap
|
||||
import deckers.thibault.aves.utils.LogUtils
|
||||
import deckers.thibault.aves.utils.getParcelableExtraCompat
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
import io.flutter.embedding.android.FlutterFragmentActivity
|
||||
import io.flutter.embedding.engine.FlutterEngine
|
||||
import io.flutter.plugin.common.EventChannel
|
||||
import io.flutter.plugin.common.MethodCall
|
||||
|
@ -66,7 +66,8 @@ import kotlinx.coroutines.launch
|
|||
import java.util.concurrent.CompletableFuture
|
||||
import java.util.concurrent.ConcurrentHashMap
|
||||
|
||||
open class MainActivity : FlutterActivity() {
|
||||
// `FlutterFragmentActivity` because of local auth plugin
|
||||
open class MainActivity : FlutterFragmentActivity() {
|
||||
private val defaultScope = CoroutineScope(SupervisorJob() + Dispatchers.Default)
|
||||
|
||||
private lateinit var mediaStoreChangeStreamHandler: MediaStoreChangeStreamHandler
|
||||
|
|
|
@ -8,7 +8,7 @@ import androidx.work.WorkManager
|
|||
import androidx.work.workDataOf
|
||||
import deckers.thibault.aves.AnalysisWorker
|
||||
import deckers.thibault.aves.utils.FlutterUtils
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
import io.flutter.embedding.android.FlutterFragmentActivity
|
||||
import io.flutter.plugin.common.MethodCall
|
||||
import io.flutter.plugin.common.MethodChannel
|
||||
import kotlinx.coroutines.CoroutineScope
|
||||
|
@ -18,7 +18,7 @@ import kotlinx.coroutines.launch
|
|||
import kotlinx.coroutines.runBlocking
|
||||
|
||||
|
||||
class AnalysisHandler(private val activity: FlutterActivity, private val onAnalysisCompleted: () -> Unit) : MethodChannel.MethodCallHandler {
|
||||
class AnalysisHandler(private val activity: FlutterFragmentActivity, private val onAnalysisCompleted: () -> Unit) : MethodChannel.MethodCallHandler {
|
||||
private val ioScope = CoroutineScope(SupervisorJob() + Dispatchers.IO)
|
||||
|
||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
||||
|
|
4
fastlane/metadata/android/en-US/changelogs/127.txt
Normal file
4
fastlane/metadata/android/en-US/changelogs/127.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
In v1.11.8:
|
||||
- explore your collection with the... explorer
|
||||
- convert your motion photos to stills in bulk
|
||||
Full changelog available on GitHub
|
4
fastlane/metadata/android/en-US/changelogs/12701.txt
Normal file
4
fastlane/metadata/android/en-US/changelogs/12701.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
In v1.11.8:
|
||||
- explore your collection with the... explorer
|
||||
- convert your motion photos to stills in bulk
|
||||
Full changelog available on GitHub
|
|
@ -7,7 +7,7 @@ repository: https://github.com/deckerst/aves
|
|||
# - play changelog: /whatsnew/whatsnew-en-US
|
||||
# - izzy changelog: /fastlane/metadata/android/en-US/changelogs/XXX01.txt
|
||||
# - libre changelog: /fastlane/metadata/android/en-US/changelogs/XXX.txt
|
||||
version: 1.11.7+126
|
||||
version: 1.11.8+127
|
||||
publish_to: none
|
||||
|
||||
environment:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
In v1.11.7:
|
||||
In v1.11.8:
|
||||
- explore your collection with the... explorer
|
||||
- convert your motion photos to stills in bulk
|
||||
Full changelog available on GitHub
|
Loading…
Reference in a new issue