diff --git a/CHANGELOG.md b/CHANGELOG.md index 7968cfe..8c286ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ > Any trouble, please visit the [troubleshooting page](https://github.com/diogocavilha/fancy-git/blob/master/TROUBLESHOOTING.md) +## v7.2.0 +- Fix theme human prompt space between symbols. + ## v7.1.9 - Add --nofontconfig option to install.sh to skip creation of ~/.fonts and requirement for fontconfig to be installed (useful option for those only accessing a headless server via SSH where the font needs to be set on their local terminal application) diff --git a/theme-functions.sh b/theme-functions.sh index 180923e..d2f585e 100644 --- a/theme-functions.sh +++ b/theme-functions.sh @@ -137,7 +137,7 @@ __fancygit_get_poor_notification_area() { # Trim notification_area content notification_area=$(echo "$notification_area" | sed -e 's/[[:space:]]*$//' | sed -e 's/^[[:space:]]*//') - echo "${notification_area//[[:space:]]*$/}" + echo "${notification_area//[[:space:]]*$/} " return fi diff --git a/themes/human.sh b/themes/human.sh index ac7ef1b..019e595 100644 --- a/themes/human.sh +++ b/themes/human.sh @@ -116,7 +116,7 @@ fancygit_theme_builder() { then prompt_path="${path_git}${path_sign}${path_end}" prompt_branch="${branch}${branch_name}${branch_end}" - PS1="${prompt_time}${prompt_user_at_host}${prompt_path}${venv_name} on ${prompt_branch} $(fancygit_get_notification_area "$is_rich_notification") " + PS1="${prompt_time}${prompt_user_at_host}${prompt_path}${venv_name} on ${prompt_branch} $(fancygit_get_notification_area "$is_rich_notification")" PS1="${PS1}${prompt_symbol}${is_double_line} " return fi diff --git a/version.sh b/version.sh index 682b8ba..71270c9 100644 --- a/version.sh +++ b/version.sh @@ -3,4 +3,4 @@ # Author: Diogo Alexsander Cavilha # Date: 11.17.2017 -export FANCYGIT_VERSION="7.1.8" +export FANCYGIT_VERSION="7.2.0"