summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2017-02-20 19:35:55 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2017-02-20 19:35:55 +0530
commit325aab9c782bf82eaf984be2f5cb71dbedd39598 (patch)
tree48efd7f083211688267e94e22edd5b9efcd40e53
parent64799aff05253df0f6633dd68128b9dcbde04050 (diff)
Prepare for release v2.9.v2.9
-rw-r--r--CHANGELOG16
-rw-r--r--README.md3
-rw-r--r--buku.13
-rwxr-xr-xbuku.py2
4 files changed, 21 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index dfaee01..430ae8a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/README.md b/README.md
index 89c9b99..27e7acb 100644
--- a/README.md
+++ b/README.md
@@ -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).
@@ -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:
diff --git a/buku.1 b/buku.1
index d65cfc6..7f06e39 100644
--- a/buku.1
+++ b/buku.1
@@ -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
@@ -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
diff --git a/buku.py b/buku.py
index 9d752d0..2d35c65 100755
--- a/buku.py
+++ b/buku.py
@@ -37,7 +37,7 @@ import urllib3
from urllib3.util import parse_url, make_headers
import webbrowser
-__version__ = '2.8'
+__version__ = '2.9'
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
__license__ = 'GPLv3'