Skip to content

Commit

Permalink
Corrected changelog and versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuito83 committed Dec 18, 2023
1 parent 6390f86 commit fa84058
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (flutterRoot == null) {

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '367'
flutterVersionCode = '368'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
Expand Down
6 changes: 3 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 367;
CURRENT_PROJECT_VERSION = 368;
DEVELOPMENT_ASSET_PATHS = "";
DEVELOPMENT_TEAM = 53KVJRJS99;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -680,7 +680,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 367;
CURRENT_PROJECT_VERSION = 368;
DEVELOPMENT_ASSET_PATHS = "";
DEVELOPMENT_TEAM = 53KVJRJS99;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -718,7 +718,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 367;
CURRENT_PROJECT_VERSION = 368;
DEVELOPMENT_ASSET_PATHS = "";
DEVELOPMENT_TEAM = 53KVJRJS99;
ENABLE_BITCODE = NO;
Expand Down
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ import 'package:workmanager/workmanager.dart';

// TODO: CONFIGURE FOR APP RELEASE, include exceptions in Drawer if applicable
const String appVersion = '3.2.3';
const String androidCompilation = '367';
const String iosCompilation = '367';
const String androidCompilation = '368';
const String iosCompilation = '368';

final FirebaseAnalytics analytics = FirebaseAnalytics.instance;

Expand Down
8 changes: 5 additions & 3 deletions lib/utils/changelog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ChangeLogState extends State<ChangeLog> {
void _createItems() {
final itemList = <ChangeLogItem>[];

// Build 367 - 16/12/2023
// Build 368 - 17/12/2023

// VERSION 3.2.3
final v3_2_3 = ChangeLogItem();
Expand All @@ -49,12 +49,14 @@ class ChangeLogState extends State<ChangeLog> {
const String feat3_2_3_2 = "Fixed browser download issues on iOS";
const String feat3_2_3_3 = "Fixed audio channels mixing in Chain Watcher";
const String feat3_2_3_4 = "Fixed timezone references";
const String feat3_2_3_5 = "Fixed random logouts";
const String feat3_2_3_5 = "Fixed issues with API model";
const String feat3_2_3_6 = "Fixed random logouts";
v3_2_3.features.add(feat3_2_3_1);
if (Platform.isIOS) v3_2_3.features.add(feat3_2_3_2);
v3_2_3.features.add(feat3_2_3_3);
v3_2_3.features.add(feat3_2_3_4);
v3_2_3.features.add(feat3_2_3_5);
v3_2_3.features.add(feat3_2_3_6);

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

// NEED TO ADD HERE!
itemList.add(v3_2_2);
itemList.add(v3_2_3);
itemList.add(v3_2_2);
itemList.add(v3_2_1);
itemList.add(v3_2_0);
Expand Down

0 comments on commit fa84058

Please sign in to comment.