Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 9848d27

Browse files
committed
v1.3.2
1 parent 579c315 commit 9848d27

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.compile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
rmdir "Output" /S /Q
2-
3-
mkdir "Output"
4-
51
copy "..\DarkMode\DarkMode.scriptlet" ".Cmpl8r"
62

73
"%AHK%\Compiler\Ahk2Exe.exe" /in "Compile-in-ator FE.ahk" /out "Output\Compile-in-ator FE.exe" /icon "cn8ricon.ico" /compress 2 /base "%AHK%\v2\AutoHotkey64.exe"

Compile-in-ator.ahk

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#NoTrayIcon
33
#SingleInstance Force
44

5-
;@Ahk2Exe-Set FileVersion, 1.3.1
6-
;@Ahk2Exe-Set ProductVersion, 1.3.1
5+
;@Ahk2Exe-Set FileVersion, 1.3.2
6+
;@Ahk2Exe-Set ProductVersion, 1.3.2.0
77
;@Ahk2Exe-Set CompanyName, Pikakid98
88
;@Ahk2Exe-ConsoleApp
99

@@ -22,12 +22,19 @@ SetWorkingDir A_LoopFileDir
2222

2323
for n, param in A_Args
2424
{
25+
if DirExist("Output") {
26+
DirDelete "Output", 1
27+
DirCreate "Output"
28+
} else {
29+
DirCreate "Output"
30+
}
31+
2532
if not DirExist(A_Temp "\Cmpl8r") {
2633
DirCreate A_Temp "\Cmpl8r"
2734
FileAppend "
2835
(
2936
@ECHO OFF
30-
;title Compile-in-ator (v1.3.1)
37+
;title Compile-in-ator (v1.3.2)
3138
@ECHO ON
3239
)", A_Temp "\Cmpl8r\main.bat"
3340

0 commit comments

Comments
 (0)