Commit ec64627 1 parent 8546541 commit ec64627 Copy full SHA for ec64627
File tree 6 files changed +28
-9
lines changed
6 files changed +28
-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 = ' 369 '
16
+ flutterVersionCode = ' 370 '
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 = 369 ;
539
+ CURRENT_PROJECT_VERSION = 370 ;
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 = 369 ;
683
+ CURRENT_PROJECT_VERSION = 370 ;
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 = 369 ;
721
+ CURRENT_PROJECT_VERSION = 370 ;
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.4' ;
58
- const String androidCompilation = '369 ' ;
59
- const String iosCompilation = '369 ' ;
58
+ const String androidCompilation = '370 ' ;
59
+ const String iosCompilation = '370 ' ;
60
60
61
61
final FirebaseAnalytics analytics = FirebaseAnalytics .instance;
62
62
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ class OwnProfileMisc {
46
46
this .cardSkimming,
47
47
this .hustling,
48
48
this .disposal,
49
+ this .cracking,
49
50
//
50
51
this .cityBank,
51
52
this .educationCompleted,
@@ -91,6 +92,7 @@ class OwnProfileMisc {
91
92
String ? cardSkimming;
92
93
String ? hustling;
93
94
String ? disposal;
95
+ String ? cracking;
94
96
//
95
97
CityBank ? cityBank;
96
98
List <int >? educationCompleted;
@@ -134,6 +136,7 @@ class OwnProfileMisc {
134
136
cardSkimming: json["card_skimming" ],
135
137
hustling: json["hustling" ],
136
138
disposal: json["disposal" ],
139
+ cracking: json["cracking" ],
137
140
cityBank: json["city_bank" ] == null ? null : CityBank .fromJson (json["city_bank" ]),
138
141
educationCompleted:
139
142
json["education_completed" ] == null ? null : List <int >.from (json["education_completed" ].map ((x) => x)),
@@ -180,6 +183,7 @@ class OwnProfileMisc {
180
183
"card_skimming" : cardSkimming,
181
184
"hustling" : hustling,
182
185
"disposal" : disposal,
186
+ "cracking" : cracking,
183
187
"city_bank" : cityBank == null ? null : cityBank! .toJson (),
184
188
"education_completed" :
185
189
educationCompleted == null ? null : List <dynamic >.from (educationCompleted! .map ((x) => x)),
Original file line number Diff line number Diff line change @@ -3461,6 +3461,7 @@ class ProfilePageState extends State<ProfilePage> with WidgetsBindingObserver {
3461
3461
var cardSkimming = "" ;
3462
3462
var hustling = "" ;
3463
3463
var disposal = "" ;
3464
+ var cracking = "" ;
3464
3465
hunting = _miscModel! .hunting ?? "" ;
3465
3466
racing = _miscModel! .racing ?? "" ;
3466
3467
reviving = _miscModel! .reviving ?? "" ;
@@ -3473,6 +3474,7 @@ class ProfilePageState extends State<ProfilePage> with WidgetsBindingObserver {
3473
3474
cardSkimming = _miscModel! .cardSkimming ?? "" ;
3474
3475
hustling = _miscModel! .hustling ?? "" ;
3475
3476
disposal = _miscModel! .disposal ?? "" ;
3477
+ cracking = _miscModel! .cracking ?? "" ;
3476
3478
3477
3479
if (searchForCash.isNotEmpty ||
3478
3480
bootlegging.isNotEmpty ||
@@ -3482,7 +3484,8 @@ class ProfilePageState extends State<ProfilePage> with WidgetsBindingObserver {
3482
3484
shoplifting.isNotEmpty ||
3483
3485
cardSkimming.isNotEmpty ||
3484
3486
hustling.isNotEmpty ||
3485
- disposal.isNotEmpty) {
3487
+ disposal.isNotEmpty ||
3488
+ cracking.isNotEmpty) {
3486
3489
crimesExist = true ;
3487
3490
}
3488
3491
@@ -4104,6 +4107,16 @@ class ProfilePageState extends State<ProfilePage> with WidgetsBindingObserver {
4104
4107
SelectableText (disposal),
4105
4108
],
4106
4109
),
4110
+ if (cracking.isNotEmpty)
4111
+ Row (
4112
+ children: [
4113
+ const SizedBox (
4114
+ width: 130 ,
4115
+ child: Text ('Cracking: ' ),
4116
+ ),
4117
+ SelectableText (cracking),
4118
+ ],
4119
+ ),
4107
4120
],
4108
4121
),
4109
4122
),
Original file line number Diff line number Diff line change @@ -39,14 +39,16 @@ class ChangeLogState extends State<ChangeLog> {
39
39
void _createItems () {
40
40
final itemList = < ChangeLogItem > [];
41
41
42
- // Build 368 - 24/12/2023
42
+ // Build 370 - 24/12/2023
43
43
44
44
// VERSION 3.2.4
45
45
final v3_2_4 = ChangeLogItem ();
46
46
v3_2_4.version = 'Torn PDA v3.2.4' ;
47
47
v3_2_4.date = '28 DEC 2023' ;
48
- const String feat3_2_4_1 = "Fixed browser crashes in certain devices" ;
48
+ const String feat3_2_4_1 = "Added Cracking to Basic Info card in Profile" ;
49
+ const String feat3_2_4_2 = "Fixed browser crashes in certain devices" ;
49
50
v3_2_4.features.add (feat3_2_4_1);
51
+ v3_2_4.features.add (feat3_2_4_2);
50
52
51
53
// VERSION 3.2.3
52
54
final v3_2_3 = ChangeLogItem ();
You can’t perform that action at this time.
0 commit comments