From fd30a03bde000fbd568aa5489cad9ccdfee8c610 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Tue, 15 Aug 2023 11:08:23 +0200 Subject: [PATCH] Misc textual updates to readme and one menu item (#387) --- README.md | 15 ++++++++++++--- timetagger/app/dialogs.py | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 70d100f5..d45f2870 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ 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: @@ -23,7 +23,7 @@ following features: * 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. @@ -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 @@ -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 diff --git a/timetagger/app/dialogs.py b/timetagger/app/dialogs.py index c08ac5c3..26fdeec1 100644 --- a/timetagger/app/dialogs.py +++ b/timetagger/app/dialogs.py @@ -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),