Skip to content

Commit 1815eeb

Browse files
committed
bump version to 0.5
1 parent 51c1889 commit 1815eeb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ Usage: uclip [-i] Copy standard input as UTF-8 to the clipboard
99
uclip -I Copy standard input as UTF-16LE to the clipboard
1010
uclip -c [TEXT] Copy TEXT to the clipboard (empty if no TEXT)
1111
uclip -o Write clipboard text to standard output as UTF-8
12+
uclip -oo Like -o, but no special handling of console output
1213
uclip -O Write clipboard text to standard output as UTF-16LE
1314
uclip -h Print this help and exit
14-
Version 0.4, https://github.com/avih/uclip
15+
Version 0.5, https://github.com/avih/uclip
1516
```
1617

1718

uclip.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ static void Main(string[] args) {
146146
" uclip -oo Like -o, but no special handling of console output\n"+
147147
" uclip -O Write clipboard text to standard output as UTF-16LE\n"+
148148
" uclip -h Print this help and exit\n"+
149-
"Version 0.4, https://github.com/avih/uclip\n");
149+
"Version 0.5, https://github.com/avih/uclip\n");
150150

151151
} else if (o == "-c" && alen <= 2) {
152152
to_clipboard(alen == 1 ? "" : args[1]);

0 commit comments

Comments
 (0)