Skip to content

Commit

Permalink
bump version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
avih committed Aug 18, 2023
1 parent 51c1889 commit 1815eeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ Usage: uclip [-i] Copy standard input as UTF-8 to the clipboard
uclip -I Copy standard input as UTF-16LE to the clipboard
uclip -c [TEXT] Copy TEXT to the clipboard (empty if no TEXT)
uclip -o Write clipboard text to standard output as UTF-8
uclip -oo Like -o, but no special handling of console output
uclip -O Write clipboard text to standard output as UTF-16LE
uclip -h Print this help and exit
Version 0.4, https://github.com/avih/uclip
Version 0.5, https://github.com/avih/uclip
```


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

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

0 comments on commit 1815eeb

Please sign in to comment.