diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 70f9fe1..846b7c0 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,19 @@ All notable GoSentry changes are recorded in this file. +## 0.11.1 - 2026-06-25 + +**Settings tab refinements: even spacing, full labels, and a smarter Save button.** + +**Settings tab:** +- The Queue selects (Execution mode, Default overlap policy) now use the same + default spacing as the Storage fields, so they no longer sit squeezed together. +- Widened the caption column so the longest label, "Default overlap policy", is + shown in full instead of being truncated. +- The Save button now starts disabled and only enables once a field differs from + the saved config, re-disabling after a successful save (or if a changed field + is reverted to its original value). + ## 0.11.0 - 2026-06-25 **Manual runs while paused, two-column Settings/details, and a more compact job list.** diff --git a/src/app/version.go b/src/app/version.go index fba3b0d..5acd92d 100644 --- a/src/app/version.go +++ b/src/app/version.go @@ -3,4 +3,4 @@ package app // Version is the application version shown in the GUI and used by build // scripts in artifact names. It is a var rather than a const so release builds // can override it with Go ldflags when CI tags a build. -var Version = "0.11.0" +var Version = "0.11.1"