Skip to content

Commit 471462e

Browse files
committed
Version 1.1
1 parent e6d0496 commit 471462e

5 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
===Version 1.1===
12
-Removed "-cstd". Replaced with color modes.
3+
-Added "--charset" option.
24
-Drawing optimization for colors with cstd.
35
-Screen is now cleared on resize when using cstd.
46
-Default console color is now reset on exit, when using colors with cstd.

cp/src/argParser.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ static int opHelp(int argc, char** argv)
202202
else if (argc == 0)
203203
{
204204
showHelp(1, 0, 0, 1);
205+
puts("[To see full help use \"conpl -h full\"]");
205206
}
206207
else
207208
{

cp/src/conplayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#define CP_CPU "[unknown]"
3232
#endif
3333

34-
#define CP_VERSION "1.0"
34+
#define CP_VERSION "1.1"
3535
#define TO_STR(x) #x
3636
#define DEF_TO_STR(x) TO_STR(x)
3737

cp/src/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ static void helpAdvancedOptions(void)
9191
" conpl video.mp4 -int 2\n"
9292
" conpl video.mp4 -int 4 3\n"
9393
" -cs [charset] Sets character set used for drawing frames.\n"
94-
" (--charset) Takes filename with charset or name of predefined charset.\n"
94+
" (--charset) Takes name of file with charset or name of predefined charset.\n"
9595
" Predefined charsets: #long, #short, #2, #blocks, #outline, #bold-outline.\n"
9696
" Default charset is \"#long\"\n"
9797
" Examples:\n"

pack.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ del conpl.exe
2222
cd ..\..
2323
move x64\Release\conpl_win_x86_64.zip packed
2424

25-
ch -g "packed\conpl_win_x86_32.zip" "packed\conpl_win_x86_64.zip" > packed\conpl_win_sha256.txt
25+
ch -g "packed\conpl_win_x86_32.zip" "packed\conpl_win_x86_64.zip" > packed\conpl_win_sha256.txt
26+
27+
pause

0 commit comments

Comments
 (0)