Skip to content

Commit 97c1f68

Browse files
authored
Merge pull request #18 from woosignal/master
v5.3.0 - Ability to update payment providers via WooSignal Dashboard,…
2 parents 1c2d9d4 + 883c3d6 commit 97c1f68

24 files changed

+127
-89
lines changed

LabelStoreMax/.env

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ASSET_PATH_IMAGES="public/assets/images"
1010
TIMEZONE="UTC"
1111
# *<! ------ Language ------!>*
1212

13-
DEFAULT_LOCALE="en"
13+
DEFAULT_LOCALE=null
1414
# supports: "en" (English), "es" (Spanish), "fr" (French), "hi" (Hindi), "it" (Italian), "pt" (Portuguese) or "zh" (Simplified Chinese)
1515

1616
# *<! ------ WooSignal Config ------!>*
@@ -23,19 +23,19 @@ APP_KEY="your app key"
2323
STRIPE_ACCOUNT=null
2424
# Stripe account key from WooSignal https://woosignal.com/dashboard
2525

26-
STRIPE_COUNTRY_CODE="GB"
26+
STRIPE_COUNTRY_CODE=null
2727
# Alpha-2 country code list: https://www.iban.com/country-codes
2828

2929
STRIPE_LIVE_MODE=null
3030
# Change to 'true' for live payments and update the "Environment for Stripe" here https://woosignal.com/dashboard
3131

3232
# *<! ------ PAYPAL (OPTIONAL) ------!>*
3333

34-
PAYPAL_ACCOUNT_EMAIL="mystore@business.com"
34+
PAYPAL_ACCOUNT_EMAIL=null
3535
# Your PayPal account email e.g. mystore@business.com
36-
PAYPAL_LIVE_MODE="false"
36+
PAYPAL_LIVE_MODE=null
3737
# Change to 'true' for live payments
38-
PAYPAL_LOCALE="en-GB"
38+
PAYPAL_LOCALE=null
3939
# Use BCP-47 code from this link https://developer.paypal.com/docs/api/reference/locale-codes/
4040

4141
# *<! ------ EXTRAS ------!>*

LabelStoreMax/CHANGELOG.md

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
## [5.2.1] - 2020-10-13
1+
## [5.3.0] - 2021-11-02
2+
3+
* Ability to update payment providers via WooSignal Dashboard
4+
* Pubspec.yaml dependency updates
5+
6+
## [5.2.1] - 2021-10-13
27

38
* Bug fixes
49

5-
## [5.2.0] - 2020-10-12
10+
## [5.2.0] - 2021-10-12
611

712
* Migrate to Nylo 2.1.0
813
* Use flutter_stripe library for payments
@@ -11,47 +16,47 @@
1116
* Android compileSdkVersion 30
1217
* Bug fixes
1318

14-
## [5.1.0] - 2020-07-19
19+
## [5.1.0] - 2021-07-19
1520

1621
* Add support for simplified Chinese locale (zh)
1722
* Add ability to change language from WooSignal dashboard
1823

19-
## [5.0.7] - 2020-07-08
24+
## [5.0.7] - 2021-07-08
2025

2126
* Pubspec.yaml dependency updates
2227

23-
## [5.0.6] - 2020-07-08
28+
## [5.0.6] - 2021-07-08
2429

2530
* Refactor project to use Nylo v1.0.0
2631
* Pubspec.yaml dependency updates
2732

28-
## [5.0.5] - 2020-05-03
33+
## [5.0.5] - 2021-05-03
2934

3035
* Add NSCameraUsageDescription meta to plist for IOS
3136

32-
## [5.0.4] - 2020-04-30
37+
## [5.0.4] - 2021-04-30
3338

3439
* Fix IOS build failing with Stripe
3540
* Pubspec.yaml dependency updates
3641

37-
## [5.0.3] - 2020-04-27
42+
## [5.0.3] - 2021-04-27
3843

3944
* Fix issue account page when logged in for Notic theme
4045
* Small tweak to helpers.dart
4146
* Pubspec.yaml dependency updates
4247

43-
## [5.0.2] - 2020-04-17
48+
## [5.0.2] - 2021-04-17
4449

4550
* Fix issue with PayPal checkout when using different locales
4651
* Fix nested `trans` methods
4752
* PAYPAL_LOCALE added to .env file
4853

49-
## [5.0.1] - 2020-04-13
54+
## [5.0.1] - 2021-04-13
5055

5156
* Update to app_payment_gateways
5257
* Pubspec.yaml dependency updates
5358

