Skip to content

Commit 55d2272

Browse files
authored
Merge pull request #16 from woosignal/master
v5.2.0
2 parents 014edb1 + b847fbc commit 55d2272

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+918
-845
lines changed

LabelStoreMax/.env

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,12 @@ APP_KEY="your app key"
2323
STRIPE_ACCOUNT="Stripe account key from WooSignal"
2424
# Stripe account key from WooSignal https://woosignal.com/dashboard
2525

26+
STRIPE_COUNTRY_CODE="GB"
27+
# Alpha-2 country code list: https://www.iban.com/country-codes
28+
2629
STRIPE_LIVE_MODE=null
2730
# Change to 'true' for live payments and update the "Environment for Stripe" here https://woosignal.com/dashboard
2831

29-
# *<! ------ RAYZORPAY (OPTIONAL) ------!>*
30-
31-
RAZORPAY_ID=""
32-
# Razorpay ID from https://razorpay.com
33-
3432
# *<! ------ PAYPAL (OPTIONAL) ------!>*
3533

3634
PAYPAL_ACCOUNT_EMAIL="mystore@business.com"

LabelStoreMax/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [5.2.0] - 2020-10-12
2+
3+
* Migrate to Nylo 2.1.0
4+
* Use flutter_stripe library for payments
5+
* Remove RazorPay for build fails
6+
* Pubspec.yaml dependency updates
7+
* Android compileSdkVersion 30
8+
* Bug fixes
9+
110
## [5.1.0] - 2020-07-19
211

312
* Add support for simplified Chinese locale (zh)

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.1.0
7+
### Label StoreMax - v5.2.0
88

99

1010
[Official WooSignal WooCommerce App](https://woosignal.com)
@@ -44,7 +44,7 @@ Full documentation this available [here](https://woosignal.com/docs/app/ios/labe
4444
- Browse products, make orders, customer login (via WordPress)
4545
- Change app name, logo, customize default language, currency + more
4646
- Light and dark mode
47-
- Stripe, Cash On Delivery, RazorPay, PayPal
47+
- Stripe, Cash On Delivery, PayPal
4848
- Localized for en, es, pt, it, hi, fr, zh
4949
- Orders show as normal in WooCommerce
5050

LabelStoreMax/android/app/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 28
29+
packagingOptions {
30+
exclude 'META-INF/DEPENDENCIES'
31+
}
32+
33+
compileSdkVersion 30
3034

3135
sourceSets {
3236
main.java.srcDirs += 'src/main/kotlin'
@@ -39,8 +43,8 @@ android {
3943
defaultConfig {
4044
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4145
applicationId "com.woosignal.android"
42-
minSdkVersion 19
43-
targetSdkVersion 29
46+
minSdkVersion 21
47+
targetSdkVersion 30
4448
versionCode flutterVersionCode.toInteger()
4549
versionName flutterVersionName
4650
multiDexEnabled true
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.woosignal.android
22

33
import io.flutter.embedding.android.FlutterActivity
4+
import io.flutter.embedding.android.FlutterFragmentActivity
45

5-
class MainActivity: FlutterActivity() {
6+
class MainActivity: FlutterFragmentActivity() {
67
}

LabelStoreMax/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.50'
2+
ext.kotlin_version = '1.5.0'
33
repositories {
44
google()
55
jcenter()
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.5.0'
9+
classpath 'com.android.tools.build:gradle:4.1.2'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}

LabelStoreMax/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip

LabelStoreMax/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>8.0</string>
24+
<string>9.0</string>
2525
</dict>
2626
</plist>

LabelStoreMax/ios/Runner/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>$(FLUTTER_BUILD_NAME)</string>
1919
<key>NSCameraUsageDescription</key>
20-
<string>$(PRODUCT_NAME) photo use</string>
20+
<string>You can take photos of your payment details.</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>MinimumOSVersion</key>

LabelStoreMax/lang/de.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,6 @@
184184
"Payment Cancelled": "Zahlung storniert",
185185
"The payment has been cancelled": "Die Zahlung wurde storniert",
186186
"Must have": "Haben müssen",
187-
"Our selection of new items": "Unsere Auswahl an Neuheiten"
187+
"Our selection of new items": "Unsere Auswahl an Neuheiten",
188+
"Register": "Registrieren"
188189
}

0 commit comments

Comments
 (0)