Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/enable-gif-sticker-triggers.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-forum-event-timeline.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-forum-routing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-mobile-composer-keyboard.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-sent-message-draft.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-tauri-avatar-token-rotation.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-tauri-media-loading.md

This file was deleted.

15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Sable Client Changelog

## 1.22.0 (2026-08-19)

### Features

* Show the gif and sticker composer buttons by default, keeping only emoji while typing on mobile. by @eleboucher in #1862

### Fixes

* Fix the forum room "Event Timeline" developer entry bouncing straight back to the forum view. by @eleboucher in #1857
* Fix forum rooms opening in the normal chat view and improve forum post and thread navigation. by @7w1 in #1839
* Fix the mobile keyboard staying open over the room list after swiping out of a room. by @eleboucher in #1862
* Fix a sent message coming back in the composer, and stop undo restoring cleared content. by @eleboucher in #1862
* Fix room and user avatars disappearing on desktop after an access-token rotation. by @eleboucher in #1864
* Fix avatars, images and videos disappearing or reloading on desktop and mobile. by @eleboucher in #1862

## 1.21.0 (2026-08-17)

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sable",
"version": "1.21.0",
"version": "1.22.0",
"description": "An almost stable Matrix client",
"keywords": [],
"license": "AGPL-3.0-only",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sable"
version = "1.21.0"
version = "1.22.0"
description = "Yet another matrix client but better"
authors = ["Sable Maintainers"]
license = "AGPL-3.0-or-later"
Expand Down
18 changes: 13 additions & 5 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Sable",
"version": "1.21.0",
"version": "1.22.0",
"identifier": "moe.sable.client",
"build": {
"frontendDist": "../dist",
Expand Down Expand Up @@ -64,7 +64,9 @@
},
"plugins": {
"updater": {
"endpoints": ["https://github.com/SableClient/Sable/releases/latest/download/latest.json"],
"endpoints": [
"https://github.com/SableClient/Sable/releases/latest/download/latest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEM0NDc2QkI0NjdCODlEQUUKUldTdW5iaG50R3RIeFBQeGFwcDZNcGhCQ2Y4UFgzVnptRmNRZjRoVDl0MkdOZmREdC9pTUZrZnAK"
},
"typegen": {
Expand All @@ -78,11 +80,17 @@
},
"deep-link": {
"desktop": {
"schemes": ["sable", "moe.sable.app"]
"schemes": [
"sable",
"moe.sable.app"
]
},
"mobile": [
{
"scheme": ["sable", "moe.sable.app"],
"scheme": [
"sable",
"moe.sable.app"
],
"appLink": false
}
]
Expand All @@ -104,4 +112,4 @@
]
}
}
}
}
Loading