Prepare for release v3.8

This commit is contained in:
Arun Prakash Jana 2018-05-24 07:59:18 +05:30
parent 24a4c4b083
commit b3437a4bfb
No known key found for this signature in database
GPG Key ID: A75979F35C080412
3 changed files with 13 additions and 6 deletions

View File

@ -1,13 +1,20 @@
Buku v3.8 Buku v3.8
TBD 2018-05-24
What's in? What's in?
- api module is removed and changed into bukuserver - A self-hosted http server, bukuserver, that exposes core functionality
- bukuserver, a browsable frontend on a local webhost server - browsable frontend on a local webhost server
- flask default cli interface is used instead custom one - flask default cli interface is used instead custom one
- handle not only api but also html request - handle not only api but also html request
- statistic page - statistic page
- CRUD on bookmark - 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
View File

@ -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 .SH NAME
buku \- Bookmark manager like a text-based mini-web buku \- Bookmark manager like a text-based mini-web
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -42,7 +42,7 @@ from urllib3.exceptions import LocationParseError
from urllib3.util import parse_url, make_headers from urllib3.util import parse_url, make_headers
import webbrowser import webbrowser
__version__ = '3.7' __version__ = '3.8'
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>' __author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
__license__ = 'GPLv3' __license__ = 'GPLv3'
@ -2273,7 +2273,7 @@ class BukuDb:
newtag = None newtag = None
if not tacit: 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: else:
append_tags_resp = 'y' append_tags_resp = 'y'