Skip to content

Commit e13de9f

Browse files
cleanup
1 parent d0c7a81 commit e13de9f

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Summary
44
* [**Unreleased**](#unreleased)
5-
* [**Release 2025-05-27 v0.5a8**](#release-2025-05-27-v05a8) Added functions to collect various groups of csv files
5+
* [**Release 2025-05-27 v0.5a9**](#release-2025-05-27-v05a9) Added functions to collect various groups of csv files
66
* [**Release 2025-05-18 v0.5a7**](#release-2025-05-18-v05a7) Add starttime to `report`; Bug fix in `cancel`
77
* [**Release 2025-05-16 v0.5a6**](#release-2025-05-16-v05a6) Add options to `projects` command; Fix `report` command
88
* [**Release 2025-05-15 v0.5a5**](#release-2025-05-15-v05a5) Report command tested and updated; Get csv files for a single user tested and implemented
@@ -31,7 +31,7 @@
3131

3232
## Unreleased
3333

34-
## Release 2025-05-27 v0.5a8
34+
## Release 2025-05-27 v0.5a9
3535
* ADDED `trk hours` options `--global` to show hours for all projects for a single username
3636
* ADDED `trk hours` options `--global` `--all-users` for hours for all projects for all usernames
3737
* ADDED function get_csv_local_uname

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77
[project]
88
name = "timetracker-csv"
99
description = "Pandas-friendly time tracking from the CLI"
10-
version = "0.5a8"
10+
version = "0.5a9"
1111
license = "AGPL-3.0-or-later"
1212
authors = [
1313
{name = 'DV Klopfenstein, PhD', email = '[email protected]'},

timetracker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
__copyright__ = 'Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved'
44
__author__ = 'DV Klopfenstein, PhD'
5-
__version__ = '0.5a8'
5+
__version__ = '0.5a9'
66

77
# Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved

timetracker/cfg/cfg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
__copyright__ = 'Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved.'
44
__author__ = "DV Klopfenstein, PhD"
55

6-
from os import system
76
from os.path import exists
87
from os.path import relpath
98
from logging import debug

timetracker/cmd/init.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ def cli_run_init(fnamecfg, args):
2525
args.dirgit,
2626
args.project,
2727
args.csvdir,
28-
fcfg_global=args.global_config_file,
29-
no_git_add=args.no_git_add)
28+
fcfg_global=args.global_config_file)
3029

3130
def run_init(cfg, dirgit, dircsv=None, project=None, **kwargs):
3231
"""Initialize timetracking on a project"""
@@ -52,10 +51,5 @@ def run_init(cfg, dirgit, dircsv=None, project=None, **kwargs):
5251
print(str_tostart())
5352
return cfg
5453

55-
####def run_reinit(cfg, dirgit, dircsv, project, fcfg_global=None, dirhome=None):
56-
#### """Reinitialize timetracking project"""
57-
#### cfg.reinit(dirgit, project, dircsv, fcfg_global, dirhome)
58-
#### return cfg
59-
6054

6155
# Copyright (C) 2025-present, DV Klopfenstein, PhD. All rights reserved.

0 commit comments

Comments
 (0)