commit 1c9b3ef2532e69889153a9d2e198b2e428d6dc38
parent dde2848185f041d99f931825191e5dba983216e1
Author: Frederic Cambus <fred@statdns.com>
Date: Tue, 15 Jan 2019 14:38:15 +0100
Release libansilove 1.1.0.
Diffstat:
22 files changed, 27 insertions(+), 25 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 2.6)
set(LIB_VERSION_MAJOR 1)
-set(LIB_VERSION_MINOR 0)
+set(LIB_VERSION_MINOR 1)
set(LIB_VERSION_PATCH 0)
set(LIB_VERSION_STRING ${LIB_VERSION_MAJOR}.${LIB_VERSION_MINOR}.${LIB_VERSION_PATCH})
diff --git a/ChangeLog b/ChangeLog
@@ -1,9 +1,11 @@
+libansilove 1.1.0 (2019-01-15)
+
- Only call gdFree() if the PNG buffer was allocated (Thanks Joris Vink)
- No need for buffer pointers to be const, they're passed to functions
- taking non consts. (Thanks Joris Vink)
+ taking non consts (Thanks Joris Vink)
- Introduce a maplen variable to allow tracking mmap size, as we can't
rely on the length variable because of SAUCE
-- Unmap ctx->buffer on cleanup. From Joris Vink, thanks!
+- Unmap ctx->buffer on cleanup (Thanks Joris Vink)
- Check for the TUNDRA24 string in TND files header
- Split fonts data to have one include file per font
- Use macros instead of hardcoded values in the Tundra loader
diff --git a/include/ansilove.h b/include/ansilove.h
@@ -1,6 +1,6 @@
/*
* ansilove.h
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
@@ -18,10 +18,10 @@
#include <stdint.h>
/* Version number */
-#define ANSILOVE_VERSION "1.0.0"
+#define ANSILOVE_VERSION "1.1.0"
#define ANSILOVE_VERSION_MAJOR 1
-#define ANSILOVE_VERSION_MINOR 0
+#define ANSILOVE_VERSION_MINOR 1
#define ANSILOVE_VERSION_PATCH 0
/* Error codes */
diff --git a/src/clean.c b/src/clean.c
@@ -1,6 +1,6 @@
/*
* clean.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/config.h b/src/config.h
@@ -1,6 +1,6 @@
/*
* config.h
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/drawchar.c b/src/drawchar.c
@@ -1,6 +1,6 @@
/*
* drawchar.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/drawchar.h b/src/drawchar.h
@@ -1,6 +1,6 @@
/*
* drawchar.h
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/error.c b/src/error.c
@@ -1,6 +1,6 @@
/*
* error.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/fonts.c b/src/fonts.c
@@ -1,6 +1,6 @@
/*
* fonts.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/fonts.h b/src/fonts.h
@@ -1,6 +1,6 @@
/*
* fonts.h
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/init.c b/src/init.c
@@ -1,6 +1,6 @@
/*
* init.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/ansi.c b/src/loaders/ansi.c
@@ -1,6 +1,6 @@
/*
* ansi.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/artworx.c b/src/loaders/artworx.c
@@ -1,6 +1,6 @@
/*
* artworx.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/binary.c b/src/loaders/binary.c
@@ -1,6 +1,6 @@
/*
* binary.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/icedraw.c b/src/loaders/icedraw.c
@@ -1,6 +1,6 @@
/*
* icedraw.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/pcboard.c b/src/loaders/pcboard.c
@@ -1,6 +1,6 @@
/*
* pcboard.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/tundra.c b/src/loaders/tundra.c
@@ -1,6 +1,6 @@
/*
* tundra.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loaders/xbin.c b/src/loaders/xbin.c
@@ -1,6 +1,6 @@
/*
* xbin.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/loadfile.c b/src/loadfile.c
@@ -1,6 +1,6 @@
/*
* loadfile.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/output.c b/src/output.c
@@ -1,6 +1,6 @@
/*
* output.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/output.h b/src/output.h
@@ -1,6 +1,6 @@
/*
* output.h
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus
diff --git a/src/savefile.c b/src/savefile.c
@@ -1,6 +1,6 @@
/*
* savefile.c
- * libansilove 1.0.0
+ * libansilove 1.1.0
* https://www.ansilove.org
*
* Copyright (c) 2011-2019 Stefan Vogt, Brian Cassidy, and Frederic Cambus