Skip to content

Commit

Permalink
Prepare for release v4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Apr 7, 2024
1 parent 7e994a7 commit 3014ab9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions buku
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ try:
except ImportError:
TypedDict = None # type: ignore

__version__ = '4.8'
__version__ = '4.9'
__author__ = 'Arun Prakash Jana <[email protected]>'
__license__ = 'GPLv3'

Expand Down Expand Up @@ -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']
Expand Down
2 changes: 1 addition & 1 deletion buku.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down

1 comment on commit 3014ab9

@jarun
Copy link
Owner Author

@jarun jarun commented on 3014ab9 Apr 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.