Prepare for version 2.7 release.

This commit is contained in:
Arun Prakash Jana 2016-11-30 01:19:24 +05:30
parent 46f2f5a1bd
commit 3331e608cb
No known key found for this signature in database
GPG Key ID: A75979F35C080412
3 changed files with 28 additions and 4 deletions

View File

@ -1,3 +1,27 @@
Buku 2.7
2016-11-30
Modifications
- Continuous search at (redesigned) prompt
- urllib3 for all HTTP operations
- Use HTTP HEAD method for pdf and txt mime types
- Add user agent (Firefox 50 on Ubuntu)
- Support URL shortening
- List bookmarks by tag index in tag list
- Show tag usage count in tag list
- Store tags in lowercase (use undocumented option `--fixtags` to fix old tags)
- Support environment variable *https_proxy*
- Support option `--immutable` to pin titles
- Keyword `immutable` to search (`-S`) pinned titles
- Show index in Json output
- New key *q* to quit prompt
- Support deflate compression
- Add option `--tacit` to reduce verbosity of some operations
- **Removed** option `--st`, only `--stag` to search tags
- Support custom DB file location (for library, not exposed to user)
-------------------------------------------------------------------------------
Buku v2.6
2016-11-04

2
buku.1
View File

@ -1,4 +1,4 @@
.TH "BUKU" "1" "Nov 2016" "Version 2.6" "User Commands"
.TH "BUKU" "1" "Nov 2016" "Version 2.7" "User Commands"
.SH NAME
buku \- Powerful command-line bookmark manager. Your mini web!
.SH SYNOPSIS

View File

@ -39,7 +39,7 @@ try:
except ImportError:
pass
__version__ = '2.6'
__version__ = '2.7'
__author__ = 'Arun Prakash Jana <engineerarun@gmail.com>'
__license__ = 'GPLv3'
@ -56,8 +56,8 @@ http_handler = None # urllib3 PoolManager handler
htmlparser = None # Use a single HTML Parser instance
# Disguise as Firefox on Ubuntu
USER_AGENT = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:48.0) Gecko/20100101 \
Firefox/48.0'
USER_AGENT = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 \
Firefox/50.0'
# Crypto globals
BLOCKSIZE = 65536