diff --git a/CHANGELOG.md b/CHANGELOG.md index 428004a..6cedf89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.1] - 2022-11-06 + +### Fixed + +- Fixed git configuration +- Fixed FireFox favorites reference + +### Updated + +- Updated docs + ## [1.2.0] - 2022-09-16 +### Updated + - Updated `asdf` - Updated `vscode` installing flow - Updated docs ## [1.1.0] - 2022-09-16 +### Updated + - Updated to Ruby 3.1.2 - Added Postgres dependencies diff --git a/README.md b/README.md index 9200ebd..8b8774e 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Automation script for spinning-up Ruby developer environment. Configure your dev * Installs & configures [MRI Ruby](https://www.ruby-lang.org/en/downloads/releases) 3.1.2 with default gem set * Installs [Postgres](https://www.postgresql.org/download/linux/ubuntu) & system deps * Installs & configures [Visual Studio Code](https://code.visualstudio.com) +* Addes favorites to Gnome dock panel ## Requirements/Preconditions diff --git a/setup.sh b/setup.sh index 2909525..08c5b4e 100644 --- a/setup.sh +++ b/setup.sh @@ -88,7 +88,7 @@ function step_6() { wget https://raw.githubusercontent.com/RubyWorkout/frs/master/.gitignore_global credentials="$HOME/.my-credentials" echo -n "" > ${credentials} - echo "https://${git_profile}:${git_token}@github.com" >> ${credentials} + echo "https://${git_username}:${git_token}@github.com" >> ${credentials} git config --global user.email ${email} git config --global user.name ${name} git config --global credential.helper "store --file ${credentials}" @@ -109,7 +109,7 @@ function step_7() { # Add shortcuts to dock function step_8() { step_title $1 "Adding favorites to dock" - gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'org.gnome.Nautilus.desktop', 'snap-store_ubuntu-software.desktop', 'org.gnome.Terminal.desktop', 'code.desktop']" + gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'firefox_firefox.desktop', 'org.gnome.Nautilus.desktop', 'snap-store_ubuntu-software.desktop', 'org.gnome.Terminal.desktop', 'code.desktop']" } # Reboot OS