Commit fa84058 1 parent 6390f86 commit fa84058 Copy full SHA for fa84058
File tree 4 files changed +11
-9
lines changed
4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if (flutterRoot == null) {
13
13
14
14
def flutterVersionCode = localProperties. getProperty(' flutter.versionCode' )
15
15
if (flutterVersionCode == null ) {
16
- flutterVersionCode = ' 367 '
16
+ flutterVersionCode = ' 368 '
17
17
}
18
18
19
19
def flutterVersionName = localProperties. getProperty(' flutter.versionName' )
Original file line number Diff line number Diff line change 536
536
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
537
537
CODE_SIGN_IDENTITY = "Apple Development";
538
538
CODE_SIGN_STYLE = Automatic;
539
- CURRENT_PROJECT_VERSION = 367 ;
539
+ CURRENT_PROJECT_VERSION = 368 ;
540
540
DEVELOPMENT_ASSET_PATHS = "";
541
541
DEVELOPMENT_TEAM = 53KVJRJS99;
542
542
ENABLE_BITCODE = NO;
680
680
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
681
681
CODE_SIGN_IDENTITY = "Apple Development";
682
682
CODE_SIGN_STYLE = Automatic;
683
- CURRENT_PROJECT_VERSION = 367 ;
683
+ CURRENT_PROJECT_VERSION = 368 ;
684
684
DEVELOPMENT_ASSET_PATHS = "";
685
685
DEVELOPMENT_TEAM = 53KVJRJS99;
686
686
ENABLE_BITCODE = NO;
718
718
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
719
719
CODE_SIGN_IDENTITY = "Apple Development";
720
720
CODE_SIGN_STYLE = Automatic;
721
- CURRENT_PROJECT_VERSION = 367 ;
721
+ CURRENT_PROJECT_VERSION = 368 ;
722
722
DEVELOPMENT_ASSET_PATHS = "";
723
723
DEVELOPMENT_TEAM = 53KVJRJS99;
724
724
ENABLE_BITCODE = NO;
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ import 'package:workmanager/workmanager.dart';
55
55
56
56
// TODO: CONFIGURE FOR APP RELEASE, include exceptions in Drawer if applicable
57
57
const String appVersion = '3.2.3' ;
58
- const String androidCompilation = '367 ' ;
59
- const String iosCompilation = '367 ' ;
58
+ const String androidCompilation = '368 ' ;
59
+ const String iosCompilation = '368 ' ;
60
60
61
61
final FirebaseAnalytics analytics = FirebaseAnalytics .instance;
62
62
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class ChangeLogState extends State<ChangeLog> {
39
39
void _createItems () {
40
40
final itemList = < ChangeLogItem > [];
41
41
42
- // Build 367 - 16 /12/2023
42
+ // Build 368 - 17 /12/2023
43
43
44
44
// VERSION 3.2.3
45
45
final v3_2_3 = ChangeLogItem ();
@@ -49,12 +49,14 @@ class ChangeLogState extends State<ChangeLog> {
49
49
const String feat3_2_3_2 = "Fixed browser download issues on iOS" ;
50
50
const String feat3_2_3_3 = "Fixed audio channels mixing in Chain Watcher" ;
51
51
const String feat3_2_3_4 = "Fixed timezone references" ;
52
- const String feat3_2_3_5 = "Fixed random logouts" ;
52
+ const String feat3_2_3_5 = "Fixed issues with API model" ;
53
+ const String feat3_2_3_6 = "Fixed random logouts" ;
53
54
v3_2_3.features.add (feat3_2_3_1);
54
55
if (Platform .isIOS) v3_2_3.features.add (feat3_2_3_2);
55
56
v3_2_3.features.add (feat3_2_3_3);
56
57
v3_2_3.features.add (feat3_2_3_4);
57
58
v3_2_3.features.add (feat3_2_3_5);
59
+ v3_2_3.features.add (feat3_2_3_6);
58
60
59
61
// VERSION 3.2.2
60
62
final v3_2_2 = ChangeLogItem ();
@@ -1628,7 +1630,7 @@ class ChangeLogState extends State<ChangeLog> {
1628
1630
v1_3_0.features.add (feat1_3_0_4);
1629
1631
1630
1632
// NEED TO ADD HERE!
1631
- itemList.add (v3_2_2 );
1633
+ itemList.add (v3_2_3 );
1632
1634
itemList.add (v3_2_2);
1633
1635
itemList.add (v3_2_1);
1634
1636
itemList.add (v3_2_0);
You can’t perform that action at this time.
0 commit comments