diff --git a/CHANGELOG.md b/CHANGELOG.md index 181ed01..a944272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +# 1.3.0 + +* Add optional badge and sound for notifications +* Improve link rendering +* Remove imgproxy +* Bring back blossom feature detection for spaces +* Improve light theme +* Add more info to signer status +* Simplify navigation for adding a space +* Add ability to scan QR code for invite links +* Streamline wallet setup and move receive address setting +* Remove indexeddb on mobile, use capacitor file storage API +* Fix duplicate DMs showing up + # 1.2.5 * Fix icons in build diff --git a/android/app/build.gradle b/android/app/build.gradle index 361ec6f..ad32d8a 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 26 - versionName "1.2.5" + versionCode 27 + versionName "1.3.0" 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 072b1ae..65f9294 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 = 18; + CURRENT_PROJECT_VERSION = 19; DEVELOPMENT_TEAM = S26U9DYW3A; INFOPLIST_FILE = App/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Flotilla Chat"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking"; IPHONEOS_DEPLOYMENT_TARGET = 14.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.2.5; + MARKETING_VERSION = 1.3.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = social.flotilla; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -384,14 +384,14 @@ CODE_SIGN_ENTITLEMENTS = "Flotilla Chat.entitlements"; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 18; + CURRENT_PROJECT_VERSION = 19; DEVELOPMENT_TEAM = S26U9DYW3A; INFOPLIST_FILE = App/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Flotilla Chat"; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking"; IPHONEOS_DEPLOYMENT_TARGET = 14.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 1.2.5; + MARKETING_VERSION = 1.3.0; PRODUCT_BUNDLE_IDENTIFIER = social.flotilla; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/package.json b/package.json index 2ba0717..3544124 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flotilla", - "version": "1.2.5", + "version": "1.3.0", "private": true, "scripts": { "dev": "vite dev", diff --git a/src/app/components/Alerts.svelte b/src/app/components/Alerts.svelte index c7c4f06..7ef417e 100644 --- a/src/app/components/Alerts.svelte +++ b/src/app/components/Alerts.svelte @@ -3,6 +3,7 @@ import {getTagValue, getAddress} from "@welshman/util" import {isRelayFeed, findFeed} from "@welshman/feeds" import Inbox from "@assets/icons/inbox.svg?dataurl" + import Bell from "@assets/icons/bell.svg?dataurl" import AddCircle from "@assets/icons/add-circle.svg?dataurl" import Icon from "@lib/components/Icon.svelte" import Button from "@lib/components/Button.svelte" @@ -108,6 +109,12 @@
+
+ + + Notifications + +

Notify me about new direct messages

Join a space
{/snippet} {#snippet info()} -
Enter an invite code or url to join an existing space.
+
Enter an invite link to join an existing space.
{/snippet}