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
|
||||
2019-05-02
|
||||
|
||||
|
@ -212,9 +212,9 @@ POWER TOYS:
|
||||
--ai auto-import from Firefox/Chrome/Chromium
|
||||
-e, --export file export bookmarks to Firefox format HTML
|
||||
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'
|
||||
format: *[[url][title]], 1 entry per line
|
||||
format: *[[url][title]] :tags:
|
||||
export buku DB, if file ends with '.db'
|
||||
combines with search results, if opted
|
||||
-i, --import file import bookmarks based on file extension
|
||||
|
6
buku
6
buku
@ -53,7 +53,7 @@ try:
|
||||
except ImportError:
|
||||
TypedDict = None # type: ignore
|
||||
|
||||
__version__ = '4.2.2'
|
||||
__version__ = '4.3'
|
||||
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
||||
__license__ = 'GPLv3'
|
||||
|
||||
@ -4907,9 +4907,9 @@ POSITIONAL ARGUMENTS:
|
||||
description=''' --ai auto-import from Firefox/Chrome/Chromium
|
||||
-e, --export file export bookmarks to Firefox format HTML
|
||||
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'
|
||||
format: *[[url][title]] :tags:, 1 entry per line
|
||||
format: *[[url][title]] :tags:
|
||||
export buku DB, if file ends with '.db'
|
||||
combines with search results, if opted
|
||||
-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
|
||||
buku \- Bookmark manager like a text-based mini-web
|
||||
.SH SYNOPSIS
|
||||
|
@ -36,6 +36,15 @@ packages:
|
||||
deps:
|
||||
- python
|
||||
# - python-beautifulsoup4
|
||||
# - python-certifi
|
||||
- python-cryptography
|
||||
- python-urllib3
|
||||
centos8.0:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python
|
||||
# - python-beautifulsoup4
|
||||
# - python-certifi
|
||||
- python-cryptography
|
||||
- python-urllib3
|
||||
@ -48,30 +57,12 @@ packages:
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
fedora26:
|
||||
debian10:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python3
|
||||
- python3-beautifulsoup4
|
||||
- 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-bs4
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
@ -84,7 +75,16 @@ packages:
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
opensuse15.1:
|
||||
fedora30:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python3
|
||||
- python3-beautifulsoup4
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
fedora31:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
@ -102,6 +102,15 @@ packages:
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
opensuse15.1:
|
||||
builddeps:
|
||||
- make
|
||||
deps:
|
||||
- python3
|
||||
- python3-beautifulsoup4
|
||||
- python3-certifi
|
||||
- python3-cryptography
|
||||
- python3-urllib3
|
||||
ubuntu16.04:
|
||||
builddeps:
|
||||
- make
|
||||
|
Loading…
x
Reference in New Issue
Block a user