diff options
-rw-r--r-- | CHANGELOG | 14 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | buku | 4 | ||||
-rw-r--r-- | buku.1 | 2 | ||||
-rw-r--r-- | packagecore.yaml | 18 |
5 files changed, 17 insertions, 22 deletions
@@ -1,3 +1,17 @@ +buku v4.4 +2020-06-16 + +- optionally specify output file with `--json` +- confirm auto-tag generation in chatty mode +- unblock GUI browsers when running on WSL +- handle up to 10 server redirects (#452) +- fix issue with reverse proxy (#435) +- use ImportError instead ModuleNotFoundError (#437) +- import pyreadline on windows (#441) +- auto-generated package refresh + +------------------------------------------------------------------------------- + Buku v4.3 2020-01-31 @@ -227,7 +227,6 @@ POWER TOYS: 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 -j, --json [file] JSON formatted output for -p and search. prints to stdout if no arguments provided. otherwise writes to given file @@ -56,7 +56,7 @@ try: except ImportError: TypedDict = None # type: ignore -__version__ = '4.3' +__version__ = '4.4' __author__ = 'Arun Prakash Jana <engineerarun@gmail.com>' __license__ = 'GPLv3' @@ -87,7 +87,7 @@ COLORMAP = {k: '\x1b[%sm' % v for k, v in { 'x': '0', 'X': '1', 'y': '7', 'Y': '7;1', 'z': '2', }.items()} -USER_AGENT = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:75.0) Gecko/20100101 Firefox/75.0' +USER_AGENT = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:77.0) Gecko/20100101 Firefox/77.0' MYHEADERS = None # Default dictionary of headers MYPROXY = None # Default proxy TEXT_BROWSERS = ['elinks', 'links', 'links2', 'lynx', 'w3m', 'www-browser'] @@ -1,4 +1,4 @@ -.TH "BUKU" "1" "31 Jan 2020" "Version 4.3" "User Commands" +.TH "BUKU" "1" "16 Jun 2020" "Version 4.4" "User Commands" .SH NAME buku \- Bookmark manager like a text-based mini-web .SH SYNOPSIS diff --git a/packagecore.yaml b/packagecore.yaml index 11a8cb0..0b8e998 100644 --- a/packagecore.yaml +++ b/packagecore.yaml @@ -60,15 +60,6 @@ packages: commands: precompile: - dnf install python3 python3-cryptography python3-urllib3 - debian8: - builddeps: - - make - deps: - - python3 - - python3-bs4 - - python3-certifi - - python3-cryptography - - python3-urllib3 debian9: builddeps: - make @@ -132,15 +123,6 @@ packages: - python3-certifi - python3-cryptography - python3-urllib3 - ubuntu14.04: - builddeps: - - make - deps: - - python3 - - python3-bs4 - - python3-certifi - - python3-cryptography - - python3-urllib3 ubuntu16.04: builddeps: - make |