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

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pikakid98 committed Mar 15, 2024
1 parent 579c315 commit 9848d27
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .compile
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
rmdir "Output" /S /Q

mkdir "Output"

copy "..\DarkMode\DarkMode.scriptlet" ".Cmpl8r"

"%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"
Expand Down
13 changes: 10 additions & 3 deletions Compile-in-ator.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#NoTrayIcon
#SingleInstance Force

;@Ahk2Exe-Set FileVersion, 1.3.1
;@Ahk2Exe-Set ProductVersion, 1.3.1
;@Ahk2Exe-Set FileVersion, 1.3.2
;@Ahk2Exe-Set ProductVersion, 1.3.2.0
;@Ahk2Exe-Set CompanyName, Pikakid98
;@Ahk2Exe-ConsoleApp

Expand All @@ -22,12 +22,19 @@ SetWorkingDir A_LoopFileDir

for n, param in A_Args
{
if DirExist("Output") {
DirDelete "Output", 1
DirCreate "Output"
} else {
DirCreate "Output"
}

if not DirExist(A_Temp "\Cmpl8r") {
DirCreate A_Temp "\Cmpl8r"
FileAppend "
(
@ECHO OFF
;title Compile-in-ator (v1.3.1)
;title Compile-in-ator (v1.3.2)
@ECHO ON
)", A_Temp "\Cmpl8r\main.bat"
Expand Down

0 comments on commit 9848d27

Please sign in to comment.