Skip to content

Commit

Permalink
✏️ Update screenshots on readme file and fix typo in commands
Browse files Browse the repository at this point in the history
- Update screenshots on readme file.
- Replace `fancygit --separator-blocs` by `fancygit --separator-blocks`.
- Replace `fancygit --separator-blocs-tiny` by `fancygit --separator-blocks-tiny`.
  • Loading branch information
diogocavilha committed Feb 27, 2022
1 parent e66d171 commit 89d5f96
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

> Any trouble, please visit the [troubleshooting page](https://github.com/diogocavilha/fancy-git/blob/master/TROUBLESHOOTING.md)
## v7.1.5

- Update screenshots on readme file.
- Replace `fancygit --separator-blocs` by `fancygit --separator-blocks`.
- Replace `fancygit --separator-blocs-tiny` by `fancygit --separator-blocks-tiny`.

## v7.1.4

- Fix changelog presentation after updating.
Expand Down
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,26 @@ In order to install the fonts you can run `fancygit --fonts-install`.

> Screenshot font: Sauce-Code-Pro-Nerd-Font-Complete-Windows-Compatible.ttf
![Separators](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separators.png)
**fancygit --separator-default**
![Separator default](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-default.png)

**fancygit --separator-blocks**
![Separator blocks](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-blocks.png)

**fancygit --separator-blocks-tiny**
![Separator blocks-tiny](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-blocks-tiny.png)

**fancygit --separator-curve**
![Separator curve](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-curve.png)

**fancygit --separator-fire**
![Separator fire](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-fire.png)

**fancygit --separator-lego**
![Separator lego](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-lego.png)

**fancygit --separator-paint**
![Separator paint](https://github.com/diogocavilha/fancy-git/blob/master/images/screenshots/separator-paint.png)

# :dizzy: Feature switchers

Expand Down Expand Up @@ -170,8 +189,8 @@ Type `fancygit -h` to see all available feature switchers on **"FEATURE SWITCHER
| fancygit --enable-rich-notification | Show notification area with icons.
| fancygit --disable-rich-notification | Show notification area with simple symbols.
| fancygit --separator-default | Change the separator to default style.
| fancygit --separator-blocs | Change the separator to blocs style.
| fancygit --separator-blocs-tiny | Change the separator to blocs-tiny style.
| fancygit --separator-blocks | Change the separator to blocks style.
| fancygit --separator-blocks-tiny | Change the separator to blocks-tiny style.
| fancygit --separator-fire | Change the separator to fire style.
| fancygit --separator-lego | Change the separator to lego style.
| fancygit --separator-curve | Change the separator to curve style.
Expand Down
6 changes: 4 additions & 2 deletions commands-handler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ case "$1" in

# Separator styles.
"--separator-default") fancygit_config_save "separator" "";;
"--separator-blocs") fancygit_config_save "separator" "";;
"--separator-blocs-tiny") fancygit_config_save "separator" "";;
"--separator-blocks") fancygit_config_save "separator" "";;
"--separator-blocks-tiny") fancygit_config_save "separator" "";;
"--separator-fire") fancygit_config_save "separator" "";;
"--separator-lego") fancygit_config_save "separator" "";;
"--separator-curve") fancygit_config_save "separator" "";;
Expand All @@ -71,6 +71,8 @@ case "$1" in
"--color-scheme-cga") fancygit_theme_color_scheme_set "default_cga";;

# Deprecated commands.
"--separator-blocs") fancygit_app_command_deprecation_warning "--separator-blocks";;
"--separator-blocs-tiny") fancygit_app_command_deprecation_warning "--separator-blocks-tiny";;
"--config-reset") fancygit_app_command_deprecation_warning "--reset";;
"--colors") fancygit_app_command_deprecation_warning "--suggested-global-git-config";;
"--colors-set") fancygit_app_command_deprecation_warning "--suggested-global-git-config-apply";;
Expand Down
4 changes: 2 additions & 2 deletions fancygit-completion
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ _fancygit() {
--unset-host-name \
--config-list \
--separator-default \
--separator-blocs \
--separator-blocs-tiny \
--separator-blocks \
--separator-blocks-tiny \
--separator-fire \
--separator-lego \
--separator-curve \
Expand Down
4 changes: 2 additions & 2 deletions help.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ COLOR SCHEME COMMANDS:
SEPARATOR STYLE COMMANDS:
fancygit --separator-default Change the separator (if it's present on current theme) to default style.
fancygit --separator-blocs Change the separator (if it's present on current theme) to blocs style.
fancygit --separator-blocs-tiny Change the separator (if it's present on current theme) to blocs-tiny style.
fancygit --separator-blocks Change the separator (if it's present on current theme) to blocks style.
fancygit --separator-blocks-tiny Change the separator (if it's present on current theme) to blocks-tiny style.
fancygit --separator-curve Change the separator (if it's present on current theme) to curve style.
fancygit --separator-fire Change the separator (if it's present on current theme) to fire style.
fancygit --separator-lego Change the separator (if it's present on current theme) to lego style.
Expand Down
Binary file added images/screenshots/separator-blocks-tiny.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/separator-blocks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/separator-curve.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/separator-default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/separator-fire.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/separator-lego.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/separator-paint.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Author: Diogo Alexsander Cavilha <diogocavilha@gmail.com>
# Date: 11.17.2017

FANCYGIT_VERSION="7.1.4"
FANCYGIT_VERSION="7.1.5"
export FANCYGIT_VERSION

0 comments on commit 89d5f96

Please sign in to comment.