From 5b7944b181d40fe9d714ab6986434ec8c2f2c434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Tue, 28 Oct 2025 08:21:32 +0100 Subject: [PATCH 1/3] fix: Temporarily disable opus recording on iOS because iOS 26 seems to break it --- lib/pages/chat/recording_view_model.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat/recording_view_model.dart b/lib/pages/chat/recording_view_model.dart index ae5ca637f..72243013e 100644 --- a/lib/pages/chat/recording_view_model.dart +++ b/lib/pages/chat/recording_view_model.dart @@ -69,7 +69,9 @@ class RecordingViewModelState extends State { // which does not play on iOS right now. So we use wav for now: ? AudioEncoder.wav // Everywhere else we use opus if supported by the platform: - : await audioRecorder.isEncoderSupported(AudioEncoder.opus) + : !PlatformInfos + .isIOS && // Blocked by https://github.com/llfbandit/record/issues/560 + await audioRecorder.isEncoderSupported(AudioEncoder.opus) ? AudioEncoder.opus : AudioEncoder.aacLc; fileName = From c6816b5db5e9a0267940d216f748fff904f33415 Mon Sep 17 00:00:00 2001 From: Frank Paul Silye Date: Mon, 27 Oct 2025 10:53:15 +0100 Subject: [PATCH 2/3] =?UTF-8?q?chore(translations):=20Translated=20using?= =?UTF-8?q?=20Weblate=20(Norwegian=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 91.0% (723 of 794 strings) Translation: FluffyChat/Translations Translate-URL: https://hosted.weblate.org/projects/fluffychat/translations/nb_NO/ --- lib/l10n/intl_nb.arb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/l10n/intl_nb.arb b/lib/l10n/intl_nb.arb index 3fb48adc7..08d3ccdb6 100644 --- a/lib/l10n/intl_nb.arb +++ b/lib/l10n/intl_nb.arb @@ -3211,5 +3211,9 @@ "customReaction": "Egendefinert reaksjon", "@customReaction": {}, "pause": "Pause", - "@pause": {} + "@pause": {}, + "moveToDifferentSpace": "Flytt til et annet område", + "@moveToDifferentSpace": {}, + "moveUp": "Flytt opp", + "@moveUp": {} } From 2a5b27436ee31568ce792e861f0f20e8eb717d1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Oct 2025 21:10:41 +0000 Subject: [PATCH 3/3] build: (deps): bump qr_code_scanner_plus from 2.0.13 to 2.0.14 Bumps [qr_code_scanner_plus](https://github.com/vespr-wallet/qr_code_scanner_plus) from 2.0.13 to 2.0.14. - [Changelog](https://github.com/vespr-wallet/qr_code_scanner_plus/blob/master/CHANGELOG.md) - [Commits](https://github.com/vespr-wallet/qr_code_scanner_plus/commits) --- updated-dependencies: - dependency-name: qr_code_scanner_plus dependency-version: 2.0.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pubspec.lock | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index ac856507e..bfc6de7a9 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1426,10 +1426,10 @@ packages: dependency: "direct main" description: name: qr_code_scanner_plus - sha256: "41f4a834a48d670d25e3917cb9f1dbb4742298a0b4ab60d82416b295b73931e1" + sha256: b764e5004251c58d9dee0c295e6006e05bd8d249e78ac3383abdb5afe0a996cd url: "https://pub.dev" source: hosted - version: "2.0.13" + version: "2.0.14" qr_image: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 77e5a3a0e..d2be09e20 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -63,7 +63,7 @@ dependencies: pretty_qr_code: ^3.5.0 provider: ^6.0.2 punycode: ^1.0.0 - qr_code_scanner_plus: ^2.0.13 + qr_code_scanner_plus: ^2.0.14 qr_image: ^1.0.0 receive_sharing_intent: ^1.8.1 record: ^6.1.2