diff --git a/CHANGELOG.md b/CHANGELOG.md index c54497b..2c10637 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +# 1.0.2 + +* Fix add relay button +* Fix safe inset areas +* Better rendering for errors from relays +* Improve remote signer login + # 1.0.1 * Fix relay images in nav diff --git a/android/app/build.gradle b/android/app/build.gradle index 5a02dc8..3d85ade 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 15 - versionName "1.0.1" + versionCode 16 + versionName "1.0.2" 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 c32214f..c89eb6e 100644 --- a/ios/App/App.xcodeproj/project.pbxproj +++ b/ios/App/App.xcodeproj/project.pbxproj @@ -351,14 +351,14 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 9; + CURRENT_PROJECT_VERSION = 10; 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.0.1; + MARKETING_VERSION = 1.0.2; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; PRODUCT_BUNDLE_IDENTIFIER = social.flotilla; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -376,14 +376,14 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 9; + CURRENT_PROJECT_VERSION = 10; 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.0.1; + MARKETING_VERSION = 1.0.2; PRODUCT_BUNDLE_IDENTIFIER = social.flotilla; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/package.json b/package.json index a3f5b11..ea3a628 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flotilla", - "version": "1.0.1", + "version": "1.0.2", "private": true, "scripts": { "dev": "vite dev", diff --git a/src/app/components/ProfileDetail.svelte b/src/app/components/ProfileDetail.svelte index a64c70d..31640a2 100644 --- a/src/app/components/ProfileDetail.svelte +++ b/src/app/components/ProfileDetail.svelte @@ -66,7 +66,7 @@ - diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 495d69a..d0038f2 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -58,8 +58,6 @@ let settings = $state({...$userSettingValues}) let mutedPubkeys = $state(getPubkeyTagValues(getListTags($userMutes))) let blossomServers = $state(getTagValues("server", getListTags($userBlossomServers))) - - $inspect(blossomServers)
diff --git a/src/routes/spaces/[relay]/[room]/+page.svelte b/src/routes/spaces/[relay]/[room]/+page.svelte index 7cf37c2..dfdf9c0 100644 --- a/src/routes/spaces/[relay]/[room]/+page.svelte +++ b/src/routes/spaces/[relay]/[room]/+page.svelte @@ -42,6 +42,7 @@ import {pushToast} from "@app/toast" const {room = GENERAL} = $page.params + const mounted = now() const lastChecked = $checked[$page.url.pathname] const url = decodeRelay($page.params.relay) const filter = {kinds: [MESSAGE], "#h": [room]} @@ -170,7 +171,8 @@ !newMessagesSeen && adjustedLastChecked && event.pubkey !== $pubkey && - event.created_at > adjustedLastChecked + event.created_at > adjustedLastChecked && + event.created_at < mounted ) { elements.push({type: "new-messages", id: "new-messages"}) newMessagesSeen = true