diff --git a/CHANGELOG.md b/CHANGELOG.md index b835d6c..c571838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ All notable changes to this project will be documented in this file. --- ## Latest Release +### 1.4.2 +- fix line-break in menu selection for build and watch tasks + ### 1.4.1 - add Support for $DDEV_COMPOSER_ROOT `(e.g., ./magento2/app/design/..)`` - fix node-modules repair-functions for corrupt grunt installations diff --git a/README.md b/README.md index ae25397..9123c07 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Submit your [Feature Request](https://github.com/dermatz/ddev-woodoo-buildtools- **1 . Get the latest Version with following command in your ddev project root** ##### Latest stable version (recommended) ```shell -ddev get https://github.com/dermatz/ddev-woodoo-buildtools-magento/archive/refs/tags/1.4.1.tar.gz +ddev get https://github.com/dermatz/ddev-woodoo-buildtools-magento/archive/refs/tags/1.4.2.tar.gz ``` ##### Latest Developer-version (Main-Branch) - can be instable! ```shell diff --git a/commands/web/woodoo_components/build b/commands/web/woodoo_components/build index a641fb8..f4cdced 100644 --- a/commands/web/woodoo_components/build +++ b/commands/web/woodoo_components/build @@ -129,7 +129,7 @@ if [[ "$1" == "build" && "$2" == "" || "$1" == "b" && "$2" == "" || "$1" == "bui # if more then one theme is available, ask if all themes should be build if [[ $(countThemesinConfig) -gt 1 && $2 != '-f' ]]; then - THEMES_TO_BUILD=$(gum choose --cursor-prefix "[ ] " --unselected-prefix "[ ] " --selected-prefix "[✓] " --no-limit "$THEMES_IN_CONFIG";) + THEMES_TO_BUILD=$(gum choose --cursor-prefix "[ ] " --unselected-prefix "[ ] " --selected-prefix "[✓] " --no-limit $THEMES_IN_CONFIG;) else THEMES_TO_BUILD=$THEMES_IN_CONFIG fi diff --git a/commands/web/woodoo_components/variables b/commands/web/woodoo_components/variables index 7e55be5..5528d6f 100644 --- a/commands/web/woodoo_components/variables +++ b/commands/web/woodoo_components/variables @@ -1,6 +1,6 @@ #!/bin/bash #ddev-generated - Do not modify this file; your modifications will be overwritten. -WOODOO_VERSION="1.4.1" +WOODOO_VERSION="1.4.2" LATEST_WOODOO_VERSION=$(curl -s https://api.github.com/repos/dermatz/ddev-woodoo-buildtools-magento/releases/latest | grep tag_name | cut -d '"' -f 4) PROJECT_CONFIG_FILE=".ddev/config-themes.yaml" diff --git a/commands/web/woodoo_components/watch b/commands/web/woodoo_components/watch index 6ad9e35..0813ef5 100644 --- a/commands/web/woodoo_components/watch +++ b/commands/web/woodoo_components/watch @@ -117,7 +117,7 @@ if [[ "$1" == "watch" && "$2" == "" || "$1" == "w" && "$2" == "" ]]; then # if more then one theme is available, ask if all themes should be build if [[ $(countThemesinConfig) -gt 1 && $2 != '-f' ]]; then - THEMES_TO_WATCH=$(gum choose --cursor-prefix "[ ] " --unselected-prefix "[ ] " --selected-prefix "[✓] " "$THEMES_IN_CONFIG";) + THEMES_TO_WATCH=$(gum choose --cursor-prefix "[ ] " --unselected-prefix "[ ] " --selected-prefix "[✓] " $THEMES_IN_CONFIG;) else THEMES_TO_WATCH=$THEMES_IN_CONFIG fi