diff --git a/_build/build.config.php b/_build/build.config.php index 65fb5b041..4a7b7cc9c 100644 --- a/_build/build.config.php +++ b/_build/build.config.php @@ -4,7 +4,7 @@ const PKG_NAME = 'miniShop2'; define('PKG_NAME_LOWER', strtolower(PKG_NAME)); -const PKG_VERSION = '4.3.0'; +const PKG_VERSION = '4.4.0'; const PKG_RELEASE = 'pl'; const PKG_AUTO_INSTALL = true; diff --git a/assets/components/minishop2/js/mgr/settings/settings.panel.js b/assets/components/minishop2/js/mgr/settings/settings.panel.js index b0b41035d..d12170449 100644 --- a/assets/components/minishop2/js/mgr/settings/settings.panel.js +++ b/assets/components/minishop2/js/mgr/settings/settings.panel.js @@ -32,7 +32,8 @@ miniShop2.panel.Settings = function (config) { } } }, - items: [{ + items: [ + { title: _('ms2_deliveries'), layout: 'anchor', id: 'deliveries', diff --git a/core/components/minishop2/docs/changelog.txt b/core/components/minishop2/docs/changelog.txt index 08a10e923..35b2633eb 100644 --- a/core/components/minishop2/docs/changelog.txt +++ b/core/components/minishop2/docs/changelog.txt @@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file. 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). +## [4.4.0-pl] - 2024-08-06 + + ### Removed + - fotorama's config #893 + +### Added +- Managing the cost of delivery of a completed order #895 +- Ability to skip products when regenerating images #918 +- Missing rank equal to zero in msGetOrder snippet #904 +- new lexicons + + ### Fixed +- Fix for deleting options #912 +- change delimeter on delimiter in keys of parameters #902 +- Fix for options disappearing for products with multiple categories #913 +- Syntax error in chunk.ms_cart_new.tpl +- Fix for correction price processing when creating a shipping method #919 + + + ### Changed + - ReadMe (added link in post about testing PR) #888 + ## [4.3.0-pl] - 2022-07-01 ### Added diff --git a/core/components/minishop2/model/minishop2/minishop2.class.php b/core/components/minishop2/model/minishop2/minishop2.class.php index 15bb4defe..66c938b50 100644 --- a/core/components/minishop2/model/minishop2/minishop2.class.php +++ b/core/components/minishop2/model/minishop2/minishop2.class.php @@ -2,7 +2,7 @@ class miniShop2 { - public $version = '4.3.0-pl'; + public $version = '4.4.0-pl'; /** @var modX $modx */ public $modx; /** @var pdoFetch $pdoTools */