diff --git a/AUTHORS.md b/AUTHORS.md index dc12d631..3d4e7500 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 diff --git a/CMakeLists.txt b/CMakeLists.txt index a50f81e2..5ba56ace 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 0ecc6111..770fa46b 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 f1c0ab6b..6be694e6 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 b5f87cc6..d8d751d3 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])