diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2024-04-07 10:51:13 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2024-04-07 10:51:13 +0530 |
commit | 3014ab9dc6e5c61880f0f8b0ecbe28938cd001e1 (patch) | |
tree | 6e0a1d711c43487e9092cf72b9db3a66ad7d5808 | |
parent | 7e994a7d18a3fcabd7f7d7a58d00fc0f5f0e8a7b (diff) |
Prepare for release v4.9v4.9
-rw-r--r-- | CHANGELOG | 14 | ||||
-rwxr-xr-x | buku | 4 | ||||
-rw-r--r-- | buku.1 | 2 |
3 files changed, 17 insertions, 3 deletions
@@ -1,3 +1,17 @@ +buku v4.9 +2024-04-07 + +- fixed profile detection for multiple Firefox installs (#711) +- added option `--offline` to add a bookmark without web connection +- added a mini-guide for quick keyboard access to the bookmarklet +- support environment variable `NO_COLOR` +- fixed HTML encoding detection (#713) +- fixed Windows profile detection (#683) +- support python 3.11 (support for python 3.7 removed) +- fixed readline internal error on Windows (#704) + +------------------------------------------------------------------------------- + buku v4.8 2023-02-18 @@ -60,7 +60,7 @@ try: except ImportError: TypedDict = None # type: ignore -__version__ = '4.8' +__version__ = '4.9' __author__ = 'Arun Prakash Jana <engineerarun@gmail.com>' __license__ = 'GPLv3' @@ -116,7 +116,7 @@ FIELD_FILTER = { ALL_FIELDS = ('id', 'url', 'title', 'desc', 'tags') JSON_FIELDS = {'id': 'index', 'url': 'uri', 'desc': 'description'} -USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0' +USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64; rv:124.0) Gecko/20100101 Firefox/124.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" "18 Feb 2024" "Version 4.8" "User Commands" +.TH "BUKU" "1" "07 Apr 2024" "Version 4.9" "User Commands" .SH NAME buku \- Bookmark manager like a text-based mini-web .SH SYNOPSIS |