Skip to content

Commit c6b67be

Browse files
committed
2.5.18
1 parent f652c03 commit c6b67be

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

#CMI.iss

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "COM Modular Installer"
5-
#define MyAppVersion "2.5.17"
5+
#define MyAppVersion "2.5.18"
66
#define MyAppURL "https://krypto5863.github.io/COM-Modular-Installer/"
77
#define MyAppUpdates "https://github.com/krypto5863/COM-Modular-Installer/releases"
88
#define MyAppSupport "https://github.com/krypto5863/COM-Modular-Installer/issues"
@@ -70,8 +70,8 @@ LicenseFile={#SrcDir}\Documentation\license.txt
7070
InfoBeforeFile={#SrcDir}\Documentation\info.txt
7171

7272
WizardStyle=modern
73-
SetupIconFile={#SrcDir}\UI\Icon.ico
74-
WizardSmallImageFile={#SrcDir}\UI\Icon.bmp
73+
SetupIconFile={#SrcDir}\UI\icon.ico
74+
WizardSmallImageFile={#SrcDir}\UI\icon.bmp
7575
WizardSizePercent=150
7676

7777
//Banner Images.
@@ -324,7 +324,10 @@ Type:filesandordirs; Name: "{app}\OldInstall*"; Tasks:clean/deleteold/old;
324324
325325
[Run]
326326
Filename: "{tmp}\MaidFiddlerSetup.exe"; Flags: runasoriginaluser skipifdoesntexist waituntilterminated; StatusMsg: {cm:MFInstall}
327-
Filename: "https://forms.gle/PrXjqck2dQYMHvyY8"; Flags: shellexec runasoriginaluser postinstall; Description: {cm:Survey}
327+
;Filename: "https://forms.gle/PrXjqck2dQYMHvyY8"; Flags: shellexec runasoriginaluser postinstall; Description: {cm:Survey}
328+
FileName: "https://discord.gg/custommaid"; Flags: shellexec runasoriginaluser postinstall; Description: Join Custom Maid Discord!
329+
//It's just a prank bro
330+
FileName: "https://dlshop.illu-member.jp/products/detail.php?product_id=251"; Flags: shellexec runasoriginaluser postinstall; Description: Get a better game!; Check: GetRandAbove(100, 9)
328331
Filename: "https://github.com/krypto5863/COM-Modular-Installer/releases"; Flags: shellexec runasoriginaluser postinstall unchecked; Description: {cm:OfficialPage}
329332

330333
[Registry]

CMI/CMIExclusive.iss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
[Code]
2+
function GetRandAbove(const range: Integer; const atOrBelow: Integer): Boolean;
3+
begin
4+
5+
result := Random(range) <= atOrBelow;
6+
7+
end;
8+
29
function IsEng(const path: String): Integer;
310
begin
411
//2 is INM. 1 is R18. 0 is not Eng.
@@ -81,7 +88,7 @@ begin
8188
//'ShapekeyMaster',
8289
//'ShortMenuLoader',
8390
'ShortStartLoader',
84-
'AlwaysColorChangeEX',
91+
//'AlwaysColorChangeEX',
8592
//'AdvancedMaterialModifier',
8693
CustomMessage('MaidFiddler')
8794
];

0 commit comments

Comments
 (0)