Skip to content

Commit e445e7a

Browse files
committed
Fixed travel percentage
1 parent 976a2c3 commit e445e7a

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ if (localPropertiesFile.exists()) {
1616

1717
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
1818
if (flutterVersionCode == null) {
19-
flutterVersionCode = '479'
19+
flutterVersionCode = '480'
2020
}
2121

2222
def flutterVersionName = localProperties.getProperty('flutter.versionName')
2323
if (flutterVersionName == null) {
24-
flutterVersionName = '3.6.6'
24+
flutterVersionName = '3.6.7'
2525
}
2626

2727
def keystoreProperties = new Properties()

ios/Runner.xcodeproj/project.pbxproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@
549549
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
550550
CODE_SIGN_IDENTITY = "Apple Development";
551551
CODE_SIGN_STYLE = Automatic;
552-
CURRENT_PROJECT_VERSION = 479;
552+
CURRENT_PROJECT_VERSION = 480;
553553
DEVELOPMENT_ASSET_PATHS = "";
554554
DEVELOPMENT_TEAM = 53KVJRJS99;
555555
ENABLE_BITCODE = NO;
@@ -567,7 +567,7 @@
567567
"$(inherited)",
568568
"$(PROJECT_DIR)/Flutter",
569569
);
570-
MARKETING_VERSION = 3.6.6;
570+
MARKETING_VERSION = 3.6.7;
571571
PRODUCT_BUNDLE_IDENTIFIER = com.manuito.tornpda;
572572
PRODUCT_NAME = "$(TARGET_NAME)";
573573
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -698,7 +698,7 @@
698698
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
699699
CODE_SIGN_IDENTITY = "Apple Development";
700700
CODE_SIGN_STYLE = Automatic;
701-
CURRENT_PROJECT_VERSION = 479;
701+
CURRENT_PROJECT_VERSION = 480;
702702
DEVELOPMENT_ASSET_PATHS = "";
703703
DEVELOPMENT_TEAM = 53KVJRJS99;
704704
ENABLE_BITCODE = NO;
@@ -716,7 +716,7 @@
716716
"$(inherited)",
717717
"$(PROJECT_DIR)/Flutter",
718718
);
719-
MARKETING_VERSION = 3.6.6;
719+
MARKETING_VERSION = 3.6.7;
720720
PRODUCT_BUNDLE_IDENTIFIER = com.manuito.tornpda;
721721
PRODUCT_NAME = "$(TARGET_NAME)";
722722
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -739,7 +739,7 @@
739739
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
740740
CODE_SIGN_IDENTITY = "Apple Development";
741741
CODE_SIGN_STYLE = Automatic;
742-
CURRENT_PROJECT_VERSION = 479;
742+
CURRENT_PROJECT_VERSION = 480;
743743
DEVELOPMENT_ASSET_PATHS = "";
744744
DEVELOPMENT_TEAM = 53KVJRJS99;
745745
ENABLE_BITCODE = NO;
@@ -757,7 +757,7 @@
757757
"$(inherited)",
758758
"$(PROJECT_DIR)/Flutter",
759759
);
760-
MARKETING_VERSION = 3.6.6;
760+
MARKETING_VERSION = 3.6.7;
761761
PRODUCT_BUNDLE_IDENTIFIER = com.manuito.tornpda;
762762
PRODUCT_NAME = "$(TARGET_NAME)";
763763
PROVISIONING_PROFILE_SPECIFIER = "";

lib/main.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ import 'package:wakelock_plus/wakelock_plus.dart';
6868
import 'package:workmanager/workmanager.dart';
6969

7070
// TODO (App release)
71-
const String appVersion = '3.6.6';
72-
const String androidCompilation = '479';
73-
const String iosCompilation = '479';
71+
const String appVersion = '3.6.7';
72+
const String androidCompilation = '480';
73+
const String iosCompilation = '480';
7474

7575
// TODO (App release)
7676
// Note: if using Windows and calling HTTP functions, we need to change the URL in [firebase_functions.dart]

lib/pages/profile_page.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1430,7 +1430,7 @@ class ProfilePageState extends State<ProfilePage> with WidgetsBindingObserver {
14301430
lineHeight: 18,
14311431
progressColor: Colors.blue[200],
14321432
backgroundColor: Colors.grey,
1433-
percent: 0.8,
1433+
percent: percentage,
14341434
),
14351435
),
14361436
if (ballAssetLocation.isNotEmpty)

lib/utils/changelog.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ class ChangeLogState extends State<ChangeLog> {
5151
void _createItems() {
5252
final itemList = <ChangeLogItem>[];
5353

54-
// v3.6.6 - Build 479 - 27/12/2024
54+
// v3.6.7 - Build 480 - 28/12/2024
5555
itemList.add(
5656
ChangeLogItem()
57-
..version = 'Torn PDA v3.6.6'
58-
..date = '28 DEC 2024'
57+
..version = 'Torn PDA v3.6.7'
58+
..date = '30 DEC 2024'
5959
..infoString = "Hotfix: resolved issues with the travel widget and graphic "
6060
"display problems on certain devices"
6161
..features = [

0 commit comments

Comments
 (0)