Skip to content

Commit 7a834c4

Browse files
committed
release: 0.13.1
1 parent 6b00053 commit 7a834c4

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
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.13.1
4+
5+
_This version was released on 23/02/2026._
6+
7+
### What's new
8+
9+
- The **in-app changelog** has received various improvements:
10+
- various design tweaks have been made,
11+
- you can now see the update's release date and
12+
- there is now an easily accessible close button.
13+
- The **profile sheet** has received various design improvements.
14+
- The Active Supporter badge is now supported.
15+
16+
### Bug fixes
17+
18+
- The channel view will no longer show an error message in empty channels.
19+
- The message box will no longer become unusably tall when writing or editing long messages.
20+
- The in app changelog should now correctly show after updating the app.
21+
- The "Send Friend Request" button should no longer appear on your own profile or the profiles of bots.
22+
323
## v0.13.0
424

525
_This version was released on 15/02/2026._

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 19
84-
versionName "0.13.0"
83+
versionCode 20
84+
versionName "0.13.1"
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 {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- Improvements to the in-app changelog
2+
- Profile design tweaks
3+
- Bug fixes
4+
- Clerotri is now on Bluesky: https://bsky.app/profile/clerotri.upryzing.app
5+
- Full changelog: https://github.com/upryzing/clerotri/blob/main/CHANGELOG.md#v0130

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.13.0",
3+
"version": "0.13.1",
44
"homepage": "https://upryzing.github.io/clerotri",
55
"license": "AGPL-3.0-only",
66
"private": true,

src/components/sheets/ChangelogSheet.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ import {APP_VERSION} from '@clerotri/lib/metadata';
1212
import {commonValues, ThemeContext} from '@clerotri/lib/themes';
1313
import {openUrl} from '@clerotri/lib/utils';
1414

15-
const releaseDate = 'foo/bar/2026';
15+
const releaseDate = '23/02/2026';
1616

1717
const changelogParagraphs = [
18-
'This release includes **better message rendering**, a bunch of styling and design improvements and a new language - French!',
18+
'This release includes **improvements to the in-app changelog**, some tweaks to the **profile sheet** and a few bug fixes.',
19+
'In case you missed it, v0.13.0 included **better message rendering**, a bunch of styling and design improvements and a new language (French).',
1920
`Also note that **Clerotri is now on Bluesky!** Get updates and support at [**@clerotri.upryzing.app**](${BLUESKY_PROFILE}).`,
2021
];
2122

0 commit comments

Comments
 (0)