Skip to content

Commit

Permalink
Prepare for release v4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Nov 1, 2018
1 parent 2a69d52 commit 62517b7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Buku v4.0
2018-11-01

What's in?
- Show records in pages with option `-p` (works with `-n`, default 10)
- Enhanced clipboard support: `xclip`, tmux, GNU Screen, Termux
- Prompt key `O` works with search results along with GUI browser toggling
- Search by taglist id with prompt key `g`
- Multiple fixes

-------------------------------------------------------------------------------

Buku v3.9
2018-08-30

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@ SYMBOLS:
PROMPT KEYS:
1-N browse search result indices and/or ranges
O [id|range [...]] open search results/indices in GUI browser
toggle try GUI browser if no arguments
a open all results in browser
s keyword [...] search for records with ANY keyword
S keyword [...] search for records with ALL keywords
Expand All @@ -275,7 +277,6 @@ PROMPT KEYS:
p id|range [...] print bookmarks by indices and/or ranges
w [editor|id] edit and add or update a bookmark
c id copy url at search result index to clipboard
O toggle try to open in a GUI browser
? show this help
q, ^D, double Enter exit buku
```
Expand Down
8 changes: 4 additions & 4 deletions buku.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "BUKU" "1" "30 Aug 2018" "Version 3.9" "User Commands"
.TH "BUKU" "1" "01 Nov 2018" "Version 4.0" "User Commands"
.SH NAME
buku \- Bookmark manager like a text-based mini-web
.SH SYNOPSIS
Expand Down Expand Up @@ -301,6 +301,9 @@ Show debug information and additional logs.
.BI "1-N"
Browse search results by indices and ranges.
.TP
.BI "O" "[id|range [...]]"
Try to open search results or indices (when not in a search context) in a GUI browser. Toggle try to open urls in a GUI based browser (even if BROWSER is set) if no arguments. Toggling is useful when trying to open bookmarks by DB index.
.TP
.BI "a"
Open all search results in browser.
.TP
Expand Down Expand Up @@ -334,9 +337,6 @@ Edit and add or update a bookmark.
.BI "c id"
Copy url at search result index to clipboard.
.TP
.BI "O"
Toggles ignore text-based browsers. If enabled, tries to open urls in a GUI based browser (even if BROWSER is set).
.TP
.BI "?"
Show help on prompt keys.
.TP
Expand Down
6 changes: 3 additions & 3 deletions buku.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
from urllib3.util import parse_url, make_headers
import webbrowser

__version__ = '3.9'
__version__ = '4.0'
__author__ = 'Arun Prakash Jana <[email protected]>'
__license__ = 'GPLv3'

Expand Down Expand Up @@ -2660,8 +2660,8 @@ def prompt_help(file=sys.stdout):
file.write('''
PROMPT KEYS:
1-N browse search result indices and/or ranges
O [id|range [...]] open search result/indices in GUI browser
toggle try GUI browser if no options
O [id|range [...]] open search results/indices in GUI browser
toggle try GUI browser if no arguments
a open all results in browser
s keyword [...] search for records with ANY keyword
S keyword [...] search for records with ALL keywords
Expand Down

4 comments on commit 62517b7

@jarun
Copy link
Owner Author

@jarun jarun commented on 62517b7 Nov 1, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rachmadaniHaryono
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@eclipseo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated in Fedora F27-F30.

@jarun
Copy link
Owner Author

@jarun jarun commented on 62517b7 Nov 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks guys!

Please sign in to comment.