diff --git a/CHANGES.md b/CHANGES.md index fe6201558..b57d4b414 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,32 @@ +## Changes in 1.1.5 (2023-06-26) + +✨ Features + +- Add analytics tracking for room creation ([#1100](https://github.com/vector-im/element-x-ios/pull/1100)) +- Added support for message forwarding ([#978](https://github.com/vector-im/element-x-ios/issues/978)) +- Failed to send messages can now be either retried or removed by tapping on the error icon/timestamp. ([#979](https://github.com/vector-im/element-x-ios/issues/979)) +- Add MapLibre SDK and the Map View component ([#1062](https://github.com/vector-im/element-x-ios/issues/1062)) +- Two sync loop implementation to allow to fetch and update decryption keys also from the NSE. ([#1083](https://github.com/vector-im/element-x-ios/issues/1083)) +- Add reverse geocoding request, that for a given coordinate will return the place name. ([#1085](https://github.com/vector-im/element-x-ios/issues/1085)) +- Add analytics events. ([#1097](https://github.com/vector-im/element-x-ios/issues/1097)) +- Filtering out push notifications for encrypted rooms based on the room push context. ([#1114](https://github.com/vector-im/element-x-ios/issues/1114)) +- Add static map url builder and static map UI component with placeholder and reload logic ([#1115](https://github.com/vector-im/element-x-ios/issues/1115)) +- Render emote notifications like in the timeline ([#1117](https://github.com/vector-im/element-x-ios/issues/1117)) + +🙌 Improvements + +- Migrate all colour tokens to use Compound and deprecate DesignKit tokens. ([#732](https://github.com/vector-im/element-x-ios/issues/732)) +- General app polish. ([#1036](https://github.com/vector-im/element-x-ios/issues/1036)) +- Refactored AlertInfo to not use the soon to be deprecated API for alerts anymore. ([#1067](https://github.com/vector-im/element-x-ios/issues/1067)) +- Add a screen to be shown when new users are on the waiting list. ([#1154](https://github.com/vector-im/element-x-ios/issues/1154)) + +🐛 Bugfixes + +- Fixed crashes when opening the invites screen ([#1102](https://github.com/vector-im/element-x-ios/issues/1102)) +- Disabled push rules filtering temporarily to fix a bug that prevented push notifications from being received. ([#1155](https://github.com/vector-im/element-x-ios/issues/1155)) +- Handled the cancelled state of a message properly as a failure state. ([#1160](https://github.com/vector-im/element-x-ios/issues/1160)) + + ## Changes in 1.1.4 (2023-06-13) 🐛 Bugfixes diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index 71b9c24fc..a49a5455f 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -4734,7 +4734,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.4; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.3; - MARKETING_VERSION = 1.1.5; + MARKETING_VERSION = 1.1.6; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -4809,7 +4809,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.4; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.3; - MARKETING_VERSION = 1.1.5; + MARKETING_VERSION = 1.1.6; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; diff --git a/changelog.d/1036.change b/changelog.d/1036.change deleted file mode 100644 index 23045ac00..000000000 --- a/changelog.d/1036.change +++ /dev/null @@ -1 +0,0 @@ -General app polish. \ No newline at end of file diff --git a/changelog.d/1062.feature b/changelog.d/1062.feature deleted file mode 100644 index be46b6369..000000000 --- a/changelog.d/1062.feature +++ /dev/null @@ -1 +0,0 @@ -Add MapLibre SDK and the Map View component \ No newline at end of file diff --git a/changelog.d/1067.change b/changelog.d/1067.change deleted file mode 100644 index 1b3e24d4f..000000000 --- a/changelog.d/1067.change +++ /dev/null @@ -1 +0,0 @@ -Refactored AlertInfo to not use the soon to be deprecated API for alerts anymore. \ No newline at end of file diff --git a/changelog.d/1083.feature b/changelog.d/1083.feature deleted file mode 100644 index 00159c7c6..000000000 --- a/changelog.d/1083.feature +++ /dev/null @@ -1 +0,0 @@ -Two sync loop implementation to allow to fetch and update decryption keys also from the NSE. \ No newline at end of file diff --git a/changelog.d/1085.feature b/changelog.d/1085.feature deleted file mode 100644 index 9ca753914..000000000 --- a/changelog.d/1085.feature +++ /dev/null @@ -1 +0,0 @@ -Add reverse geocoding request, that for a given coordinate will return the place name. \ No newline at end of file diff --git a/changelog.d/1097.feature b/changelog.d/1097.feature deleted file mode 100644 index bfdfca6d9..000000000 --- a/changelog.d/1097.feature +++ /dev/null @@ -1 +0,0 @@ -Add analytics events. diff --git a/changelog.d/1102.bugfix b/changelog.d/1102.bugfix deleted file mode 100644 index ef6926045..000000000 --- a/changelog.d/1102.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed crashes when opening the invites screen \ No newline at end of file diff --git a/changelog.d/1114.feature b/changelog.d/1114.feature deleted file mode 100644 index c0f9b88f1..000000000 --- a/changelog.d/1114.feature +++ /dev/null @@ -1 +0,0 @@ -Filtering out push notifications for encrypted rooms based on the room push context. \ No newline at end of file diff --git a/changelog.d/1115.feature b/changelog.d/1115.feature deleted file mode 100644 index c55db0ca0..000000000 --- a/changelog.d/1115.feature +++ /dev/null @@ -1 +0,0 @@ -Add static map url builder and static map UI component with placeholder and reload logic \ No newline at end of file diff --git a/changelog.d/1117.feature b/changelog.d/1117.feature deleted file mode 100644 index 28992490c..000000000 --- a/changelog.d/1117.feature +++ /dev/null @@ -1 +0,0 @@ -Render emote notifications like in the timeline diff --git a/changelog.d/1154.change b/changelog.d/1154.change deleted file mode 100644 index 441dfaab2..000000000 --- a/changelog.d/1154.change +++ /dev/null @@ -1 +0,0 @@ -Add a screen to be shown when new users are on the waiting list. \ No newline at end of file diff --git a/changelog.d/1155.bugfix b/changelog.d/1155.bugfix deleted file mode 100644 index a4b79abcb..000000000 --- a/changelog.d/1155.bugfix +++ /dev/null @@ -1 +0,0 @@ -Disabled push rules filtering temporarily to fix a bug that prevented push notifications from being received. \ No newline at end of file diff --git a/changelog.d/1160.bugfix b/changelog.d/1160.bugfix deleted file mode 100644 index 41e786733..000000000 --- a/changelog.d/1160.bugfix +++ /dev/null @@ -1 +0,0 @@ -Handled the cancelled state of a message properly as a failure state. \ No newline at end of file diff --git a/changelog.d/732.change b/changelog.d/732.change deleted file mode 100644 index db8030b78..000000000 --- a/changelog.d/732.change +++ /dev/null @@ -1 +0,0 @@ -Migrate all colour tokens to use Compound and deprecate DesignKit tokens. \ No newline at end of file diff --git a/changelog.d/978.feature b/changelog.d/978.feature deleted file mode 100644 index aab2ce9e9..000000000 --- a/changelog.d/978.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for message forwarding \ No newline at end of file diff --git a/changelog.d/979.feature b/changelog.d/979.feature deleted file mode 100644 index 7871a077c..000000000 --- a/changelog.d/979.feature +++ /dev/null @@ -1 +0,0 @@ -Failed to send messages can now be either retried or removed by tapping on the error icon/timestamp. \ No newline at end of file diff --git a/changelog.d/pr-1100.feature b/changelog.d/pr-1100.feature deleted file mode 100644 index 7ea6f2bde..000000000 --- a/changelog.d/pr-1100.feature +++ /dev/null @@ -1 +0,0 @@ -Add analytics tracking for room creation diff --git a/project.yml b/project.yml index 9cc26a16d..4678b1a14 100644 --- a/project.yml +++ b/project.yml @@ -29,7 +29,7 @@ settings: APP_NAME: ElementX APP_DISPLAY_NAME: Element X KEYCHAIN_ACCESS_GROUP_IDENTIFIER: $(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER) - MARKETING_VERSION: 1.1.5 + MARKETING_VERSION: 1.1.6 CURRENT_PROJECT_VERSION: 1 DEVELOPMENT_TEAM: 7J4U792NQT