Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add /silent #77

Merged
merged 25 commits into from Aug 26, 2021
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cc45bbe
Add `/headless` and `/ForceReload` switches
SaifAqqad Jun 4, 2021
542b737
Fix Bad params error strings
SaifAqqad Jun 4, 2021
51b4f10
Fix blank output file if `/out` is not passed
SaifAqqad Jun 4, 2021
cdd4267
Rename `/headless` to `/silent`
SaifAqqad Jun 4, 2021
bf2b7d8
Fix: not exiting with exitcode value
SaifAqqad Jun 4, 2021
9b1bc39
Add `/verbose` to output util_status to stdout
SaifAqqad Jun 4, 2021
1234a26
Output util_info to stdout with CLIMode
SaifAqqad Jun 4, 2021
35d291b
Add descriptions for CLI params
SaifAqqad Jun 4, 2021
90dfb72
Revert "Add descriptions for CLI params"
SaifAqqad Jun 4, 2021
fe2d252
Remove ConsoleApp directive
SaifAqqad Jun 5, 2021
719eb71
Use `global CLIMode` instead of Assume-global
SaifAqqad Jun 6, 2021
7fe2086
Remove extra `Error: ` from `Util_Error` Strings
SaifAqqad Jun 10, 2021
fda1be1
Fix `Util_info` is dependant on CLIMode
SaifAqqad Jun 10, 2021
2ca9500
Use `global Verbose` instead of Assume-global
SaifAqqad Jun 10, 2021
2d077ba
Only output to stderr if it exists
SaifAqqad Jun 14, 2021
297d35b
Merge branch 'master' into master
SaifAqqad Jul 14, 2021
6441d8e
Merge branch 'master' into master
SaifAqqad Jul 29, 2021
8f30cce
Merge branch 'master' into master
SaifAqqad Aug 7, 2021
2eef6ce
Merge branch 'master' of https://github.com/AutoHotkey/Ahk2Exe into m…
SaifAqqad Aug 25, 2021
4a52160
Merge branch 'master' into master
SaifAqqad Aug 25, 2021
7266d18
Restore original error messages
SaifAqqad Aug 25, 2021
9b2fa25
Remove /ForceReload
SaifAqqad Aug 25, 2021
00184f3
Remove unnecessary % signs
SaifAqqad Aug 25, 2021
54d01a2
Merge remote-tracking branch 'upstream/master'
SaifAqqad Aug 26, 2021
ddf79e1
Replace /verbose with optional /silent parameter
SaifAqqad Aug 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Ahk2Exe.ahk
@@ -1,4 +1,4 @@
;
;
; File encoding: UTF-8 with BOM
;
; Script description:
Expand Down Expand Up @@ -713,8 +713,8 @@ Util_Error(txt, exitcode, extra := "", extra1 := "")

Util_Info(txt)
{
global CLIMode
if CLIMode
SaifAqqad marked this conversation as resolved.
Show resolved Hide resolved
global SilentMode
if SilentMode
FileAppend, Ahk2Exe Info: %txt%`n, *
else
MsgBox, 64, Ahk2Exe, % txt
Expand Down