diff --git a/CHANGELOG.md b/CHANGELOG.md index ed47fe185..d300d5e6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.0.2] - 03.07.2020 + +### Added +### Changed / Improved + +- Update sfui version to 0.7.11 +- Changed the banner links to correct path (#379) +- Improved the background of MegaMenu (#401) +- fix problem with changing product color - should be changed product image + fix close sidebar when push esc button + add cacheTags to pages + remove Home page mixin - (#410) + ## [1.0.1] - 2020.06.02 ### Added diff --git a/README.md b/README.md index df1c28594..bbf9f0c59 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ To be able to use new Capybara theme in your Vue Storefront installation, you ne 1. Configure `vsf-capybara` repository as a git submodule in theme path of your Vue Storefront workspace, and then track `master` branch: ``` - git submodule add -b master git@github.com:DivanteLtd/vsf-capybara.git src/themes/capybara + git submodule add -b master https://github.com/DivanteLtd/vsf-capybara.git src/themes/capybara ``` 1. Fetch all the data: diff --git a/components/molecules/m-login.vue b/components/molecules/m-login.vue index 1f6c8f126..a1d43c559 100644 --- a/components/molecules/m-login.vue +++ b/components/molecules/m-login.vue @@ -75,7 +75,7 @@ export default { }), switchElem (to) { this.$v.$reset(); - this.openModal({name: ModalList.Auth, payload: to}) + this.openModal({ name: ModalList.Auth, payload: to }) }, login () { this.$v.$touch(); @@ -103,7 +103,7 @@ export default { this.onFailure(result); } else { this.onSuccess(i18n.t('You are logged in!')); - this.closeModal({name: ModalList.Auth}); + this.closeModal({ name: ModalList.Auth }); } }) .catch(err => { diff --git a/components/molecules/m-menu.vue b/components/molecules/m-menu.vue index 8c260fcf4..10cb3f6b3 100644 --- a/components/molecules/m-menu.vue +++ b/components/molecules/m-menu.vue @@ -1,5 +1,5 @@