diff --git a/CHANGES.md b/CHANGES.md index 66ff5d7ee9..23814a9eb1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,24 @@ +## Changes in 1.0.10 (2022-12-22) + +✨ Features + +- Added timeline day separators and read markers ([#383](https://github.com/vector-im/element-x-ios/pull/383)) +- Add retry decryption encrypted timeline item debug menu option ([#384](https://github.com/vector-im/element-x-ios/pull/384)) +- Display an indicator if the network is currently unreachable ([#258](https://github.com/vector-im/element-x-ios/issues/258)) + +🐛 Bugfixes + +- * moved the message delivery status outside of the main content and added it to the plain timeline as well + * fixed glithcy scroll to bottom timeline button + * simplified the emoji picker, double tapping a timeline item directly opens it now and added a context menu option. Linked it to rust side reaction sending + * fixed cold cache seemingly not working (invalid rooms treated as empty) + * made splash screen full screen + * fixed connectivity indicator starting off as offline + * added presentation detents on the NavigationStackCoordinator as they're not inherited from the child + * fixed timeline item link tint colors + * removed some unnecessary classes ([#381](https://github.com/vector-im/element-x-ios/pull/381)) + + ## Changes in 1.0.9 (2022-12-16) ✨ Features diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index 8b96eb444c..a83b5a0120 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -708,6 +708,7 @@ 541542F5AC323709D8563458 /* AnalyticsPrompt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalyticsPrompt.swift; sourceTree = ""; }; 542D4F49FABA056DEEEB3400 /* RustTracing.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RustTracing.swift; sourceTree = ""; }; 5445FCE0CE15E634FDC1A2E2 /* AnalyticsService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalyticsService.swift; sourceTree = ""; }; + 551DAED7F623AA5366E79927 /* repository */ = {isa = PBXFileReference; lastKnownFileType = folder; name = repository; path = .; sourceTree = SOURCE_ROOT; }; 55BC11560C8A2598964FFA4C /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = ""; }; 55D7187F6B0C0A651AC3DFFA /* in */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = in; path = in.lproj/Localizable.strings; sourceTree = ""; }; 55EA4B03F92F31EAA83B3F7B /* FilePreviewModels.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FilePreviewModels.swift; sourceTree = ""; }; @@ -952,7 +953,6 @@ D1A9CCCF53495CF3D7B19FCE /* MockSessionVerificationControllerProxy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockSessionVerificationControllerProxy.swift; sourceTree = ""; }; D263254AFE5B7993FFBBF324 /* NSE.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NSE.entitlements; sourceTree = ""; }; D2D783758EAE6A88C93564EB /* VideoPlayerViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoPlayerViewModel.swift; sourceTree = ""; }; - D31DC8105C6233E5FFD9B84C /* element-x-ios */ = {isa = PBXFileReference; lastKnownFileType = folder; name = "element-x-ios"; path = .; sourceTree = SOURCE_ROOT; }; D33116993D54FADC0C721C1F /* Application.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Application.swift; sourceTree = ""; }; D3D455BC2423D911A62ACFB2 /* NSELogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSELogger.swift; sourceTree = ""; }; D4DA544B2520BFA65D6DB4BB /* target.yml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = target.yml; sourceTree = ""; }; @@ -1937,7 +1937,7 @@ 9413F680ECDFB2B0DDB0DEF2 /* Packages */ = { isa = PBXGroup; children = ( - D31DC8105C6233E5FFD9B84C /* element-x-ios */, + 551DAED7F623AA5366E79927 /* repository */, ); name = Packages; sourceTree = SOURCE_ROOT; @@ -3583,7 +3583,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.0; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.0.10; + MARKETING_VERSION = 1.0.11; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -3655,7 +3655,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.0; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.0.10; + MARKETING_VERSION = 1.0.11; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; diff --git a/changelog.d/258.feature b/changelog.d/258.feature deleted file mode 100644 index c070efe99d..0000000000 --- a/changelog.d/258.feature +++ /dev/null @@ -1 +0,0 @@ -Display an indicator if the network is currently unreachable \ No newline at end of file diff --git a/changelog.d/pr-381.bugfix b/changelog.d/pr-381.bugfix deleted file mode 100644 index d1c17f9d4a..0000000000 --- a/changelog.d/pr-381.bugfix +++ /dev/null @@ -1,9 +0,0 @@ -* moved the message delivery status outside of the main content and added it to the plain timeline as well -* fixed glithcy scroll to bottom timeline button -* simplified the emoji picker, double tapping a timeline item directly opens it now and added a context menu option. Linked it to rust side reaction sending -* fixed cold cache seemingly not working (invalid rooms treated as empty) -* made splash screen full screen -* fixed connectivity indicator starting off as offline -* added presentation detents on the NavigationStackCoordinator as they're not inherited from the child -* fixed timeline item link tint colors -* removed some unnecessary classes \ No newline at end of file diff --git a/changelog.d/pr-383.feature b/changelog.d/pr-383.feature deleted file mode 100644 index 722f9adbe2..0000000000 --- a/changelog.d/pr-383.feature +++ /dev/null @@ -1 +0,0 @@ -Added timeline day separators and read markers \ No newline at end of file diff --git a/changelog.d/pr-384.feature b/changelog.d/pr-384.feature deleted file mode 100644 index c1f2b7fc3a..0000000000 --- a/changelog.d/pr-384.feature +++ /dev/null @@ -1 +0,0 @@ -Add retry decryption encrypted timeline item debug menu option \ No newline at end of file diff --git a/project.yml b/project.yml index ba30b2d155..f0ab64c711 100644 --- a/project.yml +++ b/project.yml @@ -26,7 +26,7 @@ settings: APP_GROUP_IDENTIFIER: group.$(BASE_APP_GROUP_IDENTIFIER) BASE_BUNDLE_IDENTIFIER: io.element.elementx KEYCHAIN_ACCESS_GROUP_IDENTIFIER: $(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER) - MARKETING_VERSION: 1.0.10 + MARKETING_VERSION: 1.0.11 CURRENT_PROJECT_VERSION: 1 DEVELOPMENT_TEAM: 7J4U792NQT