Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion AUTHORS.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down