Prepare for release v4.5
This commit is contained in:
parent
eceb784a50
commit
71db8c2cff
16
CHANGELOG
16
CHANGELOG
@ -1,3 +1,19 @@
|
||||
buku v4.5
|
||||
2020-12-29
|
||||
|
||||
- Fix encryption and decryption (#480)
|
||||
- Fix Wayback Machine API query
|
||||
- Support wayland native copier `wl-copy`
|
||||
- Add bookmarklet for bukuserver (#385)
|
||||
- Delete by tag without prompting for each bookmark (#458)
|
||||
- Fix issue with utf-8 characters in bookmark titles (#456)
|
||||
- Fix reomve all tags from prompt (#467)
|
||||
- Example to fuzzy search and preview in Quickstart section
|
||||
- Replace debug option `-z` with `-g`
|
||||
- Support python 3.9, retire python 3.5
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
buku v4.4
|
||||
2020-06-16
|
||||
|
||||
|
4
buku
4
buku
@ -57,7 +57,7 @@ try:
|
||||
except ImportError:
|
||||
TypedDict = None # type: ignore
|
||||
|
||||
__version__ = '4.4'
|
||||
__version__ = '4.5'
|
||||
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
||||
__license__ = 'GPLv3'
|
||||
|
||||
@ -88,7 +88,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:77.0) Gecko/20100101 Firefox/77.0'
|
||||
USER_AGENT = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0'
|
||||
MYHEADERS = None # Default dictionary of headers
|
||||
MYPROXY = None # Default proxy
|
||||
TEXT_BROWSERS = ['elinks', 'links', 'links2', 'lynx', 'w3m', 'www-browser']
|
||||
|
2
buku.1
2
buku.1
@ -1,4 +1,4 @@
|
||||
.TH "BUKU" "1" "16 Jun 2020" "Version 4.4" "User Commands"
|
||||
.TH "BUKU" "1" "29 Dec 2020" "Version 4.5" "User Commands"
|
||||
.SH NAME
|
||||
buku \- Bookmark manager like a text-based mini-web
|
||||
.SH SYNOPSIS
|
||||
|
@ -7,16 +7,16 @@ commands:
|
||||
install:
|
||||
- make PREFIX="/usr" install DESTDIR="${BP_DESTDIR}"
|
||||
packages:
|
||||
archlinux:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python
|
||||
- python-beautifulsoup4
|
||||
- python-certifi
|
||||
- python-cryptography
|
||||
- python-urllib3
|
||||
container: "archlinux/base"
|
||||
# archlinux:
|
||||
# builddeps:
|
||||
# - make
|
||||
# deps:
|
||||
# - python
|
||||
# - python-beautifulsoup4
|
||||
# - python-certifi
|
||||
# - python-cryptography
|
||||
# - python-urllib3
|
||||
# container: "archlinux/base"
|
||||
# centos no beautifulsoup4
|
||||
centos7.5:
|
||||
builddeps:
|
||||
@ -78,15 +78,6 @@ packages:
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
fedora30:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python3
|
||||
- python3-beautifulsoup4
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
fedora31:
|
||||
builddeps:
|
||||
- make
|
||||
@ -114,6 +105,15 @@ packages:
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
opensuse15.2:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python3
|
||||
- python3-beautifulsoup4
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
opensuse.tumbleweed:
|
||||
builddeps:
|
||||
- make
|
||||
|
Loading…
Reference in New Issue
Block a user