Skip to content

Commit 7366d9a

Browse files
committed
release: 0.11.0
1 parent 961e2aa commit 7366d9a

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Clerotri's changelog
22

3+
## v0.11.0
4+
5+
_This version was released on 03/06/2025._
6+
7+
### What's new
8+
9+
- Clerotri now includes **opt-in analytics**. These are **completely optional** and are **disabled by default**. These will help me to improve the app.
10+
- You can find out more about what data is collected and how it's stored in [the privacy information][privacy_info] document.
11+
12+
### Bug fixes
13+
14+
- Some colours in the report menu have been tweaked.
15+
- The role colour picker no longer has unexpected black bars at the top and bottom.
16+
- The scrollbar on the server list has been hidden, as it was unnecessary and looked weird.
17+
- The app should now be [reproducible][rb_info].
18+
- The app no longer asks for the `BIND_GET_INSTALL_REFERRER_SERVICE` permission.
19+
20+
[privacy_info]: https://github.com/upryzing/clerotri/blob/main/docs/user/privacy.md
21+
[rb_info]: https://reproducible-builds.org/
22+
323
## v0.10.0
424

525
_This version was released on 23/04/2025._

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ android {
8080
applicationId "app.upryzing.clerotri"
8181
minSdkVersion rootProject.ext.minSdkVersion
8282
targetSdkVersion rootProject.ext.targetSdkVersion
83-
versionCode 16
84-
versionName "0.10.0"
83+
versionCode 17
84+
versionName "0.11.0"
8585

8686
// disable build-time UUIDs (see https://gitlab.com/IzzyOnDroid/repo/-/wikis/Reproducible-Builds/RB-Hints-for-Developers#no-funny-build-time-generated-ids)
8787
externalNativeBuild {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rvmob",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"homepage": "https://upryzing.github.io/clerotri",
55
"license": "AGPL-3.0-only",
66
"private": true,

src/Generic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
TextEditingModalProps,
1717
} from '@clerotri/lib/types';
1818

19-
export const appVersion = '0.10.0';
19+
export const appVersion = '0.11.0';
2020

2121
export const settings = {
2222
_fetch: (k: string) => {

0 commit comments

Comments
 (0)