mirror of
https://github.com/edu4rdshl/Strata.git
synced 2026-07-17 23:24:46 +00:00
chore: bump versions to 0.11.0
This commit is contained in:
parent
b406970b93
commit
7968270aa4
3 changed files with 31 additions and 2 deletions
29
CHANGELOG.md
29
CHANGELOG.md
|
|
@ -6,6 +6,35 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## [0.11.0] - 2026-07-02
|
||||||
|
|
||||||
|
The daemon is unchanged from 0.10.0; all changes are in the GNOME Shell extension.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Light and dark styling follows the GNOME Shell style variant via
|
||||||
|
`stylesheet-dark.css` and `stylesheet-light.css`, loaded automatically by the
|
||||||
|
Shell, instead of loading `light.css` into the theme context by hand. The
|
||||||
|
manual theme setting and its preferences row are gone; the panel matches the
|
||||||
|
shell.
|
||||||
|
- Signal connections use `connectObject`/`disconnectObject`.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- `disable()` stops the daemon synchronously with `SIGTERM` instead of deferring
|
||||||
|
the kill to a timeout.
|
||||||
|
- The daemon-restart timeout is cleared before a new one is scheduled.
|
||||||
|
- Removed the `try`/`catch` around `send_signal`, which does not throw.
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
- The thumbnail cache is cleared asynchronously in batches instead of a
|
||||||
|
synchronous enumerate and delete on the compositor thread.
|
||||||
|
- The thumbnail path cache is pruned on delete and clear-all.
|
||||||
|
- Each row computes its type (image, URL, color) once.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [0.10.0] - 2026-06-25
|
## [0.10.0] - 2026-06-25
|
||||||
|
|
||||||
The daemon is unchanged from 0.9.0; all changes are in the GNOME Shell extension.
|
The daemon is unchanged from 0.9.0; all changes are in the GNOME Shell extension.
|
||||||
|
|
|
||||||
2
strata-daemon/Cargo.lock
generated
2
strata-daemon/Cargo.lock
generated
|
|
@ -1205,7 +1205,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "strata-daemon"
|
name = "strata-daemon"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"blake3",
|
"blake3",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "strata-daemon"
|
name = "strata-daemon"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Strata clipboard manager backend daemon"
|
description = "Strata clipboard manager backend daemon"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue