Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
deckerst committed Jul 19, 2024
2 parents 86b0d16 + b5848cf commit 9ea43d9
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
7 changes: 6 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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) {
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/127.txt
Original file line number Diff line number Diff line change
@@ -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 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/12701.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion whatsnew/whatsnew-en-US
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9ea43d9

Please sign in to comment.