Skip to content

Releases: geolessel/trello-cli

v0.4.0

15 Jan 19:46
55f6752
Compare
Choose a tag to compare

New features

  • Display card labels with customizable text. This could be emojis or just ascii, but you can customize them in your ~/.trello-cli/secrets.json file. Simply match the text of the trello label with what you'd like displayed in the card list. Example:

    {
      "token": "secret",
      "memberId": "secret",
      "cardLabels": {
        "Blocked": "🛑 ",
        "Zendesk": "[ZD] ",
        "Approved": "👍 ",
        "Needs Changes": "[FIXME] "
      }
    }

    screenshot 2019-01-15 11 46 23

  • Display read-only checklists including each item's status on the card detail page.

Little Stuff

  • When manually refreshing a list of options with r, also return the currently selected option to the first one.
  • Add a make run command to build and run locally using homebrew install locations for prerequisites.

v0.3.0

29 Nov 22:57
7834798
Compare
Choose a tag to compare

A lot of changes in this one.

New functionality

  • Create a card, comment on a card, and add attachments to a card. This is all done through your preferred EDITOR (and the program uses whatever is set as EDITOR in your environment variables. This has really only been tested with vim-likes.
  • Text templates for creating a card, commenting on a card, and adding attachments.
  • Remove yourself from a card. If you are already a member of a card, pressing SPACE again will remove you.
  • Remove a label. If you select a label from the label popup and the card already has the label, it will remove it.
  • Archive a card with x.
  • View info on a card with i. Right now this is simply a cheatsheet of sorts to make linking to github pull requests easier.
  • Whenever you navigate, pull for new notifications. Show a 🔔 in the cards list if that card has notifications.
  • Card activity feed support for archiving and moving a card.
  • Add --setup flag to run through the app setup process (trello --setup).

Upgrading

  • If you've already run through the initial setup, you can run trello --setup-templates to write blank templates for commenting on a card, creating a card, and adding an attachment URL.

v0.2.1

25 Sep 22:48
0587e2f
Compare
Choose a tag to compare

Little quality of life changes:

  • Only ask the Trello API for open boards when populating the boards list

  • Change the following keyboard commands when viewing a card's detail screen:

    Action Old New
    Add yourself as a member of the card a SPACE
    Open the attachment list in order to view an attachment A a

v0.2.0

06 Sep 15:25
5bdc663
Compare
Choose a tag to compare
  • Better word wrapping
  • Semi-automated first-time setup
  • Small amount of testing
  • Card activity feed improvements

v0.1.2

02 Sep 18:01
1d607bf
Compare
Choose a tag to compare
  • Color cards yellow in the card list if you are a member
  • Word wrap card descriptions (thanks @seven1m!)

v0.1.1

30 Aug 22:59
Compare
Choose a tag to compare
  • Add a Makefile to prepare for homebrew

v0.1.0

30 Aug 21:40
78a196c
Compare
Choose a tag to compare

Basic functionality

  • Read Boards
  • Read Lists
  • Read Cards
  • Read card details
  • Add yourself to a card
  • Add labels
  • Move a card to a different list
  • Open card in a browser
  • Open an attachment in a browser