Skip to content

Commit

Permalink
Merge pull request #34 from KizKizz/backend-rework
Browse files Browse the repository at this point in the history
applied list fix
  • Loading branch information
KizKizz committed Jul 29, 2022
2 parents 5fb8511 + c47dff9 commit b7bf7f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions app_version_check/app_version.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "PSO2NGS Mod Manager",
"version": "1.4.6",
"version": "1.4.7",
"description": [
"Fixed an issue where duplicate files found in _na data folders would not apply correctly"
"Fixed an issue where duplicate files found in _na data folders would not apply correctly",
"Applied List bug fixes"
],
"windows_file": "",
"linux_file": ""
Expand Down
2 changes: 1 addition & 1 deletion lib/mods_loader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ Future<List<List<ModFile>>> getAppliedModsList() async {
totalAppliedFiles += item.length;
}

appliedList.sort(((a, b) => b.first.appliedDate.compareTo(b.first.appliedDate)));
appliedList.sort(((a, b) => b.first.appliedDate.compareTo(a.first.appliedDate)));
return appliedList;
}

Expand Down
4 changes: 2 additions & 2 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
#ifdef FLUTTER_BUILD_NUMBER
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
#else
#define VERSION_AS_NUMBER 1,4,6
#define VERSION_AS_NUMBER 1,4,7
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "1.4.6"
#define VERSION_AS_STRING "1.4.7"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit b7bf7f4

Please sign in to comment.