Skip to content

Commit f0bd290

Browse files
committed
version v2.2.1 - version bump for plugins & minimum deployment ios13
1 parent 3b03a59 commit f0bd290

File tree

16 files changed

+172
-94
lines changed

16 files changed

+172
-94
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b98ea22bbb9eb082f24a2f56c80c348a
1+
bc983e13b3efb48b50e7a3cb8fc4ede2

LabelStoreMax/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>CFBundleDevelopmentRegion</key>
6-
<string>$(DEVELOPMENT_LANGUAGE)</string>
7-
<key>CFBundleExecutable</key>
8-
<string>App</string>
9-
<key>CFBundleIdentifier</key>
10-
<string>io.flutter.flutter.app</string>
11-
<key>CFBundleInfoDictionaryVersion</key>
12-
<string>6.0</string>
13-
<key>CFBundleName</key>
14-
<string>App</string>
15-
<key>CFBundlePackageType</key>
16-
<string>FMWK</string>
17-
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
19-
<key>CFBundleSignature</key>
20-
<string>????</string>
21-
<key>CFBundleVersion</key>
22-
<string>1.0</string>
23-
<key>MinimumOSVersion</key>
24-
<string>8.0</string>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>App</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>io.flutter.flutter.app</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>App</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>1.0</string>
23+
<key>MinimumOSVersion</key>
24+
<string>13.00</string>
2525
</dict>
2626
</plist>

LabelStoreMax/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
379379
GCC_WARN_UNUSED_FUNCTION = YES;
380380
GCC_WARN_UNUSED_VARIABLE = YES;
381-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
381+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
382382
MTL_ENABLE_DEBUG_INFO = NO;
383383
SDKROOT = iphoneos;
384384
TARGETED_DEVICE_FAMILY = "1,2";
@@ -462,7 +462,7 @@
462462
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
463463
GCC_WARN_UNUSED_FUNCTION = YES;
464464
GCC_WARN_UNUSED_VARIABLE = YES;
465-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
465+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
466466
MTL_ENABLE_DEBUG_INFO = YES;
467467
ONLY_ACTIVE_ARCH = YES;
468468
SDKROOT = iphoneos;
@@ -511,7 +511,7 @@
511511
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
512512
GCC_WARN_UNUSED_FUNCTION = YES;
513513
GCC_WARN_UNUSED_VARIABLE = YES;
514-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
514+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
515515
MTL_ENABLE_DEBUG_INFO = NO;
516516
SDKROOT = iphoneos;
517517
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";

LabelStoreMax/ios/Runner/Info.plist

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<string>$(FLUTTER_BUILD_NAME)</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
21+
<key>MinimumOSVersion</key>
22+
<string>13.0</string>
2123
<key>CFBundleURLTypes</key>
2224
<array>
2325
<dict>
@@ -58,4 +60,4 @@
5860
<key>UIViewControllerBasedStatusBarAppearance</key>
5961
<false/>
6062
</dict>
61-
</plist>
63+
</plist>

LabelStoreMax/lib/helpers/app_themes.dart

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import 'package:flutter/material.dart';
1212
import 'package:hexcolor/hexcolor.dart';
1313
import 'package:label_storemax/widgets/woosignal_ui.dart';
14-
import 'package:label_storemax/helpers/tools.dart';
1514

1615
TextTheme textThemeAccent() {
1716
return TextTheme(
@@ -42,16 +41,16 @@ TextTheme textThemeAccent() {
4241
fontFamily: appFontFamily,
4342
fontWeight: FontWeight.w800),
4443
bodyText1: new TextStyle(
45-
color: Hexcolor("#606060"),
44+
color: HexColor("#606060"),
4645
fontFamily: appFontFamily,
4746
fontWeight: FontWeight.w700),
4847
bodyText2: new TextStyle(
49-
color: Hexcolor("#a8a8a8"),
48+
color: HexColor("#a8a8a8"),
5049
fontFamily: appFontFamily,
5150
fontWeight: FontWeight.w700,
5251
fontSize: 18),
5352
caption: new TextStyle(
54-
color: Hexcolor("#2a5080"),
53+
color: HexColor("#2a5080"),
5554
fontFamily: appFontFamily,
5655
fontWeight: FontWeight.w700,
5756
fontSize: 14),
@@ -91,16 +90,16 @@ TextTheme textThemePrimary() {
9190
fontFamily: appFontFamily,
9291
fontWeight: FontWeight.w800),
9392
bodyText1: new TextStyle(
94-
color: Hexcolor("#606060"),
93+
color: HexColor("#606060"),
9594
fontFamily: appFontFamily,
9695
fontWeight: FontWeight.w700),
9796
bodyText2: new TextStyle(
98-
color: Hexcolor("#a8a8a8"),
97+
color: HexColor("#a8a8a8"),
9998
fontFamily: appFontFamily,
10099
fontWeight: FontWeight.w700,
101100
fontSize: 18),
102101
caption: new TextStyle(
103-
color: Hexcolor("#2a5080"),
102+
color: HexColor("#2a5080"),
104103
fontFamily: appFontFamily,
105104
fontWeight: FontWeight.w700,
106105
fontSize: 14),

LabelStoreMax/lib/labelconfig.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import 'dart:ui';
1616
Developer Notes
1717
1818
SUPPORT EMAIL - support@woosignal.com
19-
VERSION - 2.2.0
19+
VERSION - 2.2.1
2020
https://woosignal.com
2121
*/
2222

LabelStoreMax/lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,11 @@ void main() async {
217217
return locale;
218218
},
219219
theme: ThemeData(
220-
primaryColor: Hexcolor("#2f4ffe"),
220+
primaryColor: HexColor("#2f4ffe"),
221221
backgroundColor: Colors.white,
222222
buttonTheme: ButtonThemeData(
223223
hoverColor: Colors.transparent,
224-
buttonColor: Hexcolor("#529cda"),
224+
buttonColor: HexColor("#529cda"),
225225
colorScheme: colorSchemeButton(),
226226
minWidth: double.infinity,
227227
height: 70,

LabelStoreMax/lib/pages/account_billing_details.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class _AccountBillingDetailsPageState extends State<AccountBillingDetailsPage> {
181181
borderRadius: BorderRadius.circular(10),
182182
boxShadow: [
183183
BoxShadow(
184-
color: Hexcolor("#e8e8e8"),
184+
color: HexColor("#e8e8e8"),
185185
blurRadius: 15.0,
186186
spreadRadius: 0,
187187
offset: Offset(

LabelStoreMax/lib/pages/account_detail.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class _AccountDetailPageState extends State<AccountDetailPage>
345345
decoration: BoxDecoration(
346346
border: Border(
347347
bottom: BorderSide(
348-
color: Hexcolor("#fcfcfc"),
348+
color: HexColor("#fcfcfc"),
349349
width: 1,
350350
),
351351
),

LabelStoreMax/lib/pages/account_order_detail.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class _AccountOrderDetailPageState extends State<AccountOrderDetailPage> {
120120
decoration: BoxDecoration(
121121
border: Border(
122122
bottom: BorderSide(
123-
color: Hexcolor("#fcfcfc"), width: 1),
123+
color: HexColor("#fcfcfc"), width: 1),
124124
),
125125
),
126126
child: Row(

0 commit comments

Comments
 (0)