Prepare for release v2.5.
This commit is contained in:
parent
2e2e24eac7
commit
a0aadec0a8
15
CHANGELOG
15
CHANGELOG
@ -1,3 +1,18 @@
|
|||||||
|
Buku v2.5
|
||||||
|
2016-10-20
|
||||||
|
|
||||||
|
Modifications
|
||||||
|
- Export specific tags to HTML
|
||||||
|
- Fixed obvious issues on Windows
|
||||||
|
- Open a random bookmark with option --open
|
||||||
|
- Support lists and ranges with --print
|
||||||
|
- Show a bookmark on tag append
|
||||||
|
- Show only title with --format=3
|
||||||
|
- PEP8 compliance fixes
|
||||||
|
- Buku GUI integration documented
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Buku v2.4
|
Buku v2.4
|
||||||
2016-09-12
|
2016-09-12
|
||||||
|
|
||||||
|
15
README.md
15
README.md
@ -18,11 +18,6 @@ With tagging and multiple options to search bookmarks, including a deep scan mod
|
|||||||
|
|
||||||
Though a terminal utility, it's possible to add bookmarks to `buku` without touching the terminal! Refer to the section on [GUI integration](#gui-integration). If you prefer the terminal, thanks to the shell completion scripts, you don't need to memorize any of the options. There's an Easter egg to revisit random forgotten bookmarks too.
|
Though a terminal utility, it's possible to add bookmarks to `buku` without touching the terminal! Refer to the section on [GUI integration](#gui-integration). If you prefer the terminal, thanks to the shell completion scripts, you don't need to memorize any of the options. There's an Easter egg to revisit random forgotten bookmarks too.
|
||||||
|
|
||||||
### Upcoming
|
|
||||||
|
|
||||||
- Export specific tags as HTML
|
|
||||||
- Open a random bookmark
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMLTQ76JSXJ4Q"><img src="https://img.shields.io/badge/paypal-donate-orange.svg?maxAge=2592000" alt="Donate" /></a>
|
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMLTQ76JSXJ4Q"><img src="https://img.shields.io/badge/paypal-donate-orange.svg?maxAge=2592000" alt="Donate" /></a>
|
||||||
@ -102,11 +97,11 @@ To remove, run:
|
|||||||
### Installing with a package manager
|
### Installing with a package manager
|
||||||
|
|
||||||
`buku` is also available on
|
`buku` is also available on
|
||||||
- [AUR](https://aur.archlinux.org/packages/buku/) for Arch Linux
|
- [AUR](https://aur.archlinux.org/packages/buku/) for Arch Linux
|
||||||
- Void Linux repos ( `$ sudo xbps-install -S buku` )
|
- Void Linux repos ( `$ sudo xbps-install -S buku` )
|
||||||
- [Homebrew](http://braumeister.org/formula/buku) for OS X
|
- [Homebrew](http://braumeister.org/formula/buku) for OS X
|
||||||
- [Debian Sid](https://packages.debian.org/sid/buku)
|
- [Debian Sid](https://packages.debian.org/sid/buku)
|
||||||
- [Ubuntu PPA](https://launchpad.net/~twodopeshaggy/+archive/ubuntu/jarun/)
|
- [Ubuntu PPA](https://launchpad.net/~twodopeshaggy/+archive/ubuntu/jarun/)
|
||||||
|
|
||||||
### Debian package
|
### Debian package
|
||||||
|
|
||||||
|
2
buku
2
buku
@ -46,7 +46,7 @@ tagsearch = False # Search bookmarks by tag
|
|||||||
titleData = None # Title fetched from a webpage
|
titleData = None # Title fetched from a webpage
|
||||||
interrupted = False # Received SIGINT
|
interrupted = False # Received SIGINT
|
||||||
DELIMITER = ',' # Delimiter used to store tags in DB
|
DELIMITER = ',' # Delimiter used to store tags in DB
|
||||||
_VERSION_ = '2.4' # Program version
|
_VERSION_ = '2.5' # Program version
|
||||||
|
|
||||||
# Crypto globals
|
# Crypto globals
|
||||||
BLOCKSIZE = 65536
|
BLOCKSIZE = 65536
|
||||||
|
2
buku.1
2
buku.1
@ -1,4 +1,4 @@
|
|||||||
.TH "BUKU" "1" "Sep 2016" "Version 2.4" "User Commands"
|
.TH "BUKU" "1" "Oct 2016" "Version 2.5" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
buku \- A powerful command-line bookmark manager. Your mini web!
|
buku \- A powerful command-line bookmark manager. Your mini web!
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user