From b6cdcece23b1ed1906c07f83433b33a87dce180d Mon Sep 17 00:00:00 2001 From: Ghabry Date: Fri, 4 Apr 2025 19:11:53 +0200 Subject: [PATCH 1/2] Update the AUTHORS file Fix #501 --- AUTHORS.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/AUTHORS.md b/AUTHORS.md index dc12d6310..3d4e7500a 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -1,9 +1,26 @@ liblcf authors ============== +* Alberto Leon Meaños (albeleon) * Alejandro Marzini (vgvgf) +* Antidote +* BSzili * Carsten Teibes (carstene1ns) +* Christian Breitwieser (ChrisBreiti) +* Diego Pedraza (zegeri) +* Dmytro Kushnariov (rohkea) +* Florian Ignaz "Spatzenfärber" Eßl (florianessl) * Gabriel Kind (Ghabry) +* gameblabla * Glynn Clements (glynnc) -* Matthew Fioravante (fmatthew5876) +* lumiscosity +* Mariano Javier Suligoy (MarianoGNU) +* Masanori Kakura (kakurasan) +* Matthew Fioravante (mateofio) * Paulo "Zhek" Vizcaino (paulo_v) +* Primekick +* rueter37 +* scurest +* SmiVan +* Takeshi Watanabe (takecheeze) +* ToolMan2k From 3585af5908e24b239b2ece73dcd9917db46385cc Mon Sep 17 00:00:00 2001 From: Ghabry Date: Fri, 4 Apr 2025 19:12:34 +0200 Subject: [PATCH 2/2] Update version to 0.8.1 --- CMakeLists.txt | 2 +- COPYING | 2 +- README.md | 8 ++++---- configure.ac | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a50f81e2e..5ba56acef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16...3.28 FATAL_ERROR) -project(liblcf VERSION 0.8 LANGUAGES CXX) +project(liblcf VERSION 0.8.1 LANGUAGES CXX) list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/builds/cmake/Modules) include(ConfigureWindows) diff --git a/COPYING b/COPYING index 0ecc61116..770fa46ba 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2014-2023 liblcf authors +Copyright (c) 2014-2025 liblcf authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index f1c0ab6b4..6be694e6d 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ Building requirements: Step-by-step instructions: - tar xf liblcf-0.8.tar.xz # unpack the tarball - cd liblcf-0.8 # enter in the package directory + tar xf liblcf-0.8.1.tar.xz # unpack the tarball + cd liblcf-0.8.1 # enter in the package directory ./configure --prefix /usr # find libraries, set options make # compile the library sudo make install # install system-wide @@ -72,8 +72,8 @@ Building requirements: Step-by-step instructions: - tar xf liblcf-0.8.tar.xz # unpack the tarball - cd liblcf-0.8 # enter in the package directory + tar xf liblcf-0.8.1.tar.xz # unpack the tarball + cd liblcf-0.8.1 # enter in the package directory cmake . -DCMAKE_BUILD_TYPE=Release # configure project cmake --build . # compile the library sudo cmake --build . --target install # install system-wide diff --git a/configure.ac b/configure.ac index b5f87cc66..d8d751d31 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([liblcf],[0.8],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/]) +AC_INIT([liblcf],[0.8.1],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/]) AC_CONFIG_AUX_DIR([builds/autoconf]) AM_INIT_AUTOMAKE([1.11.4 foreign subdir-objects -Wall dist-xz])