Releases: shopperlabs/shopper
Releases · shopperlabs/shopper
v1.0
What's Changed
- Patch fix errors by @mckenziearts in #94
- update notification message when remove product by @mckenziearts in #95
- Update initialization process by @mckenziearts in #96
- Products stock management by @mckenziearts in #97
- Laravel9 support by @mckenziearts in #98
- update button name on browse component by @mckenziearts in #99
- Improve app performance by @mckenziearts in #100
- Add settings layout config by @mckenziearts in #102
- Turkish translation completed by @ozkanozcan in #103
- Add french translations by @mckenziearts in #106
- 🐛 fix bug during add attribute on product by @mckenziearts in #107
- 🚧 add wip on related products feature by @mckenziearts in #108
- Add modal discounts by @mckenziearts in #115
- 💄 Update ui interfaces by @mckenziearts in #116
New Contributors
- @ozkanozcan made their first contribution in #103
Full Changelog: v0.0.26...v1.0
v0.0.26
v0.0.25
What's Changed
- 🐛 fix bug when update attribute type color picker by @mckenziearts in #90
Full Changelog: v0.0.24...v0.0.25
v0.0.24
- Improve Livewire performance
v0.0.23
v0.0.22
v0.0.21
What's Changed
- Update category relations by @mckenziearts in #88
Fixed
Alpinejs error when map is not set
Full Changelog: v0.0.20...v0.0.21
v0.0.20
What's Changed
- Fix bug on shop configuration with error
View [layouts.favicons] not found
- Improve countries and currencies queries by using Cache
What's New
- Add map (Mapbox) on setup shop
Full Changelog: v0.0.19...v0.0.20
v0.0.19
What's Changed
- fix bug during installation (#85) by @mckenziearts in #86
Full Changelog: v0.0.18...v0.0.19
v0.0.18
To upgrade to this release update manually your composer.json with shopper/framework to ^0.0.18
"require": {
....
"shopper/framework": "^0.0.18",
}
Remember this is an pre-release, so some things might be broken. I have probably deleted some classes or Traits that you are using. If you have any concerns let me know.
What's Changed
Some errors appeared on the last release while compiling the Tailwind configuration. To fix this you have to make these changes
// tailwind.config.js
module.exports = {
...
presets: [
...
+ require('./vendor/ph7jack/wireui/tailwind.config'),
require('./vendor/shopper/framework/tailwind.config'),
],
purge: [
...
'./vendor/shopper/framework/resources/**/*.blade.php',
+ './vendor/wire-elements/modal/resources/views/*.blade.php',
+ './vendor/rappasoft/laravel-livewire-tables/resources/views/tailwind/**/*.blade.php',
+ './vendor/ph7jack/wireui/resources/**/*.blade.php',
+ './vendor/ph7jack/wireui/ts/**/*.ts',
+ './vendor/ph7jack/wireui/src/View/**/*.php'
],
...
}
This should fix your asset compilation issue.
Full Changelog: v0.0.17...v0.0.18