mirror of
https://github.com/edu4rdshl/Strata.git
synced 2026-07-17 23:24:46 +00:00
chore: bump versions to 0.9.0
This commit is contained in:
parent
ec8d208f35
commit
7b3a25eaaf
4 changed files with 37 additions and 3 deletions
34
CHANGELOG.md
34
CHANGELOG.md
|
|
@ -6,6 +6,40 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||
|
||||
---
|
||||
|
||||
## [0.9.0] - 2026-06-25
|
||||
|
||||
The daemon is unchanged from 0.8.0; all changes are in the GNOME Shell extension.
|
||||
|
||||
### Changed
|
||||
|
||||
- App exclusion is enforced before a copy is sent to the daemon, instead of
|
||||
storing the item and deleting it afterward. Excluded content no longer
|
||||
reaches the database, and the focused app is checked at copy time.
|
||||
- The D-Bus client follows the GJS guide: signals are handled through the proxy
|
||||
(`connectSignal`) and D-Bus errors are stripped of their `GDBus.Error` prefix
|
||||
before logging.
|
||||
- `shell-version` declares GNOME Shell 50 only, the version the extension is
|
||||
tested on. Installs on older releases are no longer offered.
|
||||
- The daemon-missing notification points to the project page for install
|
||||
instructions.
|
||||
|
||||
### Fixed
|
||||
|
||||
- The initial history load retries on the next daemon connection if the first
|
||||
fetch fails, instead of leaving the panel empty until it is reopened.
|
||||
- The D-Bus proxy callback is ignored when the extension was disabled (or
|
||||
re-enabled) while the proxy was still being created.
|
||||
- `disable()` disconnects the panel indicator signal and drops pending idle
|
||||
callbacks, so nothing runs against a torn-down extension.
|
||||
|
||||
### Internal
|
||||
|
||||
- Extension logging goes through one helper per file. Removed dead fields,
|
||||
stale comments, and leftover narration flagged by the EGO review guidelines
|
||||
and the shexli static analyzer.
|
||||
|
||||
---
|
||||
|
||||
## [0.8.0] - 2026-05-26
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
2
strata-daemon/Cargo.lock
generated
2
strata-daemon/Cargo.lock
generated
|
|
@ -1205,7 +1205,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "strata-daemon"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"blake3",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "strata-daemon"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
edition = "2021"
|
||||
description = "Strata clipboard manager backend daemon"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"name": "Strata",
|
||||
"description": "A fast clipboard manager. Storage, search and image decoding run in a separate Rust daemon.",
|
||||
"uuid": "strata@edu4rdshl.dev",
|
||||
"version": 8,
|
||||
"version": 9,
|
||||
"shell-version": ["50"],
|
||||
"settings-schema": "org.gnome.shell.extensions.strata",
|
||||
"url": "https://github.com/Edu4rdSHL/Strata"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue