Release 26.1 (#4614)
This commit is contained in:
parent
e3e07847c9
commit
f3732cc48e
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -6,6 +6,21 @@
|
||||||
|
|
||||||
### Significant bug fixes
|
### Significant bug fixes
|
||||||
|
|
||||||
|
## v26.1
|
||||||
|
|
||||||
|
### New features and other improvements
|
||||||
|
|
||||||
|
- The "Reply privacy" account preference now has two additional options: "Match default post privacy" and "Direct". "Match default post privacy" is the default for new accounts. https://github.com/tuskyapp/Tusky/pull/4568
|
||||||
|
- Tusky now includes ISRG root certificates to keep working on Android 7 and servers that use Let's Encrypt. https://github.com/tuskyapp/Tusky/pull/4609
|
||||||
|
- The soft keyboard will now be hidden after performing a search. https://github.com/tuskyapp/Tusky/pull/4578
|
||||||
|
|
||||||
|
### Significant bug fixes
|
||||||
|
|
||||||
|
- Fixes a bug where Tusky sometimes mixes up timelines and/or notifications of accounts. https://github.com/tuskyapp/Tusky/pull/4577 https://github.com/tuskyapp/Tusky/pull/4599
|
||||||
|
- Fixes two bugs where Tusky would not provide the translation option even though the server is configured correctly. https://github.com/tuskyapp/Tusky/pull/4560 https://github.com/tuskyapp/Tusky/pull/4590
|
||||||
|
- Fixes a rare bug where Tusky would sometimes randomly crash on startup. https://github.com/tuskyapp/Tusky/pull/4569
|
||||||
|
- Fixes a bug where the timeline would randomly jump to the position of the last clicked "show more" placeholder when "Reading order" was set to "Oldest first". https://github.com/tuskyapp/Tusky/pull/4619
|
||||||
|
|
||||||
## v26.0
|
## v26.0
|
||||||
|
|
||||||
### New features and other improvements
|
### New features and other improvements
|
||||||
|
|
|
@ -29,8 +29,8 @@ android {
|
||||||
namespace "com.keylesspalace.tusky"
|
namespace "com.keylesspalace.tusky"
|
||||||
minSdk 24
|
minSdk 24
|
||||||
targetSdk 34
|
targetSdk 34
|
||||||
versionCode 123
|
versionCode 124
|
||||||
versionName "26.0"
|
versionName "26.1"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,6 @@ This approach of having ~500 user on the nightly releases and ~5000 users on the
|
||||||
- Do a quick check to make sure the build doesn't crash, e.g. by enrolling yourself into the test track.
|
- Do a quick check to make sure the build doesn't crash, e.g. by enrolling yourself into the test track.
|
||||||
- In case there are any problems, delete the GitHub release, fix the problems and start again
|
- In case there are any problems, delete the GitHub release, fix the problems and start again
|
||||||
- Download the build as apk from Google Play (App Bundle Explorer -> choose the release -> Downloads -> Signed, universal APK). Attach it to the GitHub Release.
|
- Download the build as apk from Google Play (App Bundle Explorer -> choose the release -> Downloads -> Signed, universal APK). Attach it to the GitHub Release.
|
||||||
- Update the download link in the [index.html of the website](https://github.com/tuskyapp/tuskyapp.github.io/blob/main/index.html) to point to the apk attached to the GitHub release.
|
|
||||||
- Create a new full release on Google Play. Reuse the build from the Internal Testing track.
|
- Create a new full release on Google Play. Reuse the build from the Internal Testing track.
|
||||||
- Announce the release
|
- Announce the release
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
Tusky 26.1
|
||||||
|
|
||||||
|
- The "Reply privacy" account preference now has two additional options: "Match default post privacy" and "Direct".
|
||||||
|
- Tusky now includes ISRG root certificates to keep working on Android 7 and servers that use Let's Encrypt.
|
||||||
|
- Fixes a bug where Tusky sometimes mixes up timelines and/or notifications of accounts.
|
||||||
|
See https://github.com/tuskyapp/Tusky/blob/develop/CHANGELOG.md for the full changelog
|
Loading…
Reference in New Issue