Taskline Versions Save

Tasks, boards & notes for the command-line habitat

v1.1.2

4 years ago

Fixes

  • Fixed date parse bug for december.

1.1.1

4 years ago

Highlights

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

1.1.0

4 years ago

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"
    }
  }
}

1.0.6

4 years ago

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

1.0.5

4 years ago

Fixes

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

1.0.3

4 years ago

Fixes

  • Fixed bug that clear command deleted pending tasks

1.0.2

4 years ago

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.

0.6.3

4 years ago

Highlights

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

0.6.2

4 years ago

Hotfix

Fixed that help was displayed after every command

0.6.1

4 years ago

Highlights

  • After a wrong cli command the help is displayed
  • At the end of the help a reference to the readme is displayed
  • Fixed output unit test