Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.4.0 #922

Merged
merged 1 commit into from
Aug 6, 2024
Merged

4.4.0 #922

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _build/build.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ miniShop2.panel.Settings = function (config) {
}
}
},
items: [{
items: [
{
title: _('ms2_deliveries'),
layout: 'anchor',
id: 'deliveries',
Expand Down
22 changes: 22 additions & 0 deletions core/components/minishop2/docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
Loading