Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ansilove for openSUSE:Factory checked in at 2022-02-13 00:15:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ansilove (Old) and /work/SRC/openSUSE:Factory/.ansilove.new.1956 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ansilove" Sun Feb 13 00:15:35 2022 rev:10 rq:953968 version:4.1.6 Changes: -------- --- /work/SRC/openSUSE:Factory/ansilove/ansilove.changes 2021-03-06 21:19:33.649288169 +0100 +++ /work/SRC/openSUSE:Factory/.ansilove.new.1956/ansilove.changes 2022-02-13 00:16:17.932269752 +0100 @@ -1,0 +2,9 @@ +Fri Feb 11 16:14:05 UTC 2022 - Martin Hauke <[email protected]> + +- Update to version 4.1.6 + * Add a test case for retina output + * Add a test case for SAUCE output + * Use CMAKE_C_STANDARD instead of hardcoding compiler flags + * Stop linking against libm, it's not necessary anymore + +------------------------------------------------------------------- Old: ---- ansilove-4.1.5.tar.gz New: ---- ansilove-4.1.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ansilove.spec ++++++ --- /var/tmp/diff_new_pack.CuRjD6/_old 2022-02-13 00:16:18.428271157 +0100 +++ /var/tmp/diff_new_pack.CuRjD6/_new 2022-02-13 00:16:18.436271180 +0100 @@ -1,8 +1,8 @@ # # spec file for package ansilove # -# Copyright (c) 2021 SUSE LLC -# Copyright (c) 2019-2021, Martin Hauke <[email protected]> +# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2019-2022, Martin Hauke <[email protected]> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ Name: ansilove -Version: 4.1.5 +Version: 4.1.6 Release: 0 Summary: ANSI and ASCII art to PNG converter License: BSD-2-Clause ++++++ ansilove-4.1.5.tar.gz -> ansilove-4.1.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/.travis.yml new/ansilove-4.1.6/.travis.yml --- old/ansilove-4.1.5/.travis.yml 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/.travis.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,46 +0,0 @@ -arch: - - amd64 - - arm64 - - ppc64le - -matrix: - include: - - os: linux - arch: amd64 - - os: linux - arch: arm64 - - os: linux - arch: ppc64le - -language: c - -compiler: - - clang - - gcc - -before_install: - - sudo apt-get -qq update - - sudo apt-get install -y libgd2-noxpm-dev - - git clone https://github.com/ansilove/libansilove.git - - cd libansilove && cmake . && make - - sudo make install - - cd - - - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- - -script: cmake . && make - -env: - global: - # travis encrypt -r ansilove/ansilove encrypt COVERITY_SCAN_TOKEN=token - - secure: "Ahg+dD6BwZqYTl+xTbNqBBr6Qoh7jQswegP77gxfk09UbcLSTpTQcvCLzJtumCajWXTe5HD3lD1xBghxRPNwD/+JRg25AzUeowPvBQkosDZyxMZyeQQEGPVMoD9UbnGaWhxIxYaQ7bxVCu2CJ2PcibsJ3kselnqSicEnw99TXjU=" - -addons: - coverity_scan: - project: - name: "ansilove/ansilove" - version: 4.1.5 - description: "ANSi / ASCII art to PNG converter in C" - notification_email: [email protected] - build_command_prepend: cmake . - build_command: make -j 4 - branch_pattern: coverity_scan diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/CMakeLists.txt new/ansilove-4.1.6/CMakeLists.txt --- old/ansilove-4.1.5/CMakeLists.txt 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/CMakeLists.txt 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,16 @@ -cmake_minimum_required (VERSION 2.6) +cmake_minimum_required(VERSION 3.1) -project (ansilove C) +set(CMAKE_C_STANDARD 99) +set(CMAKE_C_STANDARD_REQUIRED ON) +set(CMAKE_C_EXTENSIONS OFF) + +project(ansilove C) include(CheckFunctionExists) include(GNUInstallDirs) # Conditional build options -set(ENABLE_SECCOMP 0 - CACHE BOOL "Enable building with seccomp") +set(ENABLE_SECCOMP 0 CACHE BOOL "Enable building with seccomp") # Check if system has pledge and strtonum list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_OPENBSD_SOURCE) @@ -37,17 +40,17 @@ set(SRC src/ansilove.c src/types.c src/strtolower.c src/sauce.c) if(NOT HAVE_PLEDGE) - set (SRC ${SRC} compat/pledge.c) + set(SRC ${SRC} compat/pledge.c) endif() if(NOT HAVE_STRTONUM) - set (SRC ${SRC} compat/strtonum.c) + set(SRC ${SRC} compat/strtonum.c) endif() -add_definitions(-D_GNU_SOURCE -Wall -Wextra -std=c99 -pedantic) +add_definitions(-D_GNU_SOURCE -Wall -Wextra -pedantic) add_executable(ansilove ${SRC}) -target_link_libraries(ansilove ${ANSILOVE_LIBRARIES} m) +target_link_libraries(ansilove ${ANSILOVE_LIBRARIES}) install(TARGETS ansilove DESTINATION ${CMAKE_INSTALL_BINDIR}) install(FILES ansilove.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/) @@ -60,3 +63,5 @@ add_test(pcboard ansilove ${PROJECT_SOURCE_DIR}/tests/bs-alove.pcb) add_test(tundra ansilove ${PROJECT_SOURCE_DIR}/tests/bs-alove.tnd) add_test(xbin ansilove ${PROJECT_SOURCE_DIR}/tests/bs-alove.xb) +add_test(retina ansilove -r ${PROJECT_SOURCE_DIR}/tests/bs-alove.ans) +add_test(sauce ansilove -s ${PROJECT_SOURCE_DIR}/tests/sauce.txt) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/ChangeLog new/ansilove-4.1.6/ChangeLog --- old/ansilove-4.1.5/ChangeLog 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/ChangeLog 2022-02-10 21:18:19.000000000 +0100 @@ -1,3 +1,15 @@ +AnsiLove/C 4.1.6 (2021-02-10) + +- Mention experimental seccomp support availability in README +- Bump CMake minimum required version to 3.1 +- Add SPDX short license identifier in source files +- Add a test case for retina output +- Add a test case for SAUCE output +- Use CMAKE_C_STANDARD instead of hardcoding compiler flags +- Stop linking against libm, it's not necessary anymore + + + AnsiLove/C 4.1.5 (2021-02-14) - Stop forcing FORTIFY_SOURCE=2, it should be package builders decision diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/FILE_ID.DIZ new/ansilove-4.1.6/FILE_ID.DIZ --- old/ansilove-4.1.5/FILE_ID.DIZ 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/FILE_ID.DIZ 2022-02-10 21:18:19.000000000 +0100 @@ -17,7 +17,7 @@ - -----------//______|----------------- - : : | | - | Ansilove/C 4.1.5 | + | Ansilove/C 4.1.6 | | | | ANSi=>PNG converter & library | | | diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/LICENSE new/ansilove-4.1.6/LICENSE --- old/ansilove-4.1.5/LICENSE 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/LICENSE 2022-02-10 21:18:19.000000000 +0100 @@ -1,4 +1,4 @@ -Copyright (c) 2011-2021, Stefan Vogt, Brian Cassidy, and Frederic Cambus +Copyright (c) 2011-2022, Stefan Vogt, Brian Cassidy, and Frederic Cambus All rights reserved. Redistribution and use in source and binary forms, with or without diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/README.md new/ansilove-4.1.6/README.md --- old/ansilove-4.1.5/README.md 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/README.md 2022-02-10 21:18:19.000000000 +0100 @@ -18,20 +18,22 @@ # AnsiLove/C -[![Build Status][1]][2] - AnsiLove is an ANSI and ASCII art to PNG converter, allowing to convert ANSI and artscene-related file formats into PNG images, supporting ANSI (.ANS), PCBoard (.PCB), Binary (.BIN), Artworx (.ADF), iCE Draw (.IDF), Tundra (.TND) and XBin (.XB) formats. It creates size optimized 4-bit PNG files and supports SAUCE (Standard -Architecture for Universal Comment Extentions), 80x25 and 80x50 PC fonts +Architecture for Universal Comment Extensions), 80x25 and 80x50 PC fonts (including all the 14 MS-DOS charsets), Amiga fonts, and iCE colors. -This is a complete rewrite of [AnsiLove/PHP][3] in the C programming +This is a complete rewrite of [AnsiLove/PHP][1] in the C programming language. +Experimental seccomp support is available for selected architectures and +can be enabled by setting the `ENABLE_SECCOMP` variable to `1` when +invoking CMake. + # Specs AnsiLove/C is strictly using the `C99 standard` to achieve high @@ -54,7 +56,7 @@ # Dependencies AnsiLove/C uses the `CMake` build system and requires the -[libansilove][4] library and header files. +[libansilove][2] library and header files. # Installing dependencies @@ -83,13 +85,13 @@ Packages are available for the following operating systems: -- [OpenBSD][5] -- [NetBSD][6] -- [FreeBSD][7] -- [Debian][8] -- [Ubuntu][9] -- [openSUSE][10] -- [Solus][11] +- [OpenBSD][3] +- [NetBSD][4] +- [FreeBSD][5] +- [Debian][6] +- [Ubuntu][7] +- [openSUSE][8] +- [Solus][9] # Features @@ -100,15 +102,15 @@ - .BIN - Binary format (raw memory copy of text mode video memory) - .ADF - Artworx format, supporting custom character sets and palettes - .IDF - iCE Draw format, supporting custom character sets and palettes -- .TND - [TundraDraw][12] format, supporting 24-bit color mode -- .XB - The eXtended Binary [XBin][13] format, supporting custom character sets +- .TND - [TundraDraw][10] format, supporting 24-bit color mode +- .XB - The eXtended Binary [XBin][11] format, supporting custom character sets and palettes Files with custom suffix default to the ANSi renderer (e.g. ICE or CIA). -AnsiLove/C is capabable of processing: +AnsiLove/C is capable of processing: -- [SAUCE][14] records +- [SAUCE][12] records - DOS and Amiga fonts (embedded binary dump) - iCE colors @@ -222,6 +224,9 @@ Setting the bits to `9` will render the 9th column of block characters, so the output will look like it is displayed in real textmode. +See the "Memory Map" section of the [Monochrome Display Adapter notes][13] +for more information. + ## Rendering Mode `mode` can be (all case-sensitive): @@ -266,13 +271,13 @@ # License -AnsiLove/C is released under the BSD 2-Clause License. See the +AnsiLove/C is released under the BSD 2-Clause license. See the `LICENSE` file for details. # Authors -AnsiLove/C is developed by Stefan Vogt ([@ByteProject][15]), Brian Cassidy -([@bricas][16]) and Frederic Cambus ([@fcambus][17]). +AnsiLove/C is developed by Stefan Vogt ([@ByteProject][14]), Brian Cassidy +([@bricas][15]) and Frederic Cambus ([@fcambus][16]). # Resources @@ -280,20 +285,19 @@ GitHub: https://github.com/ansilove/ansilove -[1]: https://api.travis-ci.org/ansilove/ansilove.png?branch=master -[2]: https://travis-ci.org/ansilove/ansilove -[3]: https://www.ansilove.org -[4]: https://github.com/ansilove/libansilove -[5]: https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/graphics/ansilove -[6]: https://pkgsrc.se/graphics/ansilove -[7]: https://www.freshports.org/graphics/ansilove/ -[8]: https://packages.debian.org/search?keywords=ansilove -[9]: https://packages.ubuntu.com/search?keywords=ansilove -[10]: https://software.opensuse.org/package/ansilove -[11]: https://dev.getsol.us/source/ansilove/ -[12]: https://sourceforge.net/projects/tundradraw/ -[13]: https://github.com/radman1/xbin -[14]: https://github.com/radman1/sauce -[15]: https://github.com/ByteProject -[16]: https://github.com/bricas -[17]: https://github.com/fcambus +[1]: https://www.ansilove.org +[2]: https://github.com/ansilove/libansilove +[3]: https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/graphics/ansilove +[4]: https://pkgsrc.se/graphics/ansilove +[5]: https://www.freshports.org/graphics/ansilove/ +[6]: https://packages.debian.org/search?keywords=ansilove +[7]: https://packages.ubuntu.com/search?keywords=ansilove +[8]: https://software.opensuse.org/package/ansilove +[9]: https://dev.getsol.us/source/ansilove/ +[10]: https://sourceforge.net/projects/tundradraw/ +[11]: https://github.com/radman1/xbin +[12]: https://github.com/radman1/sauce +[13]: https://www.seasip.info/VintagePC/mda.html#memmap +[14]: https://github.com/ByteProject +[15]: https://github.com/bricas +[16]: https://github.com/fcambus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/ansilove.c new/ansilove-4.1.6/src/ansilove.c --- old/ansilove-4.1.5/src/ansilove.c 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/ansilove.c 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * ansilove.c - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #include <sys/time.h> @@ -51,7 +53,7 @@ version(void) { fprintf(stdout, "AnsiLove/C %s - ANSI / ASCII art to PNG converter\n" - "Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and " + "Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and " "Frederic Cambus.\n", VERSION); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/config.h new/ansilove-4.1.6/src/config.h --- old/ansilove-4.1.5/src/config.h 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/config.h 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * config.h - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #ifndef CONFIG_H @@ -16,7 +18,7 @@ #include <stdint.h> /* configuration defines */ -#define VERSION "4.1.5" +#define VERSION "4.1.6" enum { FONTS = 38, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/fonts.h new/ansilove-4.1.6/src/fonts.h --- old/ansilove-4.1.5/src/fonts.h 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/fonts.h 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * fonts.h - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #ifndef FONTS_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/sauce.c new/ansilove-4.1.6/src/sauce.c --- old/ansilove-4.1.5/src/sauce.c 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/sauce.c 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * sauce.c - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #include <stdint.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/sauce.h new/ansilove-4.1.6/src/sauce.h --- old/ansilove-4.1.5/src/sauce.h 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/sauce.h 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * sauce.h - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #ifndef SAUCE_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/seccomp.h new/ansilove-4.1.6/src/seccomp.h --- old/ansilove-4.1.5/src/seccomp.h 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/seccomp.h 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * seccomp.h - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2019-2020, Frederic Cambus + * Copyright (c) 2019-2021, Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #ifndef SECCOMP_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/strtolower.c new/ansilove-4.1.6/src/strtolower.c --- old/ansilove-4.1.5/src/strtolower.c 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/strtolower.c 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * strtolower.c - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #include <ctype.h> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/strtolower.h new/ansilove-4.1.6/src/strtolower.h --- old/ansilove-4.1.5/src/strtolower.h 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/strtolower.h 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * strtolower.h - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #ifndef STRTOLOWER_H diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/types.c new/ansilove-4.1.6/src/types.c --- old/ansilove-4.1.5/src/types.c 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/types.c 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * types.c - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #include "ansilove.h" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ansilove-4.1.5/src/types.h new/ansilove-4.1.6/src/types.h --- old/ansilove-4.1.5/src/types.h 2021-02-14 22:45:31.000000000 +0100 +++ new/ansilove-4.1.6/src/types.h 2022-02-10 21:18:19.000000000 +0100 @@ -1,13 +1,15 @@ /* * types.h - * Ansilove 4.1.5 + * Ansilove 4.1.6 * https://www.ansilove.org * - * Copyright (c) 2011-2021 Stefan Vogt, Brian Cassidy, and Frederic Cambus + * Copyright (c) 2011-2022 Stefan Vogt, Brian Cassidy, and Frederic Cambus * All rights reserved. * - * Ansilove is licensed under the BSD 2-Clause License. + * Ansilove is licensed under the BSD 2-Clause license. * See LICENSE file for details. + * + * SPDX-License-Identifier: BSD-2-Clause */ #ifndef TYPES_H Binary files old/ansilove-4.1.5/tests/sauce.txt and new/ansilove-4.1.6/tests/sauce.txt differ
