Skip to content

Releases: perryrh0dan/taskline

Release 1.2.0

Choose a tag to compare

@perryrh0dan perryrh0dan released this 13 Nov 18:10
f5ba860

Highlights

  • Added possibility to use humanized dates (big thanks to Aditya Sriram for contributing this feature). Complete list of all commands can be found in the readme.
tl t "humanized" -d tomorrow
tl t "thats cool" -d "next monday"
  • Added localization feature. Default language is english. This can be changed in the configuration file under language.
  • Decreased app size from 55mb to 25mb.

Release 1.1.3

Choose a tag to compare

@perryrh0dan perryrh0dan released this 07 Nov 20:28

Highlights

  • Added seperat color for errors
  • Small bug fixes

Release 1.1.2

Choose a tag to compare

@perryrh0dan perryrh0dan released this 05 Nov 13:04

Fixes

  • Fixed date parse bug for december.

Release 1.1.1

Choose a tag to compare

@perryrh0dan perryrh0dan released this 24 Oct 18:04
4f75a0e

Highlights

  • Canceled task texts have the same color as completed task texts.
  • Added 'config' command to display active configuration.

Release 1.1.0

Choose a tag to compare

@perryrh0dan perryrh0dan released this 12 Oct 10:00
16fd210

Highlights

  • Colors can now be customized in .taskline.json. Possible are all foreground colors of chalk, rgb and hex colors.
"theme": {
  "colors": {
    "pale": "grey",
    "task": {
      "priority": {
        "medium": "yellow",
        "high": "red"
      }
    },
    "icons": {
      "note": "blue",
      "success": "green",
      "star": "yellow",
      "progress": "blue",
      "pending": "magenta",
      "canceled": "red"
    }
  }
}

Release 1.0.6

Choose a tag to compare

@perryrh0dan perryrh0dan released this 01 Oct 17:41
15f2a43

Highlights

  • Add new refactor command to refactor the IDs of items

Before (Simplified):

Items: [{
  id: 34
  description: "Test 1"
},{
  id: 107
  description: "Test 2"
},{
  id: 114
  description: "Test 2"
}]

After (Simplified):

Items: [{
  id: 1
  description: "Test 1"
},{
  id: 2
  description: "Test 2"
},{
  id: 3
  description: "Test 2"
}]
  • Items in boards are now sorted by ID

Release 1.0.5

Choose a tag to compare

@perryrh0dan perryrh0dan released this 20 Sep 18:53
8fb12f6

Fixes

  • Fixed issue that lead to problems during deletion and recovery of items.

Release 1.0.3

Choose a tag to compare

@perryrh0dan perryrh0dan released this 20 Sep 17:41
3ebaf74

Fixes

  • Fixed bug that clear command deleted pending tasks

Release 1.0.2

Choose a tag to compare

@perryrh0dan perryrh0dan released this 19 Sep 18:58
0443291

Highlights

  • Complete rebuild in typescript
  • Possibility to cancel tasks
  • Possibility to use id ranges

It is possible to mix the old list functionality with the new id ranges like you need it. Following are some examples how you can combine them.

tl c 1,2,3,4,5 === tl c 1-5 === tl c 1-3,4,5 === tl c 1-2,3,4-5
  • Heavy improved Duedate functionality
    • Display duedate with nice humanized text
    • Possibility to maintain time
  • Armhf support
  • Snap optimization

Fixes

  • Fixed the issue that a task could be created with a priority higher than 3. That lead to an error message when displaying the board.

Release 0.6.3

Choose a tag to compare

@perryrh0dan perryrh0dan released this 13 Sep 10:21

Highlights

  • Display more information after wrong cli command.
  • Removed the update notifier in the snapcraft version.
  • Set update notifier to global.