Prepare for release v4.2
This commit is contained in:
parent
5f101363cf
commit
cd302c45ac
11
CHANGELOG
11
CHANGELOG
@ -1,3 +1,14 @@
|
||||
Buku v4.2
|
||||
2019-04-30
|
||||
|
||||
- Disabled appending tags from page on update
|
||||
- Improved Windows color support using colorama (optional dep)
|
||||
- New format option to show only title and tag
|
||||
- Python 3.4 is EOL, support discontinued
|
||||
- Several fixes and code refactor
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
Buku v4.1
|
||||
2019-01-15
|
||||
|
||||
|
@ -231,9 +231,9 @@ POWER TOYS:
|
||||
print all bookmarks, if no arguments
|
||||
-n shows the last n results (like tail)
|
||||
-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.
|
||||
N=1: URL; N=2: URL, tag; N=3: title;
|
||||
N=4: URL, title, tag; N=5: title, tag;
|
||||
N0 (10, 20, 30, 40, 50) omits DB index
|
||||
-j, --json JSON formatted output for -p and search
|
||||
--colors COLORS set output colors in five-letter string
|
||||
--nc disable color output
|
||||
|
8
buku
8
buku
@ -51,7 +51,7 @@ try:
|
||||
except ImportError:
|
||||
TypedDict = None # type: ignore
|
||||
|
||||
__version__ = '4.1'
|
||||
__version__ = '4.2'
|
||||
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
||||
__license__ = 'GPLv3'
|
||||
|
||||
@ -4827,9 +4827,9 @@ POSITIONAL ARGUMENTS:
|
||||
print all bookmarks, if no arguments
|
||||
-n shows the last n results (like tail)
|
||||
-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.
|
||||
N=1: URL; N=2: URL, tag; N=3: title;
|
||||
N=4: URL, title, tag; N=5: title, tag;
|
||||
N0 (10, 20, 30, 40, 50) omits DB index
|
||||
-j, --json JSON formatted output for -p and search
|
||||
--colors COLORS set output colors in five-letter string
|
||||
--nc disable color output
|
||||
|
2
buku.1
2
buku.1
@ -1,4 +1,4 @@
|
||||
.TH "BUKU" "1" "15 Jan 2019" "Version 4.1" "User Commands"
|
||||
.TH "BUKU" "1" "30 Apr 2019" "Version 4.2" "User Commands"
|
||||
.SH NAME
|
||||
buku \- Bookmark manager like a text-based mini-web
|
||||
.SH SYNOPSIS
|
||||
|
@ -18,7 +18,7 @@ packages:
|
||||
- python-urllib3
|
||||
container: "archlinux/base"
|
||||
# centos no beautifulsoup4
|
||||
centos7.3:
|
||||
centos7.5:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
@ -30,7 +30,7 @@ packages:
|
||||
commands:
|
||||
pre:
|
||||
- yum install epel-release
|
||||
centos7.4:
|
||||
centos7.6:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
@ -84,6 +84,15 @@ packages:
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
opensuse15.1:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python3
|
||||
- python3-beautifulsoup4
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
opensuse42.3:
|
||||
builddeps:
|
||||
- make
|
||||
|
Loading…
x
Reference in New Issue
Block a user