Commit ad5ef14 1 parent 2b7a6b4 commit ad5ef14 Copy full SHA for ad5ef14
File tree 6 files changed +14
-12
lines changed
6 files changed +14
-12
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 = ' 371 '
16
+ flutterVersionCode = ' 372 '
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 = 371 ;
539
+ CURRENT_PROJECT_VERSION = 372 ;
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 = 371 ;
683
+ CURRENT_PROJECT_VERSION = 372 ;
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 = 371 ;
721
+ CURRENT_PROJECT_VERSION = 372 ;
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.5' ;
58
- const String androidCompilation = '371 ' ;
59
- const String iosCompilation = '371 ' ;
58
+ const String androidCompilation = '372 ' ;
59
+ const String iosCompilation = '372 ' ;
60
60
61
61
final FirebaseAnalytics analytics = FirebaseAnalytics .instance;
62
62
Original file line number Diff line number Diff line change @@ -1081,7 +1081,7 @@ class WebViewProvider extends ChangeNotifier {
1081
1081
void _callAssessMethods () {
1082
1082
final tab = _tabList[_currentTab];
1083
1083
if (tab.currentUrl! .contains ("gym.php" ) || tab.currentUrl! .contains ("index.php?page=hunting" )) {
1084
- tab.webViewKey? .currentState? .assessEnergyWarning ();
1084
+ tab.webViewKey? .currentState? .assessEnergyWarning (tab.currentUrl. toString () );
1085
1085
}
1086
1086
}
1087
1087
Original file line number Diff line number Diff line change @@ -39,16 +39,18 @@ class ChangeLogState extends State<ChangeLog> {
39
39
void _createItems () {
40
40
final itemList = < ChangeLogItem > [];
41
41
42
- // Build 371 - 03/01/2024
42
+ // Build 372 - 03/01/2024
43
43
44
44
// VERSION 3.2.5
45
45
final v3_2_5 = ChangeLogItem ();
46
46
v3_2_5.version = 'Torn PDA v3.2.5' ;
47
47
v3_2_5.date = '10 JAN 2024' ;
48
- const String feat3_2_5_1 = "Fixed Company Stock Order example userscript" ;
49
- const String feat3_2_5_2 = "Updated browser to fix reported issues" ;
48
+ const String feat3_2_5_1 = "Fixed Company Stock Order example userscript [Kwack]" ;
49
+ const String feat3_2_5_2 = "Fixed energy stacking warning in certain devices" ;
50
+ const String feat3_2_5_3 = "Updated browser to fix reported issues" ;
50
51
v3_2_5.features.add (feat3_2_5_1);
51
52
v3_2_5.features.add (feat3_2_5_2);
53
+ v3_2_5.features.add (feat3_2_5_3);
52
54
53
55
// VERSION 3.2.4
54
56
final v3_2_4 = ChangeLogItem ();
Original file line number Diff line number Diff line change @@ -3704,11 +3704,11 @@ class WebViewFullState extends State<WebViewFull> with WidgetsBindingObserver {
3704
3704
}
3705
3705
3706
3706
// ASSESS GYM
3707
- Future assessEnergyWarning () async {
3707
+ Future assessEnergyWarning (String targetUrl ) async {
3708
3708
if (! mounted) return ;
3709
3709
if (! _settingsProvider.warnAboutExcessEnergy && ! _settingsProvider.warnAboutChains) return ;
3710
3710
3711
- final easyUrl = _currentUrl .replaceAll ('#' , '' );
3711
+ final easyUrl = targetUrl .replaceAll ('#' , '' );
3712
3712
if (easyUrl.contains ('www.torn.com/gym.php' ) || easyUrl.contains ('index.php?page=hunting' )) {
3713
3713
final stats = await Get .find <ApiCallerController >().getBars ();
3714
3714
if (stats is BarsModel ) {
You can’t perform that action at this time.
0 commit comments