Skip to content

Commit

Permalink
Version pump 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dermatz committed Jun 13, 2023
1 parent 89ab3a8 commit 87cbdab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
All notable changes to this project will be documented in this file.
---
### Upcoming Changes for 1.4.0
##### This section will be updated after commits or Pull-Request merges

- add new __host__ command `ddev frontend-update` to update to the latest release
##### This section will be updated after commits or Pull-Request merges
---
## Latest Release

### 1.3.1
- add new __host__ command `ddev frontend-update` to update to the latest release
- update readme
- update help
### 1.3.0
#### New Features (Hyvä 1.1.x Support)
- Hyvä 1.1.x Support for Build-process: `build` check if hyvä themeversion is > 1.1.x to change build command automaticly (https://github.com/dermatz/ddev-woodoo-buildtools-magento/issues/11 by [@therouv](https://github.com/therouv))
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
<img src="https://img.shields.io/github/license/dermatz/ddev-woodoo-buildtools-magento">
<img src="https://img.shields.io/github/last-commit/dermatz/ddev-woodoo-buildtools-magento">



---
This ddev add-on helps you to manage your theme build processes in Magento total easy. You can run a build command to build all your themes or a specific theme. Don't matter if the theme is a Magento Standard or Custom Theme, or maybe a Hyva theme. It automatically takes care which type of theme you use and will build it for you. If a dependency is missing, Woodoo will install it.

Expand Down Expand Up @@ -41,7 +39,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.3.0.tar.gz
ddev get https://github.com/dermatz/ddev-woodoo-buildtools-magento/archive/refs/tags/1.3.1.tar.gz
```
##### Latest Developer-version (Main-Branch) - can be instable!
```shell
Expand Down Expand Up @@ -73,6 +71,7 @@ Command:
init Initial Woodoo Setup to read all themes from dataabase and write to .ddev/config.yaml
help Show a help page
check, selftest Woodoo Self Test
frontend-update Update to the latest Version
themes List all available themes that are configured in .ddev/config.yaml
themes List all available themes that are configured in .ddev/config.yaml
build Build all themes that are configured in .ddev/config.yaml
Expand Down
3 changes: 3 additions & 0 deletions commands/web/woodoo_components/help
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ if [[ "$1" == "help" || "$1" == "-help" || "$1" == "--help" || "$1" == "--h" ||

echo -e "${txtgrn}\nUsage: ${txtrst}ddev frontend [${txtcyn}command${txtrst}] [${txtylw}option${txtrst} or ${txtpur}theme${txtrst}]\n"


echo -e "${txtcyn}Command:${txtrst}"
echo -e " ${bldcyn}init, install${txtrst} Initial Woodoo Setup to read all themes from dataabase and write to .ddev/config.yaml"
echo -e " ${txtcyn}help${txtrst} Displays this help page"
echo -e " ${txtcyn}check, selftest${txtrst} Frontend Self-Test"
echo -e " ${txtcyn}frontend-update${txtrst} Update to the latest Version"
echo -e " ${txtcyn}themes${txtrst} List all available themes that are configured in ${txtcyn}.ddev/config.yaml${txtrst}"
echo -e " ${txtcyn}build${txtrst} Builds all themes that are configured in ${txtcyn}.ddev/config.yaml${txtrst}"
echo -e " ${txtcyn}build ${txtylw}-f${txtrst} Builds all themes without yes/no question"
Expand All @@ -19,6 +21,7 @@ if [[ "$1" == "help" || "$1" == "-help" || "$1" == "--help" || "$1" == "--h" ||
echo -e "${txtylw}\nOption:${txtrst}"
echo -e " ${txtylw}-f${txtrst} Force the build command to run without yes/no question"
echo -e ""

if [ -n "$THEMES_IN_CONFIG" ]; then
for THEME_CODE in $THEMES_IN_CONFIG; do
echo -e " ${txtylw}$THEME_CODE${txtrst}${txtrst}"
Expand Down
2 changes: 1 addition & 1 deletion commands/web/woodoo_components/variables
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#ddev-generated - Do not modify this file; your modifications will be overwritten.
WOODOO_VERSION="1.3.0"
WOODOO_VERSION="1.3.1"
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.yaml"
Expand Down

0 comments on commit 87cbdab

Please sign in to comment.