Prepare for release v3.4.

This commit is contained in:
Arun Prakash Jana 2017-09-18 11:33:49 +05:30
parent 96412aa80e
commit 092a1f1ba6
No known key found for this signature in database
GPG Key ID: A75979F35C080412
4 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,14 @@
Buku 3.4
2017-09-18
What's in?
- Export bookmarks (including specific tags) to Buku DB file using `--export`
- Option `--import` can merge Buku DB files now, option `--merge` is retired
- Option `--suggest` now works at prompt as well
- Auto-import issue when Firefox is not installed fixed
-------------------------------------------------------------------------------
Buku 3.3.1
2017-09-11

View File

@ -200,8 +200,8 @@ POWER TOYS:
-e, --export file export bookmarks in Firefox format html
export markdown, if file ends with '.md'
format: [title](url), 1 entry per line
use --tag to export only specific tags
export buku DB, if file ends with '.db'
use --tag to export specific tags
-i, --import file import Firefox or Chrome bookmarks html
import markdown, if file ends with '.md'
import buku DB, if file ends with '.db'

2
buku.1
View File

@ -1,4 +1,4 @@
.TH "BUKU" "1" "Sep 2017" "Version 3.3.1" "User Commands"
.TH "BUKU" "1" "Sep 2017" "Version 3.4" "User Commands"
.SH NAME
buku \- Powerful command-line bookmark manager.
.SH SYNOPSIS

View File

@ -39,7 +39,7 @@ import urllib3
from urllib3.util import parse_url, make_headers
import webbrowser
__version__ = '3.3.1'
__version__ = '3.4'
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
__license__ = 'GPLv3'
@ -3900,7 +3900,7 @@ POSITIONAL ARGUMENTS:
export markdown, if file ends with '.md'
format: [title](url), 1 entry per line
export buku DB, if file ends with '.db'
use --tag to export only specific tags
use --tag to export specific tags
-i, --import file import Firefox or Chrome bookmarks html
import markdown, if file ends with '.md'
import buku DB, if file ends with '.db'