diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ca5c1d43..3922d2d3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
-## [v1.10.6] - 2024-03-11
+## [v1.10.7] - 2024-03-12
### Added
@@ -20,6 +20,8 @@ All notable changes to this project will be documented in this file.
- engine leak from analysis worker
+## [v1.10.6] - 2024-03-11 [YANKED]
+
## [v1.10.5] - 2024-02-22
### Added
diff --git a/README.md b/README.md
index ff6fa5a0d..358dff21d 100644
--- a/README.md
+++ b/README.md
@@ -15,9 +15,6 @@ Aves is a gallery and metadata explorer app. It is built for Android, with Flutt
[
](https://appgallery.huawei.com/app/C106014023)
-[
](https://www.amazon.com/dp/B09XQHQQ72)
[
](https://apt.izzysoft.de/fdroid/index/apk/deckers.thibault.aves)
diff --git a/android/app/src/main/kotlin/deckers/thibault/aves/AnalysisWorker.kt b/android/app/src/main/kotlin/deckers/thibault/aves/AnalysisWorker.kt
index b9ce72658..068a3b7df 100644
--- a/android/app/src/main/kotlin/deckers/thibault/aves/AnalysisWorker.kt
+++ b/android/app/src/main/kotlin/deckers/thibault/aves/AnalysisWorker.kt
@@ -16,6 +16,7 @@ import androidx.work.WorkerParameters
import app.loup.streams_channel.StreamsChannel
import deckers.thibault.aves.channel.calls.DeviceHandler
import deckers.thibault.aves.channel.calls.GeocodingHandler
+import deckers.thibault.aves.channel.calls.MediaFetchObjectHandler
import deckers.thibault.aves.channel.calls.MediaStoreHandler
import deckers.thibault.aves.channel.calls.MetadataFetchHandler
import deckers.thibault.aves.channel.calls.StorageHandler
@@ -99,6 +100,7 @@ class AnalysisWorker(context: Context, parameters: WorkerParameters) : Coroutine
// - need Context
MethodChannel(messenger, DeviceHandler.CHANNEL).setMethodCallHandler(DeviceHandler(context))
MethodChannel(messenger, GeocodingHandler.CHANNEL).setMethodCallHandler(GeocodingHandler(context))
+ MethodChannel(messenger, MediaFetchObjectHandler.CHANNEL).setMethodCallHandler(MediaFetchObjectHandler(context))
MethodChannel(messenger, MediaStoreHandler.CHANNEL).setMethodCallHandler(MediaStoreHandler(context))
MethodChannel(messenger, MetadataFetchHandler.CHANNEL).setMethodCallHandler(MetadataFetchHandler(context))
MethodChannel(messenger, StorageHandler.CHANNEL).setMethodCallHandler(StorageHandler(context))
diff --git a/fastlane/metadata/android/en-US/changelogs/116.txt b/fastlane/metadata/android/en-US/changelogs/116.txt
new file mode 100644
index 000000000..067ad57ef
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/116.txt
@@ -0,0 +1,4 @@
+In v1.10.7:
+- detect HDR videos (but do not play them in their full HDR glory)
+- removing animations also applies to pop up menus
+Full changelog available on GitHub
\ No newline at end of file
diff --git a/fastlane/metadata/android/en-US/changelogs/11601.txt b/fastlane/metadata/android/en-US/changelogs/11601.txt
new file mode 100644
index 000000000..067ad57ef
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/11601.txt
@@ -0,0 +1,4 @@
+In v1.10.7:
+- detect HDR videos (but do not play them in their full HDR glory)
+- removing animations also applies to pop up menus
+Full changelog available on GitHub
\ No newline at end of file
diff --git a/pubspec.yaml b/pubspec.yaml
index 14b329daf..827061a10 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -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.10.6+115
+version: 1.10.7+116
publish_to: none
environment:
diff --git a/whatsnew/whatsnew-en-US b/whatsnew/whatsnew-en-US
index 4c8d7cd42..067ad57ef 100644
--- a/whatsnew/whatsnew-en-US
+++ b/whatsnew/whatsnew-en-US
@@ -1,4 +1,4 @@
-In v1.10.6:
+In v1.10.7:
- detect HDR videos (but do not play them in their full HDR glory)
- removing animations also applies to pop up menus
Full changelog available on GitHub
\ No newline at end of file