From 5e969c714be78e426b7a4d08c08f6238d392768b Mon Sep 17 00:00:00 2001 From: Stephen Arnold Date: Mon, 26 Aug 2024 21:40:55 -0700 Subject: [PATCH 1/3] chg: doc: add yet another misc docstring Signed-off-by: Stephen Arnold --- src/timew_status/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/timew_status/utils.py b/src/timew_status/utils.py index 2264a9e..1afb845 100644 --- a/src/timew_status/utils.py +++ b/src/timew_status/utils.py @@ -1,4 +1,5 @@ """ +Base configuration and app helper functions. """ import os import subprocess From 33c7a7e2ae51e1d3898aba44b3bf3710f80a0133 Mon Sep 17 00:00:00 2001 From: Stephen Arnold Date: Tue, 27 Aug 2024 10:03:58 -0700 Subject: [PATCH 2/3] fix: usr: use correct signature for about dialog, cleanup app string Signed-off-by: Stephen Arnold --- scripts/timew-status-indicator | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/timew-status-indicator b/scripts/timew-status-indicator index 787d4f2..217c47a 100755 --- a/scripts/timew-status-indicator +++ b/scripts/timew-status-indicator @@ -191,12 +191,13 @@ class Indicator: dlg.set_version(APP_VERSION) dlg.set_copyright('© 2024 Stephen L Arnold') dlg.set_license_type(Gtk.License.GPL_3_0) - dlg.set_logo_icon_name(get_state_icon('APP')) - dlg.set_website('https://github.com/sarnold/timewarrior-addons') + dlg.set_logo_icon_name(get_state_icon('APP', CFG)) + dlg.set_website('https://github.com/sarnold/timew-addons') dlg.set_website_label('github.com') dlg.set_comments( """ - A timewarrior control and status monitoring tool for Gtk/XDG desktops. + A Gtk+ timewarrior control and status monitoring + tool for freedesktop environments. """ ) dlg.set_authors(['Stephen L Arnold ']) From a086abb54bbba759d40773c80e02e39b273f481f Mon Sep 17 00:00:00 2001 From: Stephen Arnold Date: Wed, 28 Aug 2024 19:01:04 -0700 Subject: [PATCH 3/3] chg: dev: update changelog and enable git versioning !minor Signed-off-by: Stephen Arnold --- .gitchangelog.rc | 9 +++++---- CHANGELOG.rst | 17 +++++++++++++++-- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.gitchangelog.rc b/.gitchangelog.rc index 418bc60..7660938 100644 --- a/.gitchangelog.rc +++ b/.gitchangelog.rc @@ -160,10 +160,11 @@ tag_filter_regexp = r'^[0-9]+\.[0-9]+(\.[0-9]+)?$' ## ## This label will be used as the changelog Title of the last set of changes ## between last valid tag and HEAD if any. -unreleased_version_label = "(unreleased)" -#unreleased_version_label = lambda: swrap( -# ["git", "describe", "--tags"], -#shell=False) +#unreleased_version_label = "(unreleased)" +unreleased_version_label = lambda: swrap( + ["git", "describe", "--tags"], + shell=False, +) ## ``output_engine`` is a callable diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6c69c10..aafe36e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,20 @@ Changelog ========= -0.2.0 (2024-08-25) +0.2.1 (2024-08-28) +------------------ + +Changes +~~~~~~~ +- Add yet another misc docstring. [Stephen Arnold] + +Fixes +~~~~~ +- Use correct signature for about dialog, cleanup app string. [Stephen + Arnold] + + +0.2.0 (2024-08-27) ------------------ New @@ -17,7 +30,7 @@ Changes - Refactor doc extensions to use apidoc, add docs logo icon. [Stephen Arnold] - * cleanup more docstrings and sphinx modules + * cleanup more docstrings and sphinx modules, update changelog again - Update changelog for next version, remove sphinx git hash. [Stephen Arnold]