Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
krypto5863 committed May 28, 2024
1 parent 2f8adea commit 03421f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CMI.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "COM Modular Installer"
#define MyAppVersion "2.6"
#define MyAppVersion "2.6.1"
#define MyAppURL "https://krypto5863.github.io/COM-Modular-Installer/"
#define MyAppUpdates "https://github.com/krypto5863/COM-Modular-Installer/releases"
#define MyAppSupport "https://github.com/krypto5863/COM-Modular-Installer/issues"
Expand Down Expand Up @@ -42,9 +42,9 @@ CreateUninstallRegKey=no

Compression=lzma2/ultra64
LZMAUseSeparateProcess=yes
LZMANumBlockThreads=12
LZMADictionarySize=1048576
LZMANumFastBytes=273
;LZMANumBlockThreads=12
;LZMADictionarySize=1048576
;LZMANumFastBytes=273

DisableDirPage=no
DefaultDirName={#MyAppName}
Expand Down
1 change: 0 additions & 1 deletion COM3D2Helpers.iss
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ begin
'ShortMenuLoader',
'ShortMenuVanillaDatabase',
'ShortStartLoader',
'UndressUtil',
'VibeYourMaid',
'VoiceNormalizer',
'Wrap Mode Extend Script',
Expand Down
2 changes: 1 addition & 1 deletion Installer Files/Files.iss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Source: "{#ibep}\COM3D2.ShortMenuLoader\*"; DestDir: "{app}"; Components:bepinex
Source: "{#ibep}\COM3D2.ShortMenuVanillaDatabase\*"; DestDir: "{app}"; Components:bepinexPlugs/ShortVanilla; Flags: {#stdFlags}
Source: "{#ibep}\COM3D2.ShortStartLoader\*"; DestDir: "{#bepp}"; Components:bepinexPlugs/ShortStart; Flags: {#stdFlags}
Source: "{#ibep}\i18nEx\core\*"; DestDir: "{app}"; Components:bepinexPlugs/Translations/i18nEx; Flags: {#stdFlags}
Source: "{#iloader}\extratranslations\*"; DestDir: "{app}"; Components:bepinexPlugs/Translations/i18nEx/extrans; Flags: {#stdFlags}
Source: "{#ibep}\i18nEx\extraTranslations\*"; DestDir: "{app}\i18nEx"; Components:bepinexPlugs/Translations/i18nEx/extrans; Flags: {#stdFlags}
Source: "{#ibep}\ResourceRedirector\*"; DestDir: "{#bep}"; Components:bepinexPlugs/Translations/Resredir; Flags: {#stdFlags}
Source: "{#ibep}\Xuat\*"; DestDir: "{#bepp}"; Components:bepinexPlugs/Translations/resredir/xuat; Flags: {#stdFlags}
Source: "{#ibep}\COM3D2.TimeDependentPhysics\*"; DestDir: "{#bepp}"; Components:bepinexPlugs/TimeDependentPhysics; Flags: {#stdFlags}
Expand Down
4 changes: 2 additions & 2 deletions ShellFileOperations.iss
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ begin
FileOp.hwnd := WizardForm.Handle;
FileOp.wFunc := Operation;
FileOp.pFrom := Source;
FileOp.pTo := Destination;
FileOp.pFrom := PAnsiChar(Source);
FileOp.pTo := PAnsiChar(Destination);
FileOp.fFlags := FOF_NOCONFIRMATION or FOF_NOCONFIRMMKDIR or extraFlags;
OperationResult := SHFileOperation(FileOp)
Expand Down

0 comments on commit 03421f4

Please sign in to comment.