From 9b5cbbcf2e803aaf4421f1b31916cbe18c9a4894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 4 Sep 2025 15:14:13 +0200 Subject: [PATCH 1/2] set version to 1.8.2-snapshot --- package.json | 2 +- src/version.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4d015e2..f2f4a68 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlab-time-tracker", - "version": "1.8.1", + "version": "1.8.2-snapshot", "type": "module", "description": "A command line interface for GitLabs time tracking feature.", "bugs": { diff --git a/src/version.js b/src/version.js index f2915e1..2f67589 100644 --- a/src/version.js +++ b/src/version.js @@ -1 +1 @@ -let version = '1.8.1'; export default version; +let version = '1.8.2-snapshot'; export default version; From 707a2f1a30958b3203544f32e1052343bea753c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Wed, 3 Dec 2025 10:58:53 +0100 Subject: [PATCH 2/2] documentation examples, more realistic --to date --- documentation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation.md b/documentation.md index f6c0b9e..499790f 100644 --- a/documentation.md +++ b/documentation.md @@ -90,7 +90,7 @@ docker run \ --rm -it \ -v ~/.local/share/.gtt/:/home/gtt/.local/share/.gtt \ gitlab-time-tracker:latest \ - report "ourorganization/aproject" --user=xxxx --from="2020-04-01" --to="2020-06-30" + report "ourorganization/aproject" --user=xxxx --from="2020-04-01" --to="2020-07-01" ``` @@ -290,7 +290,7 @@ chromium --headless --run-all-compositor-stages-before-draw --print-to-pdf-no-he There are additional options for the invoice output as given in the following example: ```shell -gtt report --output=invoice --file=invoice.md --from 2021-02-01 --to 2021-02-28 --closed --invoiceCurrencyMaxUnit 1 --invoiceTitle "Rechnung" --invoiceReference "Reference" --invoiceAddress "Firma" "Mr. X" "Strasse" "10000 Ort" "Land" --invoiceCurrency "EUR" --invoiceCurrencyPerHour "50" --invoiceVAT "0.15" --invoiceDate "1.03.2021" --invoicePositionText "Position Text" +gtt report --output=invoice --file=invoice.md --from 2021-02-01 --to 2021-03-01 --closed --invoiceCurrencyMaxUnit 1 --invoiceTitle "Rechnung" --invoiceReference "Reference" --invoiceAddress "Firma" "Mr. X" "Strasse" "10000 Ort" "Land" --invoiceCurrency "EUR" --invoiceCurrencyPerHour "50" --invoiceVAT "0.15" --invoiceDate "1.03.2021" --invoicePositionText "Position Text" ``` For paper invoice, further process the output with a css, see the folder preview (styles.css, invoice.pdf)