Prepare for version 2.7 release.
This commit is contained in:
parent
46f2f5a1bd
commit
3331e608cb
24
CHANGELOG
24
CHANGELOG
@ -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
2
buku.1
@ -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
|
||||
|
6
buku.py
6
buku.py
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user