Skip to content

Commit 264efb9

Browse files
committed
Fixed player profile widget
1 parent e06ce76 commit 264efb9

File tree

6 files changed

+333
-350
lines changed

6 files changed

+333
-350
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (localPropertiesFile.exists()) {
1616

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

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

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
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 = 468;
552+
CURRENT_PROJECT_VERSION = 470;
553553
DEVELOPMENT_ASSET_PATHS = "";
554554
DEVELOPMENT_TEAM = 53KVJRJS99;
555555
ENABLE_BITCODE = NO;
@@ -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 = 468;
701+
CURRENT_PROJECT_VERSION = 470;
702702
DEVELOPMENT_ASSET_PATHS = "";
703703
DEVELOPMENT_TEAM = 53KVJRJS99;
704704
ENABLE_BITCODE = NO;
@@ -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 = 468;
742+
CURRENT_PROJECT_VERSION = 470;
743743
DEVELOPMENT_ASSET_PATHS = "";
744744
DEVELOPMENT_TEAM = 53KVJRJS99;
745745
ENABLE_BITCODE = NO;

lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ import 'package:workmanager/workmanager.dart';
6969

7070
// TODO (App release)
7171
const String appVersion = '3.6.3';
72-
const String androidCompilation = '468';
73-
const String iosCompilation = '468';
72+
const String androidCompilation = '470';
73+
const String iosCompilation = '470';
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/utils/changelog.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,13 @@ class ChangeLogState extends State<ChangeLog> {
5151
void _createItems() {
5252
final itemList = <ChangeLogItem>[];
5353

54-
// v3.6.3 - Build 468 - 11/12/2024
54+
// v3.6.3 - Build 470 - 12/12/2024
5555
itemList.add(
5656
ChangeLogItem()
5757
..version = 'Torn PDA v3.6.3'
58-
..date = '20 DEC 2024'
58+
..date = '25 DEC 2024'
5959
..features = [
60+
"Fixed player profile widget",
6061
"Fixed chat notifications in split screen",
6162
],
6263
);

0 commit comments

Comments
 (0)