Skip to content

Commit 3014ab9

Browse files
committed
Prepare for release v4.9
1 parent 7e994a7 commit 3014ab9

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
buku v4.9
2+
2024-04-07
3+
4+
- fixed profile detection for multiple Firefox installs (#711)
5+
- added option `--offline` to add a bookmark without web connection
6+
- added a mini-guide for quick keyboard access to the bookmarklet
7+
- support environment variable `NO_COLOR`
8+
- fixed HTML encoding detection (#713)
9+
- fixed Windows profile detection (#683)
10+
- support python 3.11 (support for python 3.7 removed)
11+
- fixed readline internal error on Windows (#704)
12+
13+
-------------------------------------------------------------------------------
14+
115
buku v4.8
216
2023-02-18
317

buku

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ try:
6060
except ImportError:
6161
TypedDict = None # type: ignore
6262

63-
__version__ = '4.8'
63+
__version__ = '4.9'
6464
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
6565
__license__ = 'GPLv3'
6666

@@ -116,7 +116,7 @@ FIELD_FILTER = {
116116
ALL_FIELDS = ('id', 'url', 'title', 'desc', 'tags')
117117
JSON_FIELDS = {'id': 'index', 'url': 'uri', 'desc': 'description'}
118118

119-
USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0'
119+
USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64; rv:124.0) Gecko/20100101 Firefox/124.0'
120120
MYHEADERS = None # Default dictionary of headers
121121
MYPROXY = None # Default proxy
122122
TEXT_BROWSERS = ['elinks', 'links', 'links2', 'lynx', 'w3m', 'www-browser']

buku.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "BUKU" "1" "18 Feb 2024" "Version 4.8" "User Commands"
1+
.TH "BUKU" "1" "07 Apr 2024" "Version 4.9" "User Commands"
22
.SH NAME
33
buku \- Bookmark manager like a text-based mini-web
44
.SH SYNOPSIS

0 commit comments

Comments
 (0)