Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit dbb120e

Browse files
committed
1.5.8 [release]
1 parent ba73c3b commit dbb120e

3 files changed

Lines changed: 32 additions & 40 deletions

File tree

README.md

Lines changed: 30 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -54,25 +54,36 @@ To exit press <kbd>**Esc**</kbd>.
5454

5555
# Shortcuts / Key commands:
5656

57-
| Shortcut Keys | Action |
58-
|---|---|
59-
| <kbd>Esc</kbd> | exit search |
60-
| <kbd>Ctrl</kbd><kbd>g</kbd> | exit search |
61-
| <kbd>Enter</kbd> | Paste selected |
62-
| <kbd>Cmd</kbd><kbd>Enter</kbd> | Paste through JavaScript Functions selected (you'll need `~/.cutbox.js` set up) |
63-
| <kbd>Cmd</kbd><kbd>Comma</kbd> | open preferences |
64-
| <kbd>Cmd</kbd><kbd>Delete</kbd> | Delete selected item(s) |
65-
| <kbd>Cmd</kbd><kbd>Comma</kbd> | open preferences |
66-
| <kbd>Cmd</kbd><kbd>t</kbd> | toggle color themes |
67-
| <kbd>Cmd</kbd><kbd>p</kbd> | toggle preview |
68-
| <kbd>Cmd</kbd><kbd>Shift</kbd><kbd>=</kbd> | zoom/scale up text |
69-
| <kbd>Cmd</kbd><kbd>Shift</kbd><kbd>-</kbd> | zoom/scale down text |
70-
| <kbd>Cmd</kbd><kbd>Shift</kbd><kbd>0</kbd> | reset text scale/zoom |
71-
| <kbd>Cmd</kbd><kbd>s</kbd> | toggle search modes, fuzzy match, regexp/i or regexp |
72-
| <kbd>Cmd</kbd><kbd>f</kbd> | toggle search favorites / everything (use the right click menu, to favorite) |
57+
| Shortcut Keys | Action |
58+
|--------------------------------------------|-------------------------------------------------------------------------------------------|
59+
| <kbd>Esc</kbd> | Exit search |
60+
| <kbd>Ctrl</kbd><kbd>g</kbd> | Exit search |
61+
| <kbd>Enter</kbd> | Paste selected |
62+
| <kbd>Cmd</kbd><kbd>Enter</kbd> | Paste through JavaScript Functions selected (you'll need `~/.cutbox.js` set up) |
63+
| <kbd>Cmd</kbd><kbd>Comma</kbd> | Open preferences |
64+
| <kbd>Cmd</kbd><kbd>Delete</kbd> | Delete selected item(s) |
65+
| <kbd>Cmd</kbd><kbd>Comma</kbd> | Open preferences |
66+
| <kbd>Cmd</kbd><kbd>t</kbd> | Toggle color themes |
67+
| <kbd>Cmd</kbd><kbd>p</kbd> | Toggle preview |
68+
| <kbd>Cmd</kbd><kbd>h</kbd> | Toggle history time filtering |
69+
| <kbd>Cmd</kbd><kbd>Shift</kbd><kbd>=</kbd> | Zoom/scale up text |
70+
| <kbd>Cmd</kbd><kbd>Shift</kbd><kbd>-</kbd> | Zoom/scale down text |
71+
| <kbd>Cmd</kbd><kbd>Shift</kbd><kbd>0</kbd> | Reset text scale/zoom |
72+
| <kbd>Cmd</kbd><kbd>-</kbd> | Toggle join mode (paste multiple items, joined by newline or string: Set in preferences) |
73+
| <kbd>Cmd</kbd><kbd>[</kbd> | Toggle wrap mode (paste multiple items, wrapped by a pair of strings: Set in preferences) |
74+
| <kbd>Cmd</kbd><kbd>s</kbd> | Toggle search modes, fuzzy match, regexp/i or regexp |
75+
| <kbd>Cmd</kbd><kbd>f</kbd> | Toggle search favorites / everything (use the right click menu, to favorite) |
76+
| | |
77+
| **In items list** | |
78+
| <kbd>Alt</kbd><kbd>up</kbd> | Move to top of items |
79+
| <kbd>Alt</kbd><kbd>down</kbd> | Move to top of items |
80+
| Hold <kbd>Shift</kbd> | Expand single selection to new item, standard shift select |
81+
| Hold <kbd>Cmd</kbd> | Expand selection to new items, multiple selection groups, standard command select |
7382

7483
### Status bar menu
7584

85+
Use the status item to open Cutbox with the mouse, and access options:
86+
7687
![](CutBox/CutBox/GraphicAssets/cutbox-menu.png)
7788

7889
# Install via Homebrew Cask
@@ -85,13 +96,14 @@ brew install --cask cutbox
8596

8697
# Install via Homebrew
8798

88-
For advanced users. Builds the package from source, full Xcode installation needed.
99+
Builds the package from source, a full Xcode installation needed.
100+
89101
```
90102
brew tap cutbox/cutbox
91103
brew install cutbox
92104
```
93105

94-
# First run
106+
# macOS Security Settings - First run
95107

96108
When you first run CutBox Macos will prompt you that the developer cannot be identified.
97109

bin/get_release_notes

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,9 @@
11
#!/bin/zsh
22

3-
CURRENT=$(curl -s -i \
4-
https://github.com/cutbox/CutBox/releases/latest \
5-
| \
6-
grep location: \
7-
| \
8-
awk '{ printf "%s", $2 }')
9-
10-
CURRENT=$(rg -NI -o "[0-9.]*" <<<${CURRENT##*/})
11-
123
<<EOD | cat
134
<p align="center">
145
<img width="150px" src="https://github.com/cutbox/CutBox/raw/master/CutBox/CutBox/GraphicAssets/cutbox-icon.png"/>
156
</p>
16-
17-
<h1 align="center">CutBox ${RELEASE}</h1>
18-
19-
# New things since ${CURRENT}
20-
217
EOD
228

23-
git log \
24-
--format=%B \
25-
--grep="\[release notes\]" \
26-
"${CURRENT}..HEAD" --\
27-
| \
28-
sed 's/\[release notes\]//'
29-
9+
cat release-notes.md

cutbox.github.io

0 commit comments

Comments
 (0)