Commit 91eb909 1 parent 285a53d commit 91eb909 Copy full SHA for 91eb909
File tree 3 files changed +10
-8
lines changed
3 files changed +10
-8
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 = ' 343 '
16
+ flutterVersionCode = ' 344 '
17
17
}
18
18
19
19
def flutterVersionName = localProperties. getProperty(' flutter.versionName' )
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ import 'package:workmanager/workmanager.dart';
51
51
52
52
// TODO: CONFIGURE FOR APP RELEASE, include exceptions in Drawer if applicable
53
53
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 ' ;
56
56
57
57
final FirebaseAnalytics analytics = FirebaseAnalytics .instance;
58
58
Original file line number Diff line number Diff line change @@ -39,20 +39,22 @@ class ChangeLogState extends State<ChangeLog> {
39
39
void _createItems () {
40
40
final itemList = < ChangeLogItem > [];
41
41
42
- // Build 343 - 22 /10/2023
42
+ // Build 344 - 26 /10/2023
43
43
44
44
// VERSION 3.1.9
45
45
final v3_1_9 = ChangeLogItem ();
46
46
v3_1_9.version = 'Torn PDA v3.1.9' ;
47
47
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" ;
52
53
v3_1_9.features.add (feat3_1_9_1);
53
54
v3_1_9.features.add (feat3_1_9_2);
54
55
v3_1_9.features.add (feat3_1_9_3);
55
56
v3_1_9.features.add (feat3_1_9_4);
57
+ v3_1_9.features.add (feat3_1_9_5);
56
58
57
59
// VERSION 3.1.8
58
60
final v3_1_8 = ChangeLogItem ();
You can’t perform that action at this time.
0 commit comments