Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch for About and a docstring #7

Merged
merged 3 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .gitchangelog.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]

Expand Down
7 changes: 4 additions & 3 deletions scripts/timew-status-indicator
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>'])
Expand Down
1 change: 1 addition & 0 deletions src/timew_status/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""
Base configuration and app helper functions.
"""
import os
import subprocess
Expand Down