Prepare for release v4.3
This commit is contained in:
parent
5c55929015
commit
0062292a47
16
CHANGELOG
16
CHANGELOG
@ -1,3 +1,19 @@
|
|||||||
|
Buku v4.3
|
||||||
|
2020-01-31
|
||||||
|
|
||||||
|
- Project renamed to `buku` (small `b`)
|
||||||
|
- Export tags in markdown format as comments
|
||||||
|
- Tag support for Org import/export
|
||||||
|
- Better Windows 10 support
|
||||||
|
- Reverse proxy support for `bukuserver`
|
||||||
|
- Config `OPEN_IN_NEW_TAB` for `bukuserver`
|
||||||
|
- Documentation updated
|
||||||
|
- Fix Firefox default profile detection
|
||||||
|
- Fix export to DB failing after search
|
||||||
|
- Fix broken prompt colors
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Buku v4.2.2
|
Buku v4.2.2
|
||||||
2019-05-02
|
2019-05-02
|
||||||
|
|
||||||
|
@ -212,9 +212,9 @@ POWER TOYS:
|
|||||||
--ai auto-import from Firefox/Chrome/Chromium
|
--ai auto-import from Firefox/Chrome/Chromium
|
||||||
-e, --export file export bookmarks to Firefox format HTML
|
-e, --export file export bookmarks to Firefox format HTML
|
||||||
export Markdown, if file ends with '.md'
|
export Markdown, if file ends with '.md'
|
||||||
format: [title](url), 1 entry per line
|
format: [title](url) <!-- TAGS -->
|
||||||
export Orgfile, if file ends with '.org'
|
export Orgfile, if file ends with '.org'
|
||||||
format: *[[url][title]], 1 entry per line
|
format: *[[url][title]] :tags:
|
||||||
export buku DB, if file ends with '.db'
|
export buku DB, if file ends with '.db'
|
||||||
combines with search results, if opted
|
combines with search results, if opted
|
||||||
-i, --import file import bookmarks based on file extension
|
-i, --import file import bookmarks based on file extension
|
||||||
|
6
buku
6
buku
@ -53,7 +53,7 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
TypedDict = None # type: ignore
|
TypedDict = None # type: ignore
|
||||||
|
|
||||||
__version__ = '4.2.2'
|
__version__ = '4.3'
|
||||||
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
||||||
__license__ = 'GPLv3'
|
__license__ = 'GPLv3'
|
||||||
|
|
||||||
@ -4907,9 +4907,9 @@ POSITIONAL ARGUMENTS:
|
|||||||
description=''' --ai auto-import from Firefox/Chrome/Chromium
|
description=''' --ai auto-import from Firefox/Chrome/Chromium
|
||||||
-e, --export file export bookmarks to Firefox format HTML
|
-e, --export file export bookmarks to Firefox format HTML
|
||||||
export Markdown, if file ends with '.md'
|
export Markdown, if file ends with '.md'
|
||||||
format: [title](url), 1 entry per line
|
format: [title](url) <!-- TAGS -->
|
||||||
export Orgfile, if file ends with '.org'
|
export Orgfile, if file ends with '.org'
|
||||||
format: *[[url][title]] :tags:, 1 entry per line
|
format: *[[url][title]] :tags:
|
||||||
export buku DB, if file ends with '.db'
|
export buku DB, if file ends with '.db'
|
||||||
combines with search results, if opted
|
combines with search results, if opted
|
||||||
-i, --import file import bookmarks based on file extension
|
-i, --import file import bookmarks based on file extension
|
||||||
|
2
buku.1
2
buku.1
@ -1,4 +1,4 @@
|
|||||||
.TH "BUKU" "1" "02 May 2019" "Version 4.2.2" "User Commands"
|
.TH "BUKU" "1" "31 Jan 2020" "Version 4.3" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
buku \- Bookmark manager like a text-based mini-web
|
buku \- Bookmark manager like a text-based mini-web
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -36,6 +36,15 @@ packages:
|
|||||||
deps:
|
deps:
|
||||||
- python
|
- python
|
||||||
# - python-beautifulsoup4
|
# - python-beautifulsoup4
|
||||||
|
# - python-certifi
|
||||||
|
- python-cryptography
|
||||||
|
- python-urllib3
|
||||||
|
centos8.0:
|
||||||
|
builddeps:
|
||||||
|
- make
|
||||||
|
deps:
|
||||||
|
- python
|
||||||
|
# - python-beautifulsoup4
|
||||||
# - python-certifi
|
# - python-certifi
|
||||||
- python-cryptography
|
- python-cryptography
|
||||||
- python-urllib3
|
- python-urllib3
|
||||||
@ -48,30 +57,12 @@ packages:
|
|||||||
- python3-certifi
|
- python3-certifi
|
||||||
- python3-cryptography
|
- python3-cryptography
|
||||||
- python3-urllib3
|
- python3-urllib3
|
||||||
fedora26:
|
debian10:
|
||||||
builddeps:
|
builddeps:
|
||||||
- make
|
- make
|
||||||
deps:
|
deps:
|
||||||
- python3
|
- python3
|
||||||
- python3-beautifulsoup4
|
- python3-bs4
|
||||||
- python3-certifi
|
|
||||||
- python3-cryptography
|
|
||||||
- python3-urllib3
|
|
||||||
fedora27:
|
|
||||||
builddeps:
|
|
||||||
- make
|
|
||||||
deps:
|
|
||||||
- python3
|
|
||||||
- python3-beautifulsoup4
|
|
||||||
- python3-certifi
|
|
||||||
- python3-cryptography
|
|
||||||
- python3-urllib3
|
|
||||||
fedora28:
|
|
||||||
builddeps:
|
|
||||||
- make
|
|
||||||
deps:
|
|
||||||
- python3
|
|
||||||
- python3-beautifulsoup4
|
|
||||||
- python3-certifi
|
- python3-certifi
|
||||||
- python3-cryptography
|
- python3-cryptography
|
||||||
- python3-urllib3
|
- python3-urllib3
|
||||||
@ -84,7 +75,16 @@ packages:
|
|||||||
- python3-certifi
|
- python3-certifi
|
||||||
- python3-cryptography
|
- python3-cryptography
|
||||||
- python3-urllib3
|
- python3-urllib3
|
||||||
opensuse15.1:
|
fedora30:
|
||||||
|
builddeps:
|
||||||
|
- make
|
||||||
|
deps:
|
||||||
|
- python3
|
||||||
|
- python3-beautifulsoup4
|
||||||
|
- python3-certifi
|
||||||
|
- python3-cryptography
|
||||||
|
- python3-urllib3
|
||||||
|
fedora31:
|
||||||
builddeps:
|
builddeps:
|
||||||
- make
|
- make
|
||||||
deps:
|
deps:
|
||||||
@ -102,6 +102,15 @@ packages:
|
|||||||
- python3-certifi
|
- python3-certifi
|
||||||
- python3-cryptography
|
- python3-cryptography
|
||||||
- python3-urllib3
|
- python3-urllib3
|
||||||
|
opensuse15.1:
|
||||||
|
builddeps:
|
||||||
|
- make
|
||||||
|
deps:
|
||||||
|
- python3
|
||||||
|
- python3-beautifulsoup4
|
||||||
|
- python3-certifi
|
||||||
|
- python3-cryptography
|
||||||
|
- python3-urllib3
|
||||||
ubuntu16.04:
|
ubuntu16.04:
|
||||||
builddeps:
|
builddeps:
|
||||||
- make
|
- make
|
||||||
|
Loading…
x
Reference in New Issue
Block a user