Skip to content

Releases: harnyk/wink

v0.4.2

31 Oct 12:09
Compare
Choose a tag to compare

Changelog

  • b974a6f feat(easteregg/data.go): add new positive and rude phrases to CheckinPhrases and CheckoutPhrases to provide more variety and enhance user experience

v0.4.1

19 May 07:16
e5189aa
Compare
Choose a tag to compare

Changelog

v0.4.1-pre.1

19 May 07:10
Compare
Choose a tag to compare
v0.4.1-pre.1 Pre-release
Pre-release

Changelog

v0.4.0

18 May 11:11
e45bba4
Compare
Choose a tag to compare

Changelog

v0.3.0

12 Mar 12:12
2c72a26
Compare
Choose a tag to compare

Changelog

report command now has --output parameter

Specify --output=<path/to/file.json> to export a report in JSON format.

JSON report is a list of records with the following structure:

[
  {
    "date": "2023-03-01",
    "hours": 9.9,
    "is_complete": true,
    "is_invalid_sequence": false
  },
  {
    "date": "2023-03-02",
    "hours": 7.1,
    "is_complete": true,
    "is_invalid_sequence": false
  },
  ...
]
  • date - date of the record in YYYY-MM-DD format
  • hours - number of hours worked on this day
  • is_complete - true if the record is complete, false otherwise. A record is complete if it has both check-in and check-out.
  • is_invalid_sequence - true if the record has invalid check-in/check-out sequence, false otherwise. For example, if you check-in at 10:00 and check-out at 9:00, the record will be invalid.

v0.2.3

24 Feb 18:55
70f84f7
Compare
Choose a tag to compare

Changelog

  • 70f84f7 Merge pull request #15 from harnyk:feat/14-arm

v0.2.2

09 Feb 22:21
Compare
Choose a tag to compare

Changelog

v0.2.1

09 Feb 16:27
7ca2951
Compare
Choose a tag to compare

Changelog

v0.2.0

02 Feb 22:25
c6a0fd1
Compare
Choose a tag to compare

Changelog

v0.1.1

10 Jan 20:09
f7f90cb
Compare
Choose a tag to compare

Changelog

  • Fix "Invalid character" message on encryption key mismatch #8
  • Add easter eggs #6