diff --git a/CHANGELOG b/CHANGELOG index 1934d43..31572ed 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +Buku 3.5 +2017-11-10 + +What's in? +- Buku now has its own user agent +- Search works with field filters +- Edit the last record with `-w=-1` (useful when adding bookmark from GUI)a +- Support for Chromium browser +- Colors disabled by default on cmd (Windows), option `--colors` has to be used +- Get default Firefox profile name from profiles.ini +- Bash scriptlet to autogen records for testing +- Some optimization in add record and suggest tags +- A fresh utility Pinku to import Pinboard bookmarks to Buku + +------------------------------------------------------------------------------- + Buku 3.4 2017-09-18 diff --git a/README.md b/README.md index 9e32aae..6574ffa 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ POWER TOYS: -f, --format N limit fields in -p or Json search output N=1: URL, N=2: URL and tag, N=3: title, N=4: URL, title and tag. To omit DB index, - use N0, e.g, 10, 20, 30, 40. + use N0, e.g., 10, 20, 30, 40. -j, --json Json formatted output for -p and search --colors COLORS set output colors in five-letter string --nc disable color output diff --git a/buku.1 b/buku.1 index 477c4fb..cc99e87 100644 --- a/buku.1 +++ b/buku.1 @@ -1,4 +1,4 @@ -.TH "BUKU" "1" "Sep 2017" "Version 3.4" "User Commands" +.TH "BUKU" "1" "10 Nov 2017" "Version 3.5" "User Commands" .SH NAME buku \- Powerful command-line bookmark manager. .SH SYNOPSIS diff --git a/buku.py b/buku.py index 7f9c932..08defcb 100755 --- a/buku.py +++ b/buku.py @@ -40,7 +40,7 @@ from urllib3.exceptions import LocationParseError from urllib3.util import parse_url, make_headers import webbrowser -__version__ = '3.4' +__version__ = '3.5' __author__ = 'Arun Prakash Jana ' __license__ = 'GPLv3'