Skip to content

Commit

Permalink
Misc textual updates to readme and one menu item (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Aug 15, 2023
1 parent 6725ec9 commit fd30a03
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ interactive user experience and powerful reporting.

## Introduction

TimeTagger is a web-based time-tracking solution that can be run locally
TimeTagger is a web-based time-tracking solution that can run locally
or on a server. It's aimed at individuals and freelancers, and has the
following features:

* Intuitive UI based around an interactive timeline.
* Lightweight feel by use of tags rather than projects.
* Reporting in PDF and CSV.
* Set daily/weekly/monthly targets.
* Integrated Pomodoro method.
* Integrated Pomodoro method (experimental).
* Responsive: works well on small and large screens.
* Sync between devices.

Expand All @@ -44,7 +44,7 @@ Maybe I'll someday implement it in something that compiles down to Wasm :)

## Install and run

TimeTagger is a Python library and requires Python 3.6 or higher. The dependencies are listed in `requirements.txt` - these are installed automatically when you install TimeTagger with Pip.
TimeTagger is implemented as a Python library that requires Python 3.6 or higher. The dependencies are listed in `requirements.txt` - these are installed automatically when you install TimeTagger with Pip.

```
# Install
Expand Down Expand Up @@ -101,6 +101,15 @@ python -m timetagger
```


## Show your support

If you're self-hosting TimeTagger and want to support the project, you can:

* Write something about TimeTagger in a blog post or social media (and link to `https://timetagger.app`). This helps search engines find it better.
* Contribute improvements via Github.
* For financial support you can take a subscription or donate (see the donation links on the side).


## Using the hosted version

You can also make use of https://timetagger.app so you don't have to worry about
Expand Down
2 changes: 1 addition & 1 deletion timetagger/app/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def open(self):
("\uf059", True, "Get tips and help", "https://timetagger.app/support"),
("\uf0a1", True, whatsnew, whatsnew_url),
(None, store_valid, "Manage", None),
("\uf002", store_valid, "Search records and tags", self._search),
("\uf002", store_valid, "Search", self._search),
("\uf56f", store_valid, "Import records", self._import),
("\uf56e", store_valid, "Export all records", self._export),
(None, True, "User", None),
Expand Down

0 comments on commit fd30a03

Please sign in to comment.