This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commented out some unused code that may be used later to avoid a warning when using clang Made the program line that caused an error appear on a separate line Fixed Windows VT build not enabling escape codes in time Added a redirection override option
- Loading branch information
Showing
3 changed files
with
59 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
if [ -z "$*" ]; then | ||
FILE=".changelog" | ||
if [ ! -f '.changelog' ]; then echo "Not a file: .changelog"; exit 1; fi | ||
else | ||
for FILE in "$@"; do | ||
if [ ! -f "$FILE" ]; then echo "Not a file: $FILE"; exit 1; fi | ||
done | ||
FILE="" | ||
fi | ||
echo "**Changes:** | ||
$(sed 's/^/- /' "$@" "$FILE") | ||
<br> | ||
**(Compressed) Executables:** | ||
- Linux x86 64-bit: \`clibasic-linux-x64.zip\` | ||
- Linux x86 32-bit: \`clibasic-linux-x86.zip\` | ||
- Windows x86 64-bit using VT escape codes: \`clibasic-windows-vt-x64.zip\` | ||
- Windows x86 32-bit using VT escape codes: \`clibasic-windows-vt-x86.zip\` | ||
- Windows x86 64-bit using legacy API calls: \`clibasic-windows-x64.zip\` | ||
- Windows x86 32-bit using legacy API calls: \`clibasic-windows-x86.zip\` | ||
<br> | ||
**Extras:** | ||
- Example programs: \`examples.zip\`" |