diff --git a/.changeset/add-firebase-fcm-config.md b/.changeset/add-firebase-fcm-config.md deleted file mode 100644 index 51218e5be0..0000000000 --- a/.changeset/add-firebase-fcm-config.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: patch ---- - -Enable native FCM push on Android by adding the Firebase app config. diff --git a/CHANGELOG.md b/CHANGELOG.md index e97b2447fb..4b5c45ee8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Sable Client Changelog +## 1.22.3 (2026-09-18) + +### Fixes + +* Enable native FCM push on Android by adding the Firebase app config. by @eleboucher in #2110 + ## 1.22.1 (2026-09-18) ### Fixes diff --git a/package.json b/package.json index 327ce8b6de..0711a77e79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sable", - "version": "1.22.1", + "version": "1.22.3", "description": "An almost stable Matrix client", "keywords": [], "license": "AGPL-3.0-only", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 3453b022fc..b54fd93f4c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sable" -version = "1.22.1" +version = "1.22.3" description = "Yet another matrix client but better" authors = ["Sable Maintainers"] license = "AGPL-3.0-or-later" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 67cce3c410..1e357843c8 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Sable", - "version": "1.22.1", + "version": "1.22.3", "identifier": "moe.sable.client", "build": { "frontendDist": "../dist", @@ -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": { @@ -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 } ] @@ -104,4 +112,4 @@ ] } } -} +} \ No newline at end of file