Skip to content

Commit

Permalink
Version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mt1006 committed Jun 16, 2022
1 parent e6d0496 commit 471462e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
===Version 1.1===
-Removed "-cstd". Replaced with color modes.
-Added "--charset" option.
-Drawing optimization for colors with cstd.
-Screen is now cleared on resize when using cstd.
-Default console color is now reset on exit, when using colors with cstd.
Expand Down
1 change: 1 addition & 0 deletions cp/src/argParser.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ static int opHelp(int argc, char** argv)
else if (argc == 0)
{
showHelp(1, 0, 0, 1);
puts("[To see full help use \"conpl -h full\"]");
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion cp/src/conplayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#define CP_CPU "[unknown]"
#endif

#define CP_VERSION "1.0"
#define CP_VERSION "1.1"
#define TO_STR(x) #x
#define DEF_TO_STR(x) TO_STR(x)

Expand Down
2 changes: 1 addition & 1 deletion cp/src/help.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static void helpAdvancedOptions(void)
" conpl video.mp4 -int 2\n"
" conpl video.mp4 -int 4 3\n"
" -cs [charset] Sets character set used for drawing frames.\n"
" (--charset) Takes filename with charset or name of predefined charset.\n"
" (--charset) Takes name of file with charset or name of predefined charset.\n"
" Predefined charsets: #long, #short, #2, #blocks, #outline, #bold-outline.\n"
" Default charset is \"#long\"\n"
" Examples:\n"
Expand Down
4 changes: 3 additions & 1 deletion pack.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ del conpl.exe
cd ..\..
move x64\Release\conpl_win_x86_64.zip packed

ch -g "packed\conpl_win_x86_32.zip" "packed\conpl_win_x86_64.zip" > packed\conpl_win_sha256.txt
ch -g "packed\conpl_win_x86_32.zip" "packed\conpl_win_x86_64.zip" > packed\conpl_win_sha256.txt

pause

0 comments on commit 471462e

Please sign in to comment.