Skip to content

Commit

Permalink
prep
Browse files Browse the repository at this point in the history
  • Loading branch information
KizKizz committed Sep 2, 2024
1 parent 1cb11d6 commit 3565c89
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 1 addition & 3 deletions app_version_check/app_version.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"name": "PSO2NGS Mod Manager",
"version": "2.8.18",
"version": "2.8.19",
"description": [
"Removed Gameguard anticheat option when launching PSO2 with Mod Manager (JP version only)",
"More bug fixes",
"PSO2をMODマネージャーで起動する際、Gameguardのアンチヒートオプションを削除(JP版のみ)",
"その他のバグ修正"
],
"windows_file": "",
Expand Down
2 changes: 1 addition & 1 deletion lib/itemsSwapper/items_swapper_la_homepage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ class _ItemsSwapperEmotesHomePageState extends State<ItemsSwapperEmotesHomePage>
height: 92,
child: ListTile(
minVerticalPadding: 15,
title: Text(curLangText!.uiChooseAnItemBellowToSwap),
title: Text(curLangText!.uiSelectAnItemToBeReplaced),
subtitle: Padding(
padding: const EdgeInsets.only(top: 10),
child: SizedBox(
Expand Down
5 changes: 3 additions & 2 deletions lib/itemsSwapper/items_swapper_wp_homepage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ class _ItemsSwapperWeaponHomePageState extends State<ItemsSwapperWeaponHomePage>
height: 92,
child: ListTile(
minVerticalPadding: 15,
title: Text(curLangText!.uiChooseAnItemBellowToSwap),
title: Text(curLangText!.uiSelectAnItemToBeReplaced),
subtitle: Padding(
padding: const EdgeInsets.only(top: 10),
child: SizedBox(
Expand Down Expand Up @@ -1394,11 +1394,12 @@ Future<String> modsSwapperWpSwap(context, SubMod fromSubmod, String fromItemAvai
Directory(modManSwapperFromItemDirPath).createSync(recursive: true);
Directory(modManSwapperToItemDirPath).createSync(recursive: true);
Directory(modManSwapperOutputDirPath).createSync(recursive: true);
toItemName = toItemName.replaceAll(RegExp(charToReplace), '_').trim();
String renamedItemPath = Uri.file('$modManSwapperOutputDirPath/$toItemName').toFilePath();
for (var modFile in fromSubmod.modFiles) {
File curFile = File(modFile.location);
if (fromItemAvailableIce == modFile.modFileName && curFile.existsSync()) {
toItemName = toItemName.replaceAll(RegExp(charToReplace), '_').trim();
// toItemName = toItemName.replaceAll(RegExp(charToReplace), '_').trim();
String packDirPath = '';
if (fromSubmod.modName == fromSubmod.submodName) {
packDirPath = Uri.file('$modManSwapperOutputDirPath/$toItemName/${fromSubmod.modName.replaceAll(RegExp(charToReplace), '_')}').toFilePath();
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 2,8,18
#define VERSION_AS_NUMBER 2,8,19
#endif

#ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else
#define VERSION_AS_STRING "2.8.18"
#define VERSION_AS_STRING "2.8.19"
#endif

VS_VERSION_INFO VERSIONINFO
Expand Down

0 comments on commit 3565c89

Please sign in to comment.