54-
## [5.0.0] - 2020-04-11
59+
## [5.0.0] - 2021-04-11
5560

5661
* Major release
5762
* Null safety libraries added
@@ -62,7 +67,7 @@
6267
* Pubspec.yaml dependency updates
6368
* Bug fixes
6469

65-
## [4.0.0] - 2020-03-28
70+
## [4.0.0] - 2021-03-28
6671

6772
* Major release
6873
* New config structure
@@ -74,22 +79,22 @@
7479
* Dart code formatted
7580
* Pubspec.yaml dependency updates
7681

77-
## [3.0.0] - 2020-03-08
82+
## [3.0.0] - 2021-03-08
7883

7984
* Major release
8085
* Flutter 2.0.0+ support
8186
* Manage app from WooSignal
8287
* Code tidy up
8388
* Bug fixes
8489

85-
## [2.6.0] - 2020-02-24
90+
## [2.6.0] - 2021-02-24
8691

8792
* Ability to manage affiliate products
8893
* Refreshed design for checkout details screen
8994
* New logic to manage shipping better
9095
* Bug fixes
9196

92-
## [2.5.1] - 2020-02-21
97+
## [2.5.1] - 2021-02-21
9398

9499
* Pubspec.yaml dependency updates
95100
* Bug fixes

LabelStoreMax/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# WooCommerce App: Label StoreMax
66

7-
### Label StoreMax - v5.2.1
7+
### Label StoreMax - v5.3.0
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)
@@ -35,7 +35,7 @@ You can also upload the app to the IOS app store and Google play store using Flu
3535
2. Sign up for free on [WooSignal](https://woosignal.com) and link your WooCommerce store
3636
3. Add your app key into the **.env** file and hit play (with Android Studio) to build the app 🥳
3737

38-
Full documentation this available [here](https://woosignal.com/docs/app/ios/label-storemax)
38+
Full documentation this available [here](https://woosignal.com/docs/app/label-storemax)
3939

4040
## Some features integrated
4141

LabelStoreMax/lang/de.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "Die Zahlung wurde storniert",
186186
"Must have": "Haben müssen",
187187
"Our selection of new items": "Unsere Auswahl an Neuheiten",
188-
"Register": "Registrieren"
188+
"Register": "Registrieren",
189+
"No payment methods are available": "Es sind keine Zahlungsmethoden verfügbar"
189190
}

LabelStoreMax/lang/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "The payment has been cancelled",
186186
"Must have": "Must have",
187187
"Our selection of new items": "Our selection of new items",
188-
"Register": "Register"
188+
"Register": "Register",
189+
"No payment methods are available": "No payment methods are available"
189190
}

LabelStoreMax/lang/es.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "El pago ha sido cancelado",
186186
"Must have": "Debe tener",
187187
"Our selection of new items": "Nuestra selección de novedades",
188-
"Register": "Registrarse"
188+
"Register": "Registrarse",
189+
"No payment methods are available": "No hay métodos de pago disponibles."
189190
}

LabelStoreMax/lang/fr.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "Le paiement a été annulé",
186186
"Must have": "Doit avoir",
187187
"Our selection of new items": "Notre sélection de nouveautés",
188-
"Register": "S'inscrire"
188+
"Register": "S'inscrire",
189+
"No payment methods are available": "Aucun mode de paiement n'est disponible"
189190
}

LabelStoreMax/lang/hi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "bhugataan radd kar diya gaya hai",
186186
"Must have": "hona aavashyak hai",
187187
"Our selection of new items": "naee vastuon ka hamaara chayan",
188-
"Register": "rajistar karen"
188+
"Register": "rajistar karen",
189+
"No payment methods are available": "koee bhugataan vidhiyaan upalabdh nahin hain"
189190
}

LabelStoreMax/lang/it.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "Il pagamento è stato annullato",
186186
"Must have": "Deve avere",
187187
"Our selection of new items": "La nostra selezione di nuovi articoli",
188-
"Register": "Registrati"
188+
"Register": "Registrati",
189+
"No payment methods are available": "Non sono disponibili metodi di pagamento"
189190
}

LabelStoreMax/lang/pt.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@
185185
"The payment has been cancelled": "O pagamento foi cancelado",
186186
"Must have": "Deve ter",
187187
"Our selection of new items": "Nossa seleção de novos itens",
188-
"Register": "Registro"
188+
"Register": "Registro",
189+
"No payment methods are available": "Nenhum método de pagamento disponível"
189190
}

0 commit comments

Comments
 (0)