Skip to content

Commit 91eb909

Browse files
committed
Android versioning
1 parent 285a53d commit 91eb909

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
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 = '343'
16+
flutterVersionCode = '344'
1717
}
1818

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

lib/main.dart

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

5252
// TODO: CONFIGURE FOR APP RELEASE, include exceptions in Drawer if applicable
5353
const String appVersion = '3.1.9';
54-
const String androidCompilation = '343';
55-
const String iosCompilation = '343';
54+
const String androidCompilation = '344';
55+
const String iosCompilation = '344';
5656

5757
final FirebaseAnalytics analytics = FirebaseAnalytics.instance;
5858

lib/utils/changelog.dart

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

42-
// Build 343 - 22/10/2023
42+
// Build 344 - 26/10/2023
4343

4444
// VERSION 3.1.9
4545
final v3_1_9 = ChangeLogItem();
4646
v3_1_9.version = 'Torn PDA v3.1.9';
4747
v3_1_9.date = '30 OCT 2023';
48-
const String feat3_1_9_1 = "Fixed property vault widget assignments";
49-
const String feat3_1_9_2 = "Fixed long tap menu in quick profiles";
50-
const String feat3_1_9_3 = "Fixed War options menu and reviving providers";
51-
const String feat3_1_9_4 = "Fixed jail widget max score dialog";
48+
const String feat3_1_9_1 = "Fixed sections affected by API changes in inventory";
49+
const String feat3_1_9_2 = "Fixed property vault widget assignments";
50+
const String feat3_1_9_3 = "Fixed long tap menu in quick profiles";
51+
const String feat3_1_9_4 = "Fixed War options menu and reviving providers";
52+
const String feat3_1_9_5 = "Fixed jail widget max score dialog";
5253
v3_1_9.features.add(feat3_1_9_1);
5354
v3_1_9.features.add(feat3_1_9_2);
5455
v3_1_9.features.add(feat3_1_9_3);
5556
v3_1_9.features.add(feat3_1_9_4);
57+
v3_1_9.features.add(feat3_1_9_5);
5658

5759
// VERSION 3.1.8
5860
final v3_1_8 = ChangeLogItem();

0 commit comments

Comments
 (0)