Skip to content

Commit

Permalink
bump to 1.2.0
Browse files Browse the repository at this point in the history
bump to 1.2.0
  • Loading branch information
marleenbarth authored Dec 5, 2023
2 parents ca328c1 + 26e4ed3 commit 75c478a
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 40 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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).

## [1.2.0] - 05.12.2023

### Added
* Slot finder element
* Webcam image upload element
* Language switch for websites with multiple languages
* Build config of templates designed for CX 23.2 and above

### Changed
* Fixed bug for website navigation with more than 1 level
* Updated dependencies

[1.2.0]: https://github.com/bsi-software/bsi-cx-design-master-template-web/releases/tag/1.2.0

## [1.1.8] - 22.09.2023

Expand Down
50 changes: 25 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsi-cx/design-master-template-web",
"version": "1.1.8",
"version": "1.2.0",
"description": "BSI CX master template for websites and landing pages",
"scripts": {
"build:dev": "webpack --config webpack.config.js --mode development --progress",
Expand Down Expand Up @@ -32,9 +32,9 @@
}
],
"dependencies": {
"@bsi-cx/design-standard-library-web": "^1.2.3"
"@bsi-cx/design-standard-library-web": "^1.3.0"
},
"devDependencies": {
"@bsi-cx/design-build": "^1.13.0"
"@bsi-cx/design-build": "^1.13.1"
}
}
2 changes: 2 additions & 0 deletions templates/landingpage/design.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ module.exports = cx.design
require('@bsi-cx/design-standard-library-web/content-elements/base/video'),
require('@bsi-cx/design-standard-library-web/content-elements/base/social-media-follow'),
require('@bsi-cx/design-standard-library-web/content-elements/base/social-media-share'),
require('@bsi-cx/design-standard-library-web/content-elements/advanced/webcam-image-upload'),
require('@bsi-cx/design-standard-library-web/content-elements/base/slot-finder'),
require('@bsi-cx/design-standard-library-web/content-elements/base/chart'),
require('@bsi-cx/design-standard-library-web/content-elements/base/html')),
cx.contentElementGroup
Expand Down
2 changes: 2 additions & 0 deletions templates/website/design.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ module.exports = cx.design
require('@bsi-cx/design-standard-library-web/content-elements/base/video'),
require('@bsi-cx/design-standard-library-web/content-elements/base/social-media-follow'),
require('@bsi-cx/design-standard-library-web/content-elements/base/social-media-share'),
require('@bsi-cx/design-standard-library-web/content-elements/advanced/webcam-image-upload'),
require('@bsi-cx/design-standard-library-web/content-elements/base/slot-finder'),
require('@bsi-cx/design-standard-library-web/content-elements/base/chart'),
require('@bsi-cx/design-standard-library-web/content-elements/base/html')),
cx.contentElementGroup
Expand Down
21 changes: 9 additions & 12 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const path = require('path');
var package = require('./package.json');
const package = require('./package.json');

const {BuildConfig, WebpackConfigBuilder, Version, DesignType, ModuleConfig} = require('@bsi-cx/design-build');

Expand Down Expand Up @@ -36,27 +36,24 @@ module.exports = WebpackConfigBuilder.fromConfigs(
.withName('master-template-cx-1.3-website-de')
.withTargetVersion(Version.CX_1_3)
.withPropertiesFilePath(path.resolve(__dirname, 'properties-de.js')),
/*websiteBuildConfig.clone()
.withName('master-template-cx-1.3-website-en')
.withTargetVersion(Version.CX_1_3)
.withPropertiesFilePath(path.resolve(__dirname, 'properties-en.js')),*/
websiteBuildConfig.clone()
.withName('master-template-cx-22.0-website-de')
.withPropertiesFilePath(path.resolve(__dirname, 'properties-de.js')),
/*websiteBuildConfig.clone()
.withName('master-template-cx-22.0-website-en')
.withPropertiesFilePath(path.resolve(__dirname, 'properties-en.js')),*/
websiteBuildConfig.clone()
.withName('master-template-cx-23.2-website-de')
.withTargetVersion(Version.CX_23_2)
.withPropertiesFilePath(path.resolve(__dirname, 'properties-de.js')),
landingpageBuildConfig.clone()
.withName('master-template-cx-1.3-landingpage-de')
.withTargetVersion(Version.CX_1_3)
.withPropertiesFilePath(path.resolve(__dirname, 'properties-de.js')),
/*landingpageBuildConfig.clone()
.withName('master-template-cx-1.3-landingpage-en')
.withTargetVersion(Version.CX_1_3)
.withPropertiesFilePath(path.resolve(__dirname, 'properties-en.js')),*/
landingpageBuildConfig.clone()
.withName('master-template-cx-22.0-landingpage-de')
.withPropertiesFilePath(path.resolve(__dirname, 'properties-de.js')),
landingpageBuildConfig.clone()
.withName('master-template-cx-23.2-landingpage-de')
.withTargetVersion(Version.CX_23_2)
.withPropertiesFilePath(path.resolve(__dirname, 'properties-de.js'))
/*landingpageBuildConfig.clone()
.withName('master-template-cx-22.0-landingpage-en')
.withPropertiesFilePath(path.resolve(__dirname, 'properties-en.js'))*/);

0 comments on commit 75c478a

Please sign in to comment.