Skip to content

Commit

Permalink
Prepare for release v2.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Feb 20, 2017
1 parent 64799af commit 325aab9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Buku 2.9
2017-02-20

Modifications
- New option `-write` to compose and edit bookmarks in text editor
- Support positional arguments as search keywords
- New option `--oa` to search and open results directly in browser
- Autodetect Markdown mode by file extension during export, import
- Shortened options:
- `--nc` replaces `--nocolor`
- `--np` replaces `--noprompt`
- `-V` replaces `--upstream`
- Option `--markdown` removed as the mode is autodetected now

-------------------------------------------------------------------------------

Buku 2.8
2017-01-11

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</p>

<p align="center">
<a href="https://asciinema.org/a/0ya8tyzm94cgi6mv4dhxnnem6"><img src="https://asciinema.org/a/9l6s2ppivpo661nu5slwk2t6y.png" alt="Asciicast" width="734"/></a>
<a href="https://asciinema.org/a/8pm3q3n5s95tvat8naam68ejv"><img src="https://asciinema.org/a/8pm3q3n5s95tvat8naam68ejv.png" alt="Asciicast" width="734"/></a>
</p>

`buku` is a powerful bookmark management utility written in Python3 and SQLite3. When I started writing it, I couldn't find a flexible cmdline solution with a private, portable, merge-able database along with browser integration. Hence, `buku` (after my son's nickname).
Expand Down Expand Up @@ -418,6 +418,7 @@ The last index is moved to the deleted index to keep the DB compact.
$ buku -d 100 15 200
16. **Search** bookmarks for **ANY** of the keywords `kernel` and `debugging` in URL, title or tags:

$ buku kernel debugging
$ buku -s kernel debugging
17. **Search** bookmarks with **ALL** the keywords `kernel` and `debugging` in URL, title or tags:

Expand Down
3 changes: 2 additions & 1 deletion buku.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "BUKU" "1" "Jan 2017" "Version 2.8" "User Commands"
.TH "BUKU" "1" "Feb 2017" "Version 2.9" "User Commands"
.SH NAME
buku \- Powerful command-line bookmark manager. Your mini web!
.SH SYNOPSIS
Expand Down Expand Up @@ -449,6 +449,7 @@ The last index is moved to the deleted index to keep the DB compact.
.PP
.EX
.IP
.B buku kernel debugging
.B buku -s kernel debugging
.EE
.PP
Expand Down
2 changes: 1 addition & 1 deletion buku.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from urllib3.util import parse_url, make_headers
import webbrowser

__version__ = '2.8'
__version__ = '2.9'
__author__ = 'Arun Prakash Jana <[email protected]>'
__license__ = 'GPLv3'

Expand Down

6 comments on commit 325aab9

@jarun
Copy link
Owner Author

@jarun jarun commented on 325aab9 Feb 20, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shaggytwodope @zmwangx @szlin Buku v2.9 is released.

@szlin
Copy link
Collaborator

@szlin szlin commented on 325aab9 Feb 20, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun Thanks! I already packaged and uploaded it.

@professorjamesmoriarty
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packages updated, thanks for the notification.

@jarun
Copy link
Owner Author

@jarun jarun commented on 325aab9 Mar 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shaggytwodope buku is still on v2.7 on Pypi. Can you please update?

@professorjamesmoriarty
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun I'm so sorry, It's been updated.

@jarun
Copy link
Owner Author

@jarun jarun commented on 325aab9 Mar 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey no problem at all! Thanks for your time! :)
I have also added a badge for PyPI now which will make it easier for us to remember the version.

Please sign in to comment.