From 125a117f93f19b0b357c7f820d475187ef7ee8d2 Mon Sep 17 00:00:00 2001 From: Christopher Dosin Date: Mon, 20 Sep 2021 22:48:47 +0300 Subject: [PATCH] Prepare 1.0.0 release --- CHANGELOG_de-DE.md | 4 +-- LICENSE.md | 2 +- composer.json | 68 ++++++++++++++++++++++++++++++---------------- 3 files changed, 47 insertions(+), 27 deletions(-) diff --git a/CHANGELOG_de-DE.md b/CHANGELOG_de-DE.md index d488d9a..2862b1d 100644 --- a/CHANGELOG_de-DE.md +++ b/CHANGELOG_de-DE.md @@ -1,7 +1,7 @@ # 1.0.0 - Erste Veröffentlichung - Variantenschalter auf der Produktliste anzeigen - Variantenschalter beim Hovern über eine Produkteigenschaft auf der Produktliste -- Variantenschalter auf dem Off-Canvas-Warenkorb anzeigen -- Variantenschalter auf der Warenkorbseite anzeigen +- Variantenschalter im Off-Canvas-Warenkorb anzeigen +- Variantenschalter auf der Warenkorbseite anzeigen - Variantenschalter auf der Bestätigungsseite der Kaufabwicklung anzeigen - Alle diese Optionen sind konfigurierbar diff --git a/LICENSE.md b/LICENSE.md index ec4f833..3feccbe 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # The MIT License (MIT) -Copyright (c) 2020 vienthuong +Copyright (c) 2021 Shape & Shift > Permission is hereby granted, free of charge, to any person obtaining a copy > of this software and associated documentation files (the "Software"), to deal diff --git a/composer.json b/composer.json index 41e3570..f45a90f 100644 --- a/composer.json +++ b/composer.json @@ -1,28 +1,48 @@ { - "name": "sas/variant-switch", - "description": "Variant switch", - "type": "shopware-platform-plugin", - "license": "MIT", - "autoload": { - "psr-4": { - "SasVariantSwitch\\": "src" - } - }, - "require": { - "shopware/core": "^6.3", - "shopware/storefront": "^6.3" - }, - "extra": { - "shopware-plugin-class": "SasVariantSwitch\\SasVariantSwitch", - "plugin-icon": "src/Resources/config/plugin.png", - "copyright": "(c) by Thuong Le", - "description": { - "de-DE": "Schnellwechsel der Produktvariante", - "en-GB": "Quick switch product's variant" + "name":"sas/variant-switch", + "description":"Show a variant switch within the listing and cart", + "type":"shopware-platform-plugin", + "license":"MIT", + "version":"1.0.0", + "keywords":[ + "variant", + "shopware" + ], + "authors":[ + { + "name":"Shape & Shift", + "role":"Manufacturer", + "homepage":"https://shapeandshift.dev" + } + ], + "autoload":{ + "psr-4":{ + "SasVariantSwitch\\":"src" + } + }, + "require":{ + "shopware/core":"^6.4", + "shopware/storefront":"^6.4" }, - "label": { - "de-DE": "Variant Schalter", - "en-GB": "Variant switch" + "extra":{ + "shopware-plugin-class":"SasVariantSwitch\\SasVariantSwitch", + "plugin-icon":"src/Resources/config/plugin.png", + "copyright":"(c) by Shape & Shift", + "description":{ + "de-DE":"Schnellwechsel der Produktvariante im Listing als auch im Warenkorb", + "en-GB":"Show a variant switch within the listing and cart" + }, + "label":{ + "de-DE":"Varianten switch im Listing", + "en-GB":"Variant switch within the Listing" + }, + "manufacturerLink":{ + "en-GB":"https://shapeandshift.dev", + "de-DE":"https://shapeandshift.dev" + }, + "supportLink":{ + "de-DE":"https://shapeandshift.dev", + "en-GB":"https://shapeandshift.dev" + } } - } }