Release version 0.2.2

Add Linux desktop integration that installs a user-level .desktop file and icon under XDG data directories so taskbars can match the PySentry window to the application icon.

Pass the installed icon path into Linux autostart desktop entries when available, while keeping the Windows and fallback autostart APIs compatible.

Bump the application version to 0.2.2, update README artifact examples, and record the release notes in docs/CHANGELOG.md. Also adjust the Mermaid architecture diagram so Gitea can render it without invalid SVG line-break tags.
This commit is contained in:
mixeme
2026-06-15 20:57:16 +03:00
parent e2464aab0f
commit c644636e57
12 changed files with 114 additions and 22 deletions
+9 -9
View File
@@ -10,15 +10,15 @@ job state.
```mermaid
flowchart LR
user["Desktop user"]
gui["src/gui\nFyne windows, tabs, dialogs"]
store["src/core Store\nYAML config and jobs"]
scheduler["src/core Scheduler\n@every and cron timing"]
runner["src/core Runner\nshell command execution"]
autostart["src/core Autostart\nWindows Run / Linux desktop startup"]
config["pysentry.yaml\napplication settings"]
jobs["jobs.yaml\njob definitions"]
logs["logs_dir\nper-run command output logs"]
shell["Platform shell\ncmd.exe /C or sh -c"]
gui["src/gui - Fyne windows, tabs, dialogs"]
store["src/core Store - YAML config and jobs"]
scheduler["src/core Scheduler - @every and cron timing"]
runner["src/core Runner - shell command execution"]
autostart["src/core Autostart - Windows Run / Linux desktop startup"]
config["pysentry.yaml - application settings"]
jobs["jobs.yaml - job definitions"]
logs["logs_dir - per-run command output logs"]
shell["Platform shell - cmd.exe /C or sh -c"]
user -->|"edits jobs, settings, runs commands"| gui
gui -->|"OpenStore, SaveConfig, SaveJobs"| store