Skip to content

Commit 39d8db2

Browse files
Merge pull request #71 from dvklopfenstein/dox
Add `--upgrade` to `pip install` directions
2 parents d06e20e + d6dfc83 commit 39d8db2

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

doc/mkdocs/source/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $ trk hours
8484
## Installation
8585
Install with [timetracker-csv](https://pypi.org/project/timetracker-csv/) pip:
8686
```
87-
$ pip install timetracker-csv
87+
$ pip install --upgrade timetracker-csv
8888
```
8989
Or install from source:
9090
```

doc/mkdocs/source/index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ The project repository (repo) name is "meetinghouse."
5050
$ cd /home/bez/projs/meetinghouse
5151

5252
$ trk init --csvdir doc/
53+
or
54+
$ trk init --d doc/
5355
Initialized timetracker directory: /home/bez/projs/meetinghouse/.timetracker
5456

5557
#----------------------------------------------------
@@ -58,7 +60,8 @@ $ trk start
5860
Timetracker started now: Mon 09:00 AM: 2025-03-24 09:00:00
5961
```
6062

61-
Initializing with the option `--csvdir doc/` will cause time units to be written to
63+
Initializing with the option `--csvdir doc/` (`-d doc/`)
64+
will cause time units to be written to
6265
a csv file stored in the `doc/` directory,
6366
rather than in the default repo root directory.
6467
```sh
@@ -83,7 +86,7 @@ $ trk hours
8386
## Installation
8487
Install with [timetracker-csv](https://pypi.org/project/timetracker-csv/) pip:
8588
```sh
86-
$ pip install timetracker-csv
89+
$ pip install --upgrade timetracker-csv
8790
```
8891
Or install from source:
8992
```sh

doc/mkdocs/source/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ License: https://www.gnu.org/licenses/agpl-3.0.en.html#license-text
88
## Installation
99
Install with [timetracker-csv](https://pypi.org/project/timetracker-csv/) pip:
1010
```sh
11-
$ pip install timetracker-csv
11+
$ pip install --upgrade timetracker-csv
1212
```
1313
Or install from source:
1414
```sh

doc/mkdocs/source/usage_basic.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ Comma-separated value
2929
files store tabular data in plain text.
3030
CSV files are readable by both humans and computers.
3131
Each time unit is stored in a single row.
32-
Each row contains several columns, including:
33-
34-
Name | Example
35-
------------------|-----------------------------
36-
Start time | 9am Monday, March 31, 2025
37-
Duration | 2 hours
38-
One activity type | "documenting" or "coding"
39-
Description | Made decorative almond tree blossoms out of gold
40-
Tags | grant=ABC, grant=XYZ, art, metalwork
32+
Each row contains five columns:
33+
34+
Name | Required | Example
35+
------------------|----------|------------------
36+
Start time | required | 9am Monday, March 31, 2025
37+
Duration | required | 2 hours
38+
One activity type | optional | "documenting" or "coding"
39+
Description | required | Made decorative almond tree blossoms out of gold
40+
Tags | optional | grant=ABC, grant=XYZ, art, metalwork
4141

4242
There can be one activity per time unit.
4343

0 commit comments

Comments
 (0)