Skip to content

Commit

Permalink
Prepare for next version
Browse files Browse the repository at this point in the history
  • Loading branch information
fdw committed Mar 17, 2021
1 parent 19fd9b8 commit fd190cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [NEXT]
# [5.1.0]
## Added
- There is a new `print` action to just print out the characters. (#75)

Expand Down
6 changes: 3 additions & 3 deletions picker/docs/rofimoji.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# SYNOPSIS

| **rofimoji** \[**-h**] \[**--version**] \[**--action** {*type*,*copy*,*clipboard*,*unicode*,*copy-unicode*}]
| **rofimoji** \[**-h**] \[**--version**] \[**--action** {*type*,*copy*,*clipboard*,*unicode*,*copy-unicode*,*print*}]
\[**--skin-tone** {*neutral*,*light*,*medium-light*,*moderate*,*dark brown*,*black*,*ask*}]
\[**--files** {*all*,*FILE* \[*FILE* ...]]} \[**--prompt** *PROMPT*]
\[**--rofi-args** *ROFI_ARGS*] \[**--max-recent** *MAX_RECENT*]
Expand All @@ -31,9 +31,9 @@ Select, insert, or copy Unicode characters like emoji using rofi.

--action, -a

: Possible values: type, copy, clipboard, unicode, copy-unicode
: Possible values: type, copy, clipboard, unicode, copy-unicode, print

Choose what to do with the selected characters: Directly type them with the "Typer", copy them to the clipboard using the "Clipboarder", or insert them indirectly using the clipboard. "unicode" will type the unicode codepoints of the chosen characters, "copy-unicode" will copy it.
Choose what to do with the selected characters: Directly type them with the "Typer", copy them to the clipboard using the "Clipboarder", or insert them indirectly using the clipboard. "unicode" will type the unicode codepoints of the chosen characters, "copy-unicode" will copy it. "print" just outputs them on stdout.

--skin-tone=_skin-tone_, -s _skin-tone_

Expand Down
2 changes: 1 addition & 1 deletion picker/rofimoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def parse_arguments(self) -> argparse.Namespace:
description='Select, insert or copy Unicode characters using rofi.',
default_config_files=config_file_locations
)
parser.add_argument('--version', action='version', version='rofimoji 5.1.0-SNAPSHOT')
parser.add_argument('--version', action='version', version='rofimoji 5.1.0')
parser.add_argument(
'--action',
'-a',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='rofimoji',
version='5.1.0-SNAPSHOT',
version='5.1.0',
description='Simple character picker using rofi',
author='fdw',
author_email='[email protected]',
Expand Down

0 comments on commit fd190cb

Please sign in to comment.