Skip to content

Releases: gumieri/note

1.2.2: Fix number creation when its bigger than 10

27 Aug 17:23
Compare
Choose a tag to compare

Fix bug when creating more than 11 notes, the incremental number (ID) does not increase to 11.

Go to the README to know how to use and how to install.

If you are using Mac OS or Linux, you can install using the commands:

curl -L https://github.com/gumieri/note/releases/download/v1.2.2/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v1.2.1

25 Jun 18:25
Compare
Choose a tag to compare

Commands show, edit and delete are case insensitive to search for a note's title.
If you need to search matching the case, use the flag option: --case-sensitive / -s

Go to the README to know how to use and how to install.

If you are using Mac OS or Linux, you can install using the commands:

curl -L
https://github.com/gumieri/note/releases/download/v1.2.1/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v1.2.0: Change fuzzy search to case insensitive

07 May 19:37
Compare
Choose a tag to compare

Commands show, edit and delete are case insensitive to search for a note's title.
If you need to search matching the case, use the flag option: --case-sensitive / -s

Go to the README to know how to use and how to install.

If you are using Mac OS or Linux, you can install using the commands:

curl -L
https://github.com/gumieri/note/releases/download/v1.2.0/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v1.1.0: New flag options

05 May 15:19
Compare
Choose a tag to compare

note show:

  • --no-title Don't print note's title

note list:

  • --no-header Don't print the description header of the columns
  • --filename Print only the filenames of the notes at the notePath

Go to the README to know how to use and how to install.

If you are using Mac OS or Linux, you can install using the commands:

curl -L
https://github.com/gumieri/note/releases/download/v1.1.0/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v1.0.0: First "stable" release

02 May 23:46
Compare
Choose a tag to compare

Go to the README to know how to use and how to install.

If you are using Mac OS or Linux, you can install using the commands:

curl -L
https://github.com/gumieri/note/releases/download/v1.0.0/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v0.1.0: New Features added:

30 Apr 21:56
Compare
Choose a tag to compare

New Features added:

  • Edit the note's title with note edit --title;
  • When creating a new note, if notePath does not exist, it's created.

Bugs fixed:

  • note list now list only files which seems to be notes;
  • Any command which is not creating a note will return error if notePath
    does not exist.
  • Error when note is not found.

If you are using Mac OS or Linux, you can install using the commands:

curl -L https://github.com/gumieri/note/releases/download/v0.1.0/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v0.0.8

26 Apr 13:34
Compare
Choose a tag to compare

If you are using Mac OS or Linux, you can install using the commands:

curl -L https://github.com/gumieri/note/releases/download/v0.0.8/note-`uname -s`-`uname -m` -o /usr/local/bin/note
chmod +x /usr/local/bin/note

v0.0.7

26 Apr 13:28
Compare
Choose a tag to compare
Fix typo on help

v0.0.6

26 Apr 13:21
Compare
Choose a tag to compare
Documentation about installation and usage

v0.0.5: Usage improvements & bug fixes

25 Apr 20:02
Compare
Choose a tag to compare
`note` command:
  - Add flag title as option to define note title

`note show` command:
  - Fix bug when no note is found

`note edit` command:
  - Fix bug when no note is found

`note delete` command:
  - Fix bug when no note is found
  - Ask for confirmation to delete note
  - Add flag option yes to delete command