Prepare for release v3.8
This commit is contained in:
parent
24a4c4b083
commit
b3437a4bfb
13
CHANGELOG
13
CHANGELOG
@ -1,13 +1,20 @@
|
||||
Buku v3.8
|
||||
TBD
|
||||
2018-05-24
|
||||
|
||||
What's in?
|
||||
- api module is removed and changed into bukuserver
|
||||
- bukuserver, a browsable frontend on a local webhost server
|
||||
- A self-hosted http server, bukuserver, that exposes core functionality
|
||||
- browsable frontend on a local webhost server
|
||||
- flask default cli interface is used instead custom one
|
||||
- handle not only api but also html request
|
||||
- statistic page
|
||||
- CRUD on bookmark
|
||||
- replaces the earlier api module
|
||||
- Import complete folder hierarchy as tags during auto-import
|
||||
- Merge tags on import even if bookmark URL exists
|
||||
- Orgfile import/export
|
||||
- Show bookmarks to be deleted before deletion
|
||||
- Merge tags during import if bookmark exists
|
||||
- Escape regex metachars in regex input
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
|
2
buku.1
2
buku.1
@ -1,4 +1,4 @@
|
||||
.TH "BUKU" "1" "28 Mar 2018" "Version 3.7" "User Commands"
|
||||
.TH "BUKU" "1" "24 May 2018" "Version 3.8" "User Commands"
|
||||
.SH NAME
|
||||
buku \- Bookmark manager like a text-based mini-web
|
||||
.SH SYNOPSIS
|
||||
|
4
buku.py
4
buku.py
@ -42,7 +42,7 @@ from urllib3.exceptions import LocationParseError
|
||||
from urllib3.util import parse_url, make_headers
|
||||
import webbrowser
|
||||
|
||||
__version__ = '3.7'
|
||||
__version__ = '3.8'
|
||||
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
|
||||
__license__ = 'GPLv3'
|
||||
|
||||
@ -2273,7 +2273,7 @@ class BukuDb:
|
||||
newtag = None
|
||||
|
||||
if not tacit:
|
||||
append_tags_resp = input('Append tags when bookmark exist? (n/y): ')
|
||||
append_tags_resp = input('Append tags when bookmark exist? (y/n): ')
|
||||
else:
|
||||
append_tags_resp = 'y'
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user