diff --git a/CHANGELOG.md b/CHANGELOG.md index 86c6511..0925518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + + + + + + + + + + + + +## [0.3.0] - 2022-11-10 + ### Added - Add new option `-n` which suppresses printing the final newline character in output @@ -16,17 +30,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Multiple command options can be combined - Allow downloading emoji sets at any time after initial run with `-D ` - - - - ### Fixed - Custom default command is only executed when no command option given - Results are matched case insensitively when using rofi picker to match other pickers - - ## [0.2.0] - 2022-06-29 ### Added diff --git a/bemoji b/bemoji index 66c8508..723b911 100755 --- a/bemoji +++ b/bemoji @@ -1,6 +1,6 @@ #!/usr/bin/env bash -bm_version=0.2.0 +bm_version=0.3.0 # Emoji default database location bm_db_location=${BEMOJI_DB_LOCATION:-"${XDG_DATA_HOME:-$HOME/.local/share}/bemoji"} # Setting custom emoji list file location: @@ -57,7 +57,7 @@ while getopts ":f:D:tcenpPhv" o; do t) bm_cmds+=(_typer) ;; c) bm_cmds+=(_clipper) ;; e) bm_cmds+=(cat) ;; - n) bm_echo_newline=false;; + n) bm_echo_newline=false ;; D) BEMOJI_DOWNLOAD_LIST="${OPTARG}" ;; p) bm_private_mode=true ;; P) bm_ignore_recent=true ;;