From b02f4bd53a8d4549e6d5ee9fac85b43c07b506e2 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Mon, 9 Mar 2026 16:46:47 -0700 Subject: [PATCH] Update version --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ android/app/build.gradle | 4 ++-- ios/App/App.xcodeproj/project.pbxproj | 8 ++++---- package.json | 2 +- 4 files changed, 33 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 167e700c..248948ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +# 1.6.5 + +* Attempt to fix permission grant for notifications +* Make sync logic more robust +* Add unban/unallow support +* Improve support for downloading/opening protected images +* Add manual send/receive to wallet +* Show wallet status when wallet is unreachable +* Update nostr signer capacitor plugin +* Fix some safe area insets +* Update NIP 55 signer plugin (fixes Primal login) +* Refine space join dialogs and discover page +* Reopen the last DM that was open when navigating back to chat +* Get rid of ChatEnable interstitial +* Enable auth for relays we're publishing to +* Drag and drop space icons +* Add better muting support +* Add back button to settings menu +* Add page titles +* Improve scroll to event behavior +* Add in-memory search to rooms +* Fix editing messages with html tags +* Fix DM media detection +* Clean up reporting dialogs +* Improve room detail + # 1.6.4 * Clean up modal design diff --git a/android/app/build.gradle b/android/app/build.gradle index 02c47153..ed0f2c2a 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "social.flotilla" minSdk rootProject.ext.minSdkVersion targetSdk rootProject.ext.targetSdkVersion - versionCode 40 - versionName "1.6.4" + versionCode 41 + versionName "1.6.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/ios/App/App.xcodeproj/project.pbxproj b/ios/App/App.xcodeproj/project.pbxproj index e00521c1..27384a53 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -358,14 +358,14 @@ CODE_SIGN_ENTITLEMENTS = "Flotilla Chat.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 31; + CURRENT_PROJECT_VERSION = 32; DEVELOPMENT_TEAM = S26U9DYW3A; INFOPLIST_FILE = App/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Flotilla Chat"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.6.4; + MARKETING_VERSION = 1.6.5; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = social.flotilla; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -385,14 +385,14 @@ CODE_SIGN_ENTITLEMENTS = "Flotilla Chat.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 31; + CURRENT_PROJECT_VERSION = 32; DEVELOPMENT_TEAM = S26U9DYW3A; INFOPLIST_FILE = App/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Flotilla Chat"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.6.4; + MARKETING_VERSION = 1.6.5; PRODUCT_BUNDLE_IDENTIFIER = social.flotilla; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/package.json b/package.json index 7900be8f..129234cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flotilla", - "version": "1.6.4", + "version": "1.6.5", "private": true, "scripts": { "dev": "vite dev",