Skip to content

Commit

Permalink
feat: add test button and active field
Browse files Browse the repository at this point in the history
(cherry picked from commit ed38f07)
  • Loading branch information
tinect committed Jul 2, 2023
1 parent 910f6c9 commit 8ca3066
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG_en-GB.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased 2.x
# 2.1.0
* Adjust wordings and remove typos
* Add configuration within the plugin to activate its function explicit
* Add button to test the service with a sample image
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"thumbnail"
],
"description": "This plugins allows you to use variable thumbnails, without having them on storage.",
"version": "2.0.2",
"version": "2.1.0",
"type": "shopware-platform-plugin",
"license": "mit",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions src/Migration/Migration1686772873AddActiveConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public function update(Connection $connection): void
return;
}

// we added the active flag with version 2.0.2, so we don't need to set the default value afterward
if (\version_compare($currentPluginVersion, '2.0.2', '>')) {
// we added the active flag with version 2.1.0, so we don't need to set the default value afterward
if (\version_compare($currentPluginVersion, '2.1.0', '>')) {
return;
}

Expand Down

0 comments on commit 8ca3066

Please sign in to comment.