Skip to content

Commit fa84058

Browse files
committed
Corrected changelog and versioning
1 parent 6390f86 commit fa84058

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (flutterRoot == null) {
1313

1414
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
1515
if (flutterVersionCode == null) {
16-
flutterVersionCode = '367'
16+
flutterVersionCode = '368'
1717
}
1818

1919
def flutterVersionName = localProperties.getProperty('flutter.versionName')

ios/Runner.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@
536536
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
537537
CODE_SIGN_IDENTITY = "Apple Development";
538538
CODE_SIGN_STYLE = Automatic;
539-
CURRENT_PROJECT_VERSION = 367;
539+
CURRENT_PROJECT_VERSION = 368;
540540
DEVELOPMENT_ASSET_PATHS = "";
541541
DEVELOPMENT_TEAM = 53KVJRJS99;
542542
ENABLE_BITCODE = NO;
@@ -680,7 +680,7 @@
680680
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
681681
CODE_SIGN_IDENTITY = "Apple Development";
682682
CODE_SIGN_STYLE = Automatic;
683-
CURRENT_PROJECT_VERSION = 367;
683+
CURRENT_PROJECT_VERSION = 368;
684684
DEVELOPMENT_ASSET_PATHS = "";
685685
DEVELOPMENT_TEAM = 53KVJRJS99;
686686
ENABLE_BITCODE = NO;
@@ -718,7 +718,7 @@
718718
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
719719
CODE_SIGN_IDENTITY = "Apple Development";
720720
CODE_SIGN_STYLE = Automatic;
721-
CURRENT_PROJECT_VERSION = 367;
721+
CURRENT_PROJECT_VERSION = 368;
722722
DEVELOPMENT_ASSET_PATHS = "";
723723
DEVELOPMENT_TEAM = 53KVJRJS99;
724724
ENABLE_BITCODE = NO;

lib/main.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ import 'package:workmanager/workmanager.dart';
5555

5656
// TODO: CONFIGURE FOR APP RELEASE, include exceptions in Drawer if applicable
5757
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';
6060

6161
final FirebaseAnalytics analytics = FirebaseAnalytics.instance;
6262

lib/utils/changelog.dart

+5-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ChangeLogState extends State<ChangeLog> {
3939
void _createItems() {
4040
final itemList = <ChangeLogItem>[];
4141

42-
// Build 367 - 16/12/2023
42+
// Build 368 - 17/12/2023
4343

4444
// VERSION 3.2.3
4545
final v3_2_3 = ChangeLogItem();
@@ -49,12 +49,14 @@ class ChangeLogState extends State<ChangeLog> {
4949
const String feat3_2_3_2 = "Fixed browser download issues on iOS";
5050
const String feat3_2_3_3 = "Fixed audio channels mixing in Chain Watcher";
5151
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";
5354
v3_2_3.features.add(feat3_2_3_1);
5455
if (Platform.isIOS) v3_2_3.features.add(feat3_2_3_2);
5556
v3_2_3.features.add(feat3_2_3_3);
5657
v3_2_3.features.add(feat3_2_3_4);
5758
v3_2_3.features.add(feat3_2_3_5);
59+
v3_2_3.features.add(feat3_2_3_6);
5860

5961
// VERSION 3.2.2
6062
final v3_2_2 = ChangeLogItem();
@@ -1628,7 +1630,7 @@ class ChangeLogState extends State<ChangeLog> {
16281630
v1_3_0.features.add(feat1_3_0_4);
16291631

16301632
// NEED TO ADD HERE!
1631-
itemList.add(v3_2_2);
1633+
itemList.add(v3_2_3);
16321634
itemList.add(v3_2_2);
16331635
itemList.add(v3_2_1);
16341636
itemList.add(v3_2_0);

0 commit comments

Comments
 (0)