diff --git a/.travis.yml b/.travis.yml index 09e8f24..003743d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ addons: coverity_scan: project: name: "ansilove/libansilove" - version: 1.2.2 + version: 1.2.3 description: "Library for converting ANSI, ASCII, and other formats to PNG" notification_email: fred@statdns.com build_command_prepend: cmake . diff --git a/CMakeLists.txt b/CMakeLists.txt index 95d1955..d06fd55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 2.6) set(LIB_VERSION_MAJOR 1) set(LIB_VERSION_MINOR 2) -set(LIB_VERSION_PATCH 2) +set(LIB_VERSION_PATCH 3) set(LIB_VERSION_STRING ${LIB_VERSION_MAJOR}.${LIB_VERSION_MINOR}.${LIB_VERSION_PATCH}) project (ansilove C) diff --git a/include/ansilove.h b/include/ansilove.h index 57544ad..a46254c 100644 --- a/include/ansilove.h +++ b/include/ansilove.h @@ -1,6 +1,6 @@ /* * ansilove.h - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus @@ -20,11 +20,11 @@ #define ANSILOVE_EXTERN __attribute__((visibility("default"))) /* Version number */ -#define ANSILOVE_VERSION "1.2.2" +#define ANSILOVE_VERSION "1.2.3" #define ANSILOVE_VERSION_MAJOR 1 #define ANSILOVE_VERSION_MINOR 2 -#define ANSILOVE_VERSION_PATCH 2 +#define ANSILOVE_VERSION_PATCH 3 /* Error codes */ #define ANSILOVE_INVALID_PARAM 1 diff --git a/src/clean.c b/src/clean.c index a86cfd2..290adf9 100644 --- a/src/clean.c +++ b/src/clean.c @@ -1,6 +1,6 @@ /* * clean.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/config.h b/src/config.h index a395fa4..d2cc280 100644 --- a/src/config.h +++ b/src/config.h @@ -1,6 +1,6 @@ /* * config.h - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/drawchar.c b/src/drawchar.c index da5d665..d7ebf67 100644 --- a/src/drawchar.c +++ b/src/drawchar.c @@ -1,6 +1,6 @@ /* * drawchar.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/drawchar.h b/src/drawchar.h index 619bb93..bd51f00 100644 --- a/src/drawchar.h +++ b/src/drawchar.h @@ -1,6 +1,6 @@ /* * drawchar.h - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/error.c b/src/error.c index fd89b8e..f845226 100644 --- a/src/error.c +++ b/src/error.c @@ -1,6 +1,6 @@ /* * error.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/fonts.c b/src/fonts.c index e1af505..ccd255b 100644 --- a/src/fonts.c +++ b/src/fonts.c @@ -1,6 +1,6 @@ /* * fonts.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/fonts.h b/src/fonts.h index cc24abc..9a94953 100644 --- a/src/fonts.h +++ b/src/fonts.h @@ -1,6 +1,6 @@ /* * fonts.h - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/init.c b/src/init.c index c7f1012..f7140aa 100644 --- a/src/init.c +++ b/src/init.c @@ -1,6 +1,6 @@ /* * init.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/ansi.c b/src/loaders/ansi.c index da3197d..a8acafd 100644 --- a/src/loaders/ansi.c +++ b/src/loaders/ansi.c @@ -1,6 +1,6 @@ /* * ansi.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/artworx.c b/src/loaders/artworx.c index fa3583c..9170a5d 100644 --- a/src/loaders/artworx.c +++ b/src/loaders/artworx.c @@ -1,6 +1,6 @@ /* * artworx.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/binary.c b/src/loaders/binary.c index 87d3603..09b8959 100644 --- a/src/loaders/binary.c +++ b/src/loaders/binary.c @@ -1,6 +1,6 @@ /* * binary.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/icedraw.c b/src/loaders/icedraw.c index bd64aca..a3d0ae3 100644 --- a/src/loaders/icedraw.c +++ b/src/loaders/icedraw.c @@ -1,6 +1,6 @@ /* * icedraw.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/pcboard.c b/src/loaders/pcboard.c index 9ab1588..59e6c8d 100644 --- a/src/loaders/pcboard.c +++ b/src/loaders/pcboard.c @@ -1,6 +1,6 @@ /* * pcboard.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/tundra.c b/src/loaders/tundra.c index 9c554e5..5910e1d 100644 --- a/src/loaders/tundra.c +++ b/src/loaders/tundra.c @@ -1,6 +1,6 @@ /* * tundra.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loaders/xbin.c b/src/loaders/xbin.c index e310425..d6ed0fe 100644 --- a/src/loaders/xbin.c +++ b/src/loaders/xbin.c @@ -1,6 +1,6 @@ /* * xbin.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/loadfile.c b/src/loadfile.c index 769f066..ebb3e4b 100644 --- a/src/loadfile.c +++ b/src/loadfile.c @@ -1,6 +1,6 @@ /* * loadfile.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/output.c b/src/output.c index bf523cc..7668dee 100644 --- a/src/output.c +++ b/src/output.c @@ -1,6 +1,6 @@ /* * output.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/output.h b/src/output.h index 09615c0..86b4256 100644 --- a/src/output.h +++ b/src/output.h @@ -1,6 +1,6 @@ /* * output.h - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus diff --git a/src/savefile.c b/src/savefile.c index e21d330..be28bb4 100644 --- a/src/savefile.c +++ b/src/savefile.c @@ -1,6 +1,6 @@ /* * savefile.c - * libansilove 1.2.2 + * libansilove 1.2.3 * https://www.ansilove.org * * Copyright (c) 2011-2020 Stefan Vogt, Brian Cassidy, and Frederic Cambus