Merge branch 'develop' into feature/fga/fix_ui_timeline
This commit is contained in:
commit
1f82b1442d
36
CHANGES.md
36
CHANGES.md
|
@ -1,18 +1,13 @@
|
||||||
Changes in Element 1.1.2 (2021-XX-XX)
|
Changes in Element 1.1.3 (2021-XX-XX)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
||||||
Features ✨:
|
Features ✨:
|
||||||
-
|
-
|
||||||
|
|
||||||
Improvements 🙌:
|
Improvements 🙌:
|
||||||
- Lazy storage of ReadReceipts
|
-
|
||||||
- Do not load room members in e2e after init sync
|
|
||||||
|
|
||||||
Bugfix 🐛:
|
Bugfix 🐛:
|
||||||
- Add option to cancel stuck messages at bottom of timeline see #516
|
|
||||||
- Ensure message are decrypted in the room list after a clear cache
|
|
||||||
- Regression: Video will not play upon tap, but only after swipe #2928
|
|
||||||
- Cross signing now works with servers with an explicit port in the servername
|
|
||||||
- Timeline : Fix ripple effect on text item and fix background color of separators.
|
- Timeline : Fix ripple effect on text item and fix background color of separators.
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
|
@ -28,13 +23,26 @@ Test:
|
||||||
-
|
-
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
- Change formatting on issue templates to proper headings.
|
-
|
||||||
|
|
||||||
Changes in Element 1.1.1 (2021-XX-XX)
|
Changes in Element 1.1.2 (2021-03-16)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
||||||
Features ✨:
|
Improvements 🙌:
|
||||||
-
|
- Lazy storage of ReadReceipts
|
||||||
|
- Do not load room members in e2e after init sync
|
||||||
|
|
||||||
|
Bugfix 🐛:
|
||||||
|
- Add option to cancel stuck messages at bottom of timeline see #516
|
||||||
|
- Ensure message are decrypted in the room list after a clear cache
|
||||||
|
- Regression: Video will not play upon tap, but only after swipe #2928
|
||||||
|
- Cross signing now works with servers with an explicit port in the servername
|
||||||
|
|
||||||
|
Other changes:
|
||||||
|
- Change formatting on issue templates to proper headings.
|
||||||
|
|
||||||
|
Changes in Element 1.1.1 (2021-03-10)
|
||||||
|
===================================================
|
||||||
|
|
||||||
Improvements 🙌:
|
Improvements 🙌:
|
||||||
- Allow non-HTTPS connections to homeservers on Tor (#2941)
|
- Allow non-HTTPS connections to homeservers on Tor (#2941)
|
||||||
|
@ -56,16 +64,10 @@ Bugfix 🐛:
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
- All string resources and translations have been moved to the application module. Weblate project for the SDK will be removed.
|
- All string resources and translations have been moved to the application module. Weblate project for the SDK will be removed.
|
||||||
|
|
||||||
SDK API changes ⚠️:
|
|
||||||
-
|
|
||||||
|
|
||||||
Build 🧱:
|
Build 🧱:
|
||||||
- Update a lot of dependencies, with the help of dependabot.
|
- Update a lot of dependencies, with the help of dependabot.
|
||||||
- Add a script to download and install APK from the CI
|
- Add a script to download and install APK from the CI
|
||||||
|
|
||||||
Test:
|
|
||||||
-
|
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
- Rework edition of event management
|
- Rework edition of event management
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
Main changes in this version: performance improvement and bug fixes!
|
||||||
|
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.1.2
|
|
@ -14,7 +14,7 @@ kapt {
|
||||||
// Note: 2 digits max for each value
|
// Note: 2 digits max for each value
|
||||||
ext.versionMajor = 1
|
ext.versionMajor = 1
|
||||||
ext.versionMinor = 1
|
ext.versionMinor = 1
|
||||||
ext.versionPatch = 2
|
ext.versionPatch = 3
|
||||||
|
|
||||||
static def getGitTimestamp() {
|
static def getGitTimestamp() {
|
||||||
def cmd = 'git show -s --format=%ct'
|
def cmd = 'git show -s --format=%ct'
|
||||||
|
|
Loading…
Reference in New Issue