From b840c7acff9c0c8066002f12da9a7f1da9d3dcfb Mon Sep 17 00:00:00 2001 From: Ghabry Date: Wed, 26 Apr 2023 17:55:49 +0200 Subject: [PATCH 1/5] Release helper: remove updating of years from source files --- builds/release-helper.sh | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/builds/release-helper.sh b/builds/release-helper.sh index e9bd0ddf..f435ac72 100755 --- a/builds/release-helper.sh +++ b/builds/release-helper.sh @@ -38,23 +38,6 @@ fi echo "Updating License…" sed -i "1,1 s/2014-2[0-9][0-9][0-9]/2014-$year/" COPYING -# update copyright years, but filter out external sources -echo "Updating source files…" - -find src tests -maxdepth 3 \ - \( -path src/generated -o -path src/lcf/third_party \) -prune \ - -o -type f -a \( -name "*.h" -o -name "*.cpp" \) \ - -a \! \( -name "ini*" -o -name "doctest*" \) \ - -exec sed -i "/liblcf\. Copyright/,1 s/2[0-9][0-9][0-9]/$year/" {} + - -find tools -maxdepth 1 -type f -a \( -name "*.h" -o -name "*.cpp" \) \ - -exec sed -i "/Copyright/,1 s/2[0-9][0-9][0-9]/$year/" {} + - -# updating header for generated source files -grep -q "liblcf\. Copyright.*$year" generator/templates/copyright.tmpl || - echo " -> You need to run the generator." -sed -i "/liblcf\. Copyright/,1 s/2[0-9][0-9][0-9]/$year/" generator/templates/copyright.tmpl - cat << EOF If everything is ready and committed, use these commands to publish the git tag: From 620a30fe96e8496487ef053f780b52e88966a8c1 Mon Sep 17 00:00:00 2001 From: Ghabry Date: Wed, 26 Apr 2023 21:08:15 +0200 Subject: [PATCH 2/5] Add new files to tarball --- Makefile.am | 17 ++++++++++++++--- builds/release-helper.sh | 5 ++++- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 9659c882..33662a74 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,9 @@ ACLOCAL_AMFLAGS = --install -I builds/autoconf/m4 EXTRA_DIST = AUTHORS.md README.md generator \ - CMakeLists.txt builds/cmake mime builds/Doxyfile + CMakeLists.txt CMakePresets.json builds/cmake \ + mime builds/Doxyfile builds/release-helper.sh \ + builds/sources2buildsystem.pl pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = builds/liblcf.pc @@ -320,12 +322,21 @@ lcfthirdpartyinclude_HEADERS = \ nodist_lcfinclude_HEADERS = src/lcf/config.h +# These are used by CMake +EXTRA_DIST += \ + bench/readldb.cpp + check_PROGRAMS = test_runner test_runner_SOURCES = \ + tests/dbarray.cpp \ + tests/dbbitarray.cpp \ + tests/dbstring.cpp \ tests/doctest.h \ - tests/time_stamp.cpp \ tests/flag_set.cpp \ - tests/test_main.cpp + tests/test_main.cpp \ + tests/time_stamp.cpp \ + tests/span.cpp \ + tests/string_view.cpp test_runner_CPPFLAGS = \ -I$(srcdir)/src \ -I$(srcdir)/src/generated diff --git a/builds/release-helper.sh b/builds/release-helper.sh index f435ac72..1f16abe8 100755 --- a/builds/release-helper.sh +++ b/builds/release-helper.sh @@ -11,9 +11,10 @@ version=$1 if [[ ! -z $version ]]; then - if [[ ! $version =~ ^[0-9]\.[0-9]\.[0-9]$ ]]; then + if [[ ! $version =~ ^[0-9](\.[0-9]){1,3}$ ]]; then echo "Invalid version argument. Only digits and dots allowed." + echo "Example: 0.8 or 0.7.0.1" exit 1 fi @@ -40,6 +41,8 @@ sed -i "1,1 s/2014-2[0-9][0-9][0-9]/2014-$year/" COPYING cat << EOF +${red}Please check ${bold}README.md${reset}${red} file for whitespace problems.${reset} + If everything is ready and committed, use these commands to publish the git tag: $ git tag -a (-s) $version -m "Codename \"\fancy codename\"" $ git push (-n) --tags upstream From 3c465c0b81536465cd53dd2c20b677f450152d60 Mon Sep 17 00:00:00 2001 From: Ghabry Date: Wed, 26 Apr 2023 21:08:45 +0200 Subject: [PATCH 3/5] Change version to 0.8 --- CMakeLists.txt | 2 +- COPYING | 2 +- README.md | 8 ++++---- configure.ac | 2 +- generator/templates/copyright.tmpl | 2 +- src/dbstring_struct.cpp | 2 +- src/encoder.cpp | 2 +- src/generated/fwd_struct_impl.h | 2 +- src/generated/lcf/ldb/chunks.h | 2 +- src/generated/lcf/lmt/chunks.h | 2 +- src/generated/lcf/lmu/chunks.h | 2 +- src/generated/lcf/lsd/chunks.h | 2 +- src/generated/lcf/rpg/actor.h | 2 +- src/generated/lcf/rpg/animation.h | 2 +- src/generated/lcf/rpg/animationcelldata.h | 2 +- src/generated/lcf/rpg/animationframe.h | 2 +- src/generated/lcf/rpg/animationtiming.h | 2 +- src/generated/lcf/rpg/attribute.h | 2 +- src/generated/lcf/rpg/battlecommand.h | 2 +- src/generated/lcf/rpg/battlecommands.h | 2 +- src/generated/lcf/rpg/battleranimation.h | 2 +- src/generated/lcf/rpg/battleranimationitemskill.h | 2 +- src/generated/lcf/rpg/battleranimationpose.h | 2 +- src/generated/lcf/rpg/battleranimationweapon.h | 2 +- src/generated/lcf/rpg/chipset.h | 2 +- src/generated/lcf/rpg/class.h | 2 +- src/generated/lcf/rpg/commonevent.h | 2 +- src/generated/lcf/rpg/database.h | 2 +- src/generated/lcf/rpg/encounter.h | 2 +- src/generated/lcf/rpg/enemy.h | 2 +- src/generated/lcf/rpg/enemyaction.h | 2 +- src/generated/lcf/rpg/equipment.h | 2 +- src/generated/lcf/rpg/event.h | 2 +- src/generated/lcf/rpg/eventcommand.h | 2 +- src/generated/lcf/rpg/eventpage.h | 2 +- src/generated/lcf/rpg/eventpagecondition.h | 2 +- src/generated/lcf/rpg/fwd.h | 2 +- src/generated/lcf/rpg/item.h | 2 +- src/generated/lcf/rpg/learning.h | 2 +- src/generated/lcf/rpg/map.h | 2 +- src/generated/lcf/rpg/mapinfo.h | 2 +- src/generated/lcf/rpg/movecommand.h | 2 +- src/generated/lcf/rpg/moveroute.h | 2 +- src/generated/lcf/rpg/music.h | 2 +- src/generated/lcf/rpg/parameters.h | 2 +- src/generated/lcf/rpg/rect.h | 2 +- src/generated/lcf/rpg/save.h | 2 +- src/generated/lcf/rpg/saveactor.h | 2 +- src/generated/lcf/rpg/savecommonevent.h | 2 +- src/generated/lcf/rpg/saveeasyrpgdata.h | 2 +- src/generated/lcf/rpg/saveeasyrpgtext.h | 2 +- src/generated/lcf/rpg/saveeasyrpgwindow.h | 2 +- src/generated/lcf/rpg/saveeventexecframe.h | 2 +- src/generated/lcf/rpg/saveeventexecstate.h | 2 +- src/generated/lcf/rpg/saveinventory.h | 2 +- src/generated/lcf/rpg/savemapevent.h | 2 +- src/generated/lcf/rpg/savemapeventbase.h | 2 +- src/generated/lcf/rpg/savemapinfo.h | 2 +- src/generated/lcf/rpg/savepanorama.h | 2 +- src/generated/lcf/rpg/savepartylocation.h | 2 +- src/generated/lcf/rpg/savepicture.h | 2 +- src/generated/lcf/rpg/savescreen.h | 2 +- src/generated/lcf/rpg/savesystem.h | 2 +- src/generated/lcf/rpg/savetarget.h | 2 +- src/generated/lcf/rpg/savetitle.h | 2 +- src/generated/lcf/rpg/savevehiclelocation.h | 2 +- src/generated/lcf/rpg/skill.h | 2 +- src/generated/lcf/rpg/sound.h | 2 +- src/generated/lcf/rpg/start.h | 2 +- src/generated/lcf/rpg/state.h | 2 +- src/generated/lcf/rpg/switch.h | 2 +- src/generated/lcf/rpg/system.h | 2 +- src/generated/lcf/rpg/terms.h | 2 +- src/generated/lcf/rpg/terrain.h | 2 +- src/generated/lcf/rpg/testbattler.h | 2 +- src/generated/lcf/rpg/treemap.h | 2 +- src/generated/lcf/rpg/troop.h | 2 +- src/generated/lcf/rpg/troopmember.h | 2 +- src/generated/lcf/rpg/trooppage.h | 2 +- src/generated/lcf/rpg/trooppagecondition.h | 2 +- src/generated/lcf/rpg/variable.h | 2 +- src/generated/ldb_actor.cpp | 2 +- src/generated/ldb_animation.cpp | 2 +- src/generated/ldb_animationcelldata.cpp | 2 +- src/generated/ldb_animationframe.cpp | 2 +- src/generated/ldb_animationtiming.cpp | 2 +- src/generated/ldb_attribute.cpp | 2 +- src/generated/ldb_battlecommand.cpp | 2 +- src/generated/ldb_battlecommands.cpp | 2 +- src/generated/ldb_battleranimation.cpp | 2 +- src/generated/ldb_battleranimationitemskill.cpp | 2 +- src/generated/ldb_battleranimationpose.cpp | 2 +- src/generated/ldb_battleranimationweapon.cpp | 2 +- src/generated/ldb_chipset.cpp | 2 +- src/generated/ldb_class.cpp | 2 +- src/generated/ldb_commonevent.cpp | 2 +- src/generated/ldb_database.cpp | 2 +- src/generated/ldb_enemy.cpp | 2 +- src/generated/ldb_enemyaction.cpp | 2 +- src/generated/ldb_item.cpp | 2 +- src/generated/ldb_learning.cpp | 2 +- src/generated/ldb_music.cpp | 2 +- src/generated/ldb_skill.cpp | 2 +- src/generated/ldb_sound.cpp | 2 +- src/generated/ldb_state.cpp | 2 +- src/generated/ldb_switch.cpp | 2 +- src/generated/ldb_system.cpp | 2 +- src/generated/ldb_terms.cpp | 2 +- src/generated/ldb_terrain.cpp | 2 +- src/generated/ldb_terrain_flags.h | 2 +- src/generated/ldb_testbattler.cpp | 2 +- src/generated/ldb_troop.cpp | 2 +- src/generated/ldb_troopmember.cpp | 2 +- src/generated/ldb_trooppage.cpp | 2 +- src/generated/ldb_trooppagecondition.cpp | 2 +- src/generated/ldb_trooppagecondition_flags.h | 2 +- src/generated/ldb_variable.cpp | 2 +- src/generated/lmt_encounter.cpp | 2 +- src/generated/lmt_mapinfo.cpp | 2 +- src/generated/lmt_start.cpp | 2 +- src/generated/lmu_event.cpp | 2 +- src/generated/lmu_eventpage.cpp | 2 +- src/generated/lmu_eventpagecondition.cpp | 2 +- src/generated/lmu_eventpagecondition_flags.h | 2 +- src/generated/lmu_map.cpp | 2 +- src/generated/lmu_moveroute.cpp | 2 +- src/generated/lsd_save.cpp | 2 +- src/generated/lsd_saveactor.cpp | 2 +- src/generated/lsd_savecommonevent.cpp | 2 +- src/generated/lsd_saveeasyrpgdata.cpp | 2 +- src/generated/lsd_saveeasyrpgtext.cpp | 2 +- src/generated/lsd_saveeasyrpgtext_flags.h | 2 +- src/generated/lsd_saveeasyrpgwindow.cpp | 2 +- src/generated/lsd_saveeasyrpgwindow_flags.h | 2 +- src/generated/lsd_saveeventexecframe.cpp | 2 +- src/generated/lsd_saveeventexecstate.cpp | 2 +- src/generated/lsd_saveinventory.cpp | 2 +- src/generated/lsd_savemapevent.cpp | 2 +- src/generated/lsd_savemapeventbase.cpp | 2 +- src/generated/lsd_savemapinfo.cpp | 2 +- src/generated/lsd_savepanorama.cpp | 2 +- src/generated/lsd_savepartylocation.cpp | 2 +- src/generated/lsd_savepicture.cpp | 2 +- src/generated/lsd_savepicture_flags.h | 2 +- src/generated/lsd_savescreen.cpp | 2 +- src/generated/lsd_savesystem.cpp | 2 +- src/generated/lsd_savetarget.cpp | 2 +- src/generated/lsd_savetitle.cpp | 2 +- src/generated/lsd_savevehiclelocation.cpp | 2 +- src/generated/rpg_actor.cpp | 2 +- src/generated/rpg_animation.cpp | 2 +- src/generated/rpg_animationcelldata.cpp | 2 +- src/generated/rpg_animationframe.cpp | 2 +- src/generated/rpg_animationtiming.cpp | 2 +- src/generated/rpg_attribute.cpp | 2 +- src/generated/rpg_battlecommand.cpp | 2 +- src/generated/rpg_battlecommands.cpp | 2 +- src/generated/rpg_battleranimation.cpp | 2 +- src/generated/rpg_battleranimationitemskill.cpp | 2 +- src/generated/rpg_battleranimationpose.cpp | 2 +- src/generated/rpg_battleranimationweapon.cpp | 2 +- src/generated/rpg_chipset.cpp | 2 +- src/generated/rpg_class.cpp | 2 +- src/generated/rpg_commonevent.cpp | 2 +- src/generated/rpg_database.cpp | 2 +- src/generated/rpg_encounter.cpp | 2 +- src/generated/rpg_enemy.cpp | 2 +- src/generated/rpg_enemyaction.cpp | 2 +- src/generated/rpg_enums.cpp | 2 +- src/generated/rpg_equipment.cpp | 2 +- src/generated/rpg_event.cpp | 2 +- src/generated/rpg_eventcommand.cpp | 2 +- src/generated/rpg_eventpage.cpp | 2 +- src/generated/rpg_eventpagecondition.cpp | 2 +- src/generated/rpg_item.cpp | 2 +- src/generated/rpg_learning.cpp | 2 +- src/generated/rpg_map.cpp | 2 +- src/generated/rpg_mapinfo.cpp | 2 +- src/generated/rpg_movecommand.cpp | 2 +- src/generated/rpg_moveroute.cpp | 2 +- src/generated/rpg_music.cpp | 2 +- src/generated/rpg_parameters.cpp | 2 +- src/generated/rpg_rect.cpp | 2 +- src/generated/rpg_save.cpp | 2 +- src/generated/rpg_saveactor.cpp | 2 +- src/generated/rpg_savecommonevent.cpp | 2 +- src/generated/rpg_saveeasyrpgdata.cpp | 2 +- src/generated/rpg_saveeasyrpgtext.cpp | 2 +- src/generated/rpg_saveeasyrpgwindow.cpp | 2 +- src/generated/rpg_saveeventexecframe.cpp | 2 +- src/generated/rpg_saveeventexecstate.cpp | 2 +- src/generated/rpg_saveinventory.cpp | 2 +- src/generated/rpg_savemapevent.cpp | 2 +- src/generated/rpg_savemapeventbase.cpp | 2 +- src/generated/rpg_savemapinfo.cpp | 2 +- src/generated/rpg_savepanorama.cpp | 2 +- src/generated/rpg_savepartylocation.cpp | 2 +- src/generated/rpg_savepicture.cpp | 2 +- src/generated/rpg_savescreen.cpp | 2 +- src/generated/rpg_savesystem.cpp | 2 +- src/generated/rpg_savetarget.cpp | 2 +- src/generated/rpg_savetitle.cpp | 2 +- src/generated/rpg_savevehiclelocation.cpp | 2 +- src/generated/rpg_skill.cpp | 2 +- src/generated/rpg_sound.cpp | 2 +- src/generated/rpg_start.cpp | 2 +- src/generated/rpg_state.cpp | 2 +- src/generated/rpg_switch.cpp | 2 +- src/generated/rpg_system.cpp | 2 +- src/generated/rpg_terms.cpp | 2 +- src/generated/rpg_terrain.cpp | 2 +- src/generated/rpg_testbattler.cpp | 2 +- src/generated/rpg_treemap.cpp | 2 +- src/generated/rpg_troop.cpp | 2 +- src/generated/rpg_troopmember.cpp | 2 +- src/generated/rpg_trooppage.cpp | 2 +- src/generated/rpg_trooppagecondition.cpp | 2 +- src/generated/rpg_variable.cpp | 2 +- src/lcf/context.h | 2 +- src/lcf/dbarray.h | 2 +- src/lcf/dbarrayalloc.h | 2 +- src/lcf/dbbitarray.h | 2 +- src/lcf/dbstring.h | 2 +- src/lcf/encoder.h | 2 +- src/lcf/enum_tags.h | 2 +- src/lcf/flag_set.h | 2 +- src/lcf/ldb/reader.h | 2 +- src/lcf/lmt/reader.h | 2 +- src/lcf/lmu/reader.h | 2 +- src/lcf/lsd/reader.h | 2 +- src/lcf/reader_lcf.h | 2 +- src/lcf/reader_util.h | 2 +- src/lcf/reader_xml.h | 2 +- src/lcf/saveopt.h | 2 +- src/lcf/scope_guard.h | 2 +- src/lcf/span.h | 2 +- src/lcf/string_view.h | 2 +- src/lcf/writer_lcf.h | 2 +- src/lcf/writer_xml.h | 2 +- src/ldb_equipment.cpp | 2 +- src/ldb_eventcommand.cpp | 2 +- src/ldb_parameters.cpp | 2 +- src/ldb_reader.cpp | 2 +- src/lmt_reader.cpp | 2 +- src/lmt_rect.cpp | 2 +- src/lmt_treemap.cpp | 2 +- src/lmu_movecommand.cpp | 2 +- src/lmu_reader.cpp | 2 +- src/lsd_reader.cpp | 2 +- src/reader_flags.cpp | 2 +- src/reader_lcf.cpp | 2 +- src/reader_struct.h | 2 +- src/reader_struct_impl.h | 2 +- src/reader_util.cpp | 2 +- src/reader_xml.cpp | 2 +- src/rpg_setup.cpp | 2 +- src/rpg_terms.cpp | 2 +- src/writer_lcf.cpp | 2 +- src/writer_xml.cpp | 2 +- tests/dbarray.cpp | 2 +- tests/dbbitarray.cpp | 2 +- tests/dbstring.cpp | 2 +- tests/flag_set.cpp | 2 +- tests/span.cpp | 2 +- tests/string_view.cpp | 2 +- tests/test_main.cpp | 2 +- tests/time_stamp.cpp | 2 +- tools/lcf2xml.cpp | 2 +- tools/lcfstrings.cpp | 2 +- 269 files changed, 272 insertions(+), 272 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c6ad00f3..f4fbbd07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ if(${CMAKE_VERSION} VERSION_LESS 3.12) cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}) endif() -project(liblcf VERSION 0.7.0 LANGUAGES CXX) +project(liblcf VERSION 0.8 LANGUAGES CXX) # Compilation options option(BUILD_SHARED_LIBS "Build shared library, disable for building the static library (default: ON)" ON) diff --git a/COPYING b/COPYING index fb1e6e92..0ecc6111 100644 --- a/COPYING +++ b/COPYING @@ -1,4 +1,4 @@ -Copyright (c) 2014-2021 liblcf authors +Copyright (c) 2014-2023 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 08e0b6ff..aa4a1c67 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ Building requirements: Step-by-step instructions: - tar xf liblcf-0.7.0.tar.xz # unpack the tarball - cd liblcf-0.7.0 # enter in the package directory + tar xf liblcf-0.8.tar.xz # unpack the tarball + cd liblcf-0.8 # enter in the package directory ./configure --prefix /usr # find libraries, set options make # compile the library sudo make install # install system-wide @@ -71,8 +71,8 @@ Building requirements: Step-by-step instructions: - tar xf liblcf-0.7.0.tar.xz # unpack the tarball - cd liblcf-0.7.0 # enter in the package directory + tar xf liblcf-0.8.tar.xz # unpack the tarball + cd liblcf-0.8 # 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 8922e5aa..c376464a 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.7.0],[https://github.com/EasyRPG/liblcf/issues],[liblcf],[https://easyrpg.org/]) +AC_INIT([liblcf],[0.8],[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]) diff --git a/generator/templates/copyright.tmpl b/generator/templates/copyright.tmpl index 9d011e26..06bc55fa 100644 --- a/generator/templates/copyright.tmpl +++ b/generator/templates/copyright.tmpl @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/dbstring_struct.cpp b/src/dbstring_struct.cpp index 96e68dac..8a9dced3 100644 --- a/src/dbstring_struct.cpp +++ b/src/dbstring_struct.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/encoder.cpp b/src/encoder.cpp index 773adf3f..859c11bc 100644 --- a/src/encoder.cpp +++ b/src/encoder.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/fwd_struct_impl.h b/src/generated/fwd_struct_impl.h index 748daef0..51479244 100644 --- a/src/generated/fwd_struct_impl.h +++ b/src/generated/fwd_struct_impl.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/ldb/chunks.h b/src/generated/lcf/ldb/chunks.h index de6809d7..474441f5 100644 --- a/src/generated/lcf/ldb/chunks.h +++ b/src/generated/lcf/ldb/chunks.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/lmt/chunks.h b/src/generated/lcf/lmt/chunks.h index 462f66bb..4acb9392 100644 --- a/src/generated/lcf/lmt/chunks.h +++ b/src/generated/lcf/lmt/chunks.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/lmu/chunks.h b/src/generated/lcf/lmu/chunks.h index 6d1fdc68..c78e456e 100644 --- a/src/generated/lcf/lmu/chunks.h +++ b/src/generated/lcf/lmu/chunks.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/lsd/chunks.h b/src/generated/lcf/lsd/chunks.h index a4927a5a..3df97441 100644 --- a/src/generated/lcf/lsd/chunks.h +++ b/src/generated/lcf/lsd/chunks.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/actor.h b/src/generated/lcf/rpg/actor.h index 39844697..88707d47 100644 --- a/src/generated/lcf/rpg/actor.h +++ b/src/generated/lcf/rpg/actor.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/animation.h b/src/generated/lcf/rpg/animation.h index 1af17395..66e3fd0a 100644 --- a/src/generated/lcf/rpg/animation.h +++ b/src/generated/lcf/rpg/animation.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/animationcelldata.h b/src/generated/lcf/rpg/animationcelldata.h index 7af4eba1..4031c6eb 100644 --- a/src/generated/lcf/rpg/animationcelldata.h +++ b/src/generated/lcf/rpg/animationcelldata.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/animationframe.h b/src/generated/lcf/rpg/animationframe.h index 171335d0..37088fa2 100644 --- a/src/generated/lcf/rpg/animationframe.h +++ b/src/generated/lcf/rpg/animationframe.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/animationtiming.h b/src/generated/lcf/rpg/animationtiming.h index 64174cff..52d688cb 100644 --- a/src/generated/lcf/rpg/animationtiming.h +++ b/src/generated/lcf/rpg/animationtiming.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/attribute.h b/src/generated/lcf/rpg/attribute.h index 4dbc62c6..e1f6ee5d 100644 --- a/src/generated/lcf/rpg/attribute.h +++ b/src/generated/lcf/rpg/attribute.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/battlecommand.h b/src/generated/lcf/rpg/battlecommand.h index 24245a55..750624da 100644 --- a/src/generated/lcf/rpg/battlecommand.h +++ b/src/generated/lcf/rpg/battlecommand.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/battlecommands.h b/src/generated/lcf/rpg/battlecommands.h index e9496a95..90e6a1fe 100644 --- a/src/generated/lcf/rpg/battlecommands.h +++ b/src/generated/lcf/rpg/battlecommands.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/battleranimation.h b/src/generated/lcf/rpg/battleranimation.h index 2cae47b9..091adaea 100644 --- a/src/generated/lcf/rpg/battleranimation.h +++ b/src/generated/lcf/rpg/battleranimation.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/battleranimationitemskill.h b/src/generated/lcf/rpg/battleranimationitemskill.h index 3605f3af..28b5f533 100644 --- a/src/generated/lcf/rpg/battleranimationitemskill.h +++ b/src/generated/lcf/rpg/battleranimationitemskill.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/battleranimationpose.h b/src/generated/lcf/rpg/battleranimationpose.h index db808955..13a44473 100644 --- a/src/generated/lcf/rpg/battleranimationpose.h +++ b/src/generated/lcf/rpg/battleranimationpose.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/battleranimationweapon.h b/src/generated/lcf/rpg/battleranimationweapon.h index 54f76a0c..5ac08782 100644 --- a/src/generated/lcf/rpg/battleranimationweapon.h +++ b/src/generated/lcf/rpg/battleranimationweapon.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/chipset.h b/src/generated/lcf/rpg/chipset.h index ce0eef6c..2c33c3a0 100644 --- a/src/generated/lcf/rpg/chipset.h +++ b/src/generated/lcf/rpg/chipset.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/class.h b/src/generated/lcf/rpg/class.h index ef4a28ca..a94d62c8 100644 --- a/src/generated/lcf/rpg/class.h +++ b/src/generated/lcf/rpg/class.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/commonevent.h b/src/generated/lcf/rpg/commonevent.h index 261a3844..a2cd42c2 100644 --- a/src/generated/lcf/rpg/commonevent.h +++ b/src/generated/lcf/rpg/commonevent.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/database.h b/src/generated/lcf/rpg/database.h index 4a15f4f9..ef746d61 100644 --- a/src/generated/lcf/rpg/database.h +++ b/src/generated/lcf/rpg/database.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/encounter.h b/src/generated/lcf/rpg/encounter.h index 8bfdf81e..7dc22a89 100644 --- a/src/generated/lcf/rpg/encounter.h +++ b/src/generated/lcf/rpg/encounter.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/enemy.h b/src/generated/lcf/rpg/enemy.h index 3d18d5fe..9b633a79 100644 --- a/src/generated/lcf/rpg/enemy.h +++ b/src/generated/lcf/rpg/enemy.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/enemyaction.h b/src/generated/lcf/rpg/enemyaction.h index b96002c1..92ebfc6a 100644 --- a/src/generated/lcf/rpg/enemyaction.h +++ b/src/generated/lcf/rpg/enemyaction.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/equipment.h b/src/generated/lcf/rpg/equipment.h index ff795305..eaf86c71 100644 --- a/src/generated/lcf/rpg/equipment.h +++ b/src/generated/lcf/rpg/equipment.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/event.h b/src/generated/lcf/rpg/event.h index 35812f33..2cef12a3 100644 --- a/src/generated/lcf/rpg/event.h +++ b/src/generated/lcf/rpg/event.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/eventcommand.h b/src/generated/lcf/rpg/eventcommand.h index 9b35869b..d882baef 100644 --- a/src/generated/lcf/rpg/eventcommand.h +++ b/src/generated/lcf/rpg/eventcommand.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/eventpage.h b/src/generated/lcf/rpg/eventpage.h index 07bb3366..2b79f9fe 100644 --- a/src/generated/lcf/rpg/eventpage.h +++ b/src/generated/lcf/rpg/eventpage.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/eventpagecondition.h b/src/generated/lcf/rpg/eventpagecondition.h index f098e035..35901f09 100644 --- a/src/generated/lcf/rpg/eventpagecondition.h +++ b/src/generated/lcf/rpg/eventpagecondition.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/fwd.h b/src/generated/lcf/rpg/fwd.h index ceef54df..6495658b 100644 --- a/src/generated/lcf/rpg/fwd.h +++ b/src/generated/lcf/rpg/fwd.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/item.h b/src/generated/lcf/rpg/item.h index ee8c401f..a7ee0b7c 100644 --- a/src/generated/lcf/rpg/item.h +++ b/src/generated/lcf/rpg/item.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/learning.h b/src/generated/lcf/rpg/learning.h index e63046ef..99291b92 100644 --- a/src/generated/lcf/rpg/learning.h +++ b/src/generated/lcf/rpg/learning.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/map.h b/src/generated/lcf/rpg/map.h index 622eb293..5c9ab926 100644 --- a/src/generated/lcf/rpg/map.h +++ b/src/generated/lcf/rpg/map.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/mapinfo.h b/src/generated/lcf/rpg/mapinfo.h index 06ea219a..58915f4f 100644 --- a/src/generated/lcf/rpg/mapinfo.h +++ b/src/generated/lcf/rpg/mapinfo.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/movecommand.h b/src/generated/lcf/rpg/movecommand.h index ba4d6824..f3bed318 100644 --- a/src/generated/lcf/rpg/movecommand.h +++ b/src/generated/lcf/rpg/movecommand.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/moveroute.h b/src/generated/lcf/rpg/moveroute.h index ea79e3cc..339c28f5 100644 --- a/src/generated/lcf/rpg/moveroute.h +++ b/src/generated/lcf/rpg/moveroute.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/music.h b/src/generated/lcf/rpg/music.h index 526ec697..51a1a2b6 100644 --- a/src/generated/lcf/rpg/music.h +++ b/src/generated/lcf/rpg/music.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/parameters.h b/src/generated/lcf/rpg/parameters.h index b3d2ce00..772086d1 100644 --- a/src/generated/lcf/rpg/parameters.h +++ b/src/generated/lcf/rpg/parameters.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/rect.h b/src/generated/lcf/rpg/rect.h index c18f8db8..8c44cc55 100644 --- a/src/generated/lcf/rpg/rect.h +++ b/src/generated/lcf/rpg/rect.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/save.h b/src/generated/lcf/rpg/save.h index 712bfbe2..5ba879a5 100644 --- a/src/generated/lcf/rpg/save.h +++ b/src/generated/lcf/rpg/save.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveactor.h b/src/generated/lcf/rpg/saveactor.h index fa8acb12..d55e36ae 100644 --- a/src/generated/lcf/rpg/saveactor.h +++ b/src/generated/lcf/rpg/saveactor.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savecommonevent.h b/src/generated/lcf/rpg/savecommonevent.h index d438d64a..f524bbfc 100644 --- a/src/generated/lcf/rpg/savecommonevent.h +++ b/src/generated/lcf/rpg/savecommonevent.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveeasyrpgdata.h b/src/generated/lcf/rpg/saveeasyrpgdata.h index 720a206b..a56876d9 100644 --- a/src/generated/lcf/rpg/saveeasyrpgdata.h +++ b/src/generated/lcf/rpg/saveeasyrpgdata.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveeasyrpgtext.h b/src/generated/lcf/rpg/saveeasyrpgtext.h index b5315eda..f80cd883 100644 --- a/src/generated/lcf/rpg/saveeasyrpgtext.h +++ b/src/generated/lcf/rpg/saveeasyrpgtext.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveeasyrpgwindow.h b/src/generated/lcf/rpg/saveeasyrpgwindow.h index 4cf5cb92..14be9819 100644 --- a/src/generated/lcf/rpg/saveeasyrpgwindow.h +++ b/src/generated/lcf/rpg/saveeasyrpgwindow.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveeventexecframe.h b/src/generated/lcf/rpg/saveeventexecframe.h index ffe80628..636ae357 100644 --- a/src/generated/lcf/rpg/saveeventexecframe.h +++ b/src/generated/lcf/rpg/saveeventexecframe.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveeventexecstate.h b/src/generated/lcf/rpg/saveeventexecstate.h index 77216b07..607ef3f9 100644 --- a/src/generated/lcf/rpg/saveeventexecstate.h +++ b/src/generated/lcf/rpg/saveeventexecstate.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/saveinventory.h b/src/generated/lcf/rpg/saveinventory.h index c24078f6..97d3f248 100644 --- a/src/generated/lcf/rpg/saveinventory.h +++ b/src/generated/lcf/rpg/saveinventory.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savemapevent.h b/src/generated/lcf/rpg/savemapevent.h index 5742c9a2..2407a33a 100644 --- a/src/generated/lcf/rpg/savemapevent.h +++ b/src/generated/lcf/rpg/savemapevent.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savemapeventbase.h b/src/generated/lcf/rpg/savemapeventbase.h index 004e8503..0c773eb2 100644 --- a/src/generated/lcf/rpg/savemapeventbase.h +++ b/src/generated/lcf/rpg/savemapeventbase.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savemapinfo.h b/src/generated/lcf/rpg/savemapinfo.h index 917e2831..60f92d9d 100644 --- a/src/generated/lcf/rpg/savemapinfo.h +++ b/src/generated/lcf/rpg/savemapinfo.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savepanorama.h b/src/generated/lcf/rpg/savepanorama.h index 43a72858..93defcc7 100644 --- a/src/generated/lcf/rpg/savepanorama.h +++ b/src/generated/lcf/rpg/savepanorama.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savepartylocation.h b/src/generated/lcf/rpg/savepartylocation.h index b12fe49b..5ea27995 100644 --- a/src/generated/lcf/rpg/savepartylocation.h +++ b/src/generated/lcf/rpg/savepartylocation.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savepicture.h b/src/generated/lcf/rpg/savepicture.h index 1d568737..e3f424a3 100644 --- a/src/generated/lcf/rpg/savepicture.h +++ b/src/generated/lcf/rpg/savepicture.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savescreen.h b/src/generated/lcf/rpg/savescreen.h index b2a4a8b5..6d0f6c70 100644 --- a/src/generated/lcf/rpg/savescreen.h +++ b/src/generated/lcf/rpg/savescreen.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savesystem.h b/src/generated/lcf/rpg/savesystem.h index d9753a2e..22575b4e 100644 --- a/src/generated/lcf/rpg/savesystem.h +++ b/src/generated/lcf/rpg/savesystem.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savetarget.h b/src/generated/lcf/rpg/savetarget.h index 26462c79..a9f92cee 100644 --- a/src/generated/lcf/rpg/savetarget.h +++ b/src/generated/lcf/rpg/savetarget.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savetitle.h b/src/generated/lcf/rpg/savetitle.h index 1b6adeb2..bc1a81db 100644 --- a/src/generated/lcf/rpg/savetitle.h +++ b/src/generated/lcf/rpg/savetitle.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/savevehiclelocation.h b/src/generated/lcf/rpg/savevehiclelocation.h index e62f8659..daa706a4 100644 --- a/src/generated/lcf/rpg/savevehiclelocation.h +++ b/src/generated/lcf/rpg/savevehiclelocation.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/skill.h b/src/generated/lcf/rpg/skill.h index 01d3f5cb..f659b4c7 100644 --- a/src/generated/lcf/rpg/skill.h +++ b/src/generated/lcf/rpg/skill.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/sound.h b/src/generated/lcf/rpg/sound.h index d293f1dd..a6942fd7 100644 --- a/src/generated/lcf/rpg/sound.h +++ b/src/generated/lcf/rpg/sound.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/start.h b/src/generated/lcf/rpg/start.h index ac1ae322..3a56aad3 100644 --- a/src/generated/lcf/rpg/start.h +++ b/src/generated/lcf/rpg/start.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/state.h b/src/generated/lcf/rpg/state.h index cfbddc04..b962054b 100644 --- a/src/generated/lcf/rpg/state.h +++ b/src/generated/lcf/rpg/state.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/switch.h b/src/generated/lcf/rpg/switch.h index 27f78f8d..1c2571c2 100644 --- a/src/generated/lcf/rpg/switch.h +++ b/src/generated/lcf/rpg/switch.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/system.h b/src/generated/lcf/rpg/system.h index bb1e1dc2..eb9c625a 100644 --- a/src/generated/lcf/rpg/system.h +++ b/src/generated/lcf/rpg/system.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/terms.h b/src/generated/lcf/rpg/terms.h index 58307209..ea815f53 100644 --- a/src/generated/lcf/rpg/terms.h +++ b/src/generated/lcf/rpg/terms.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/terrain.h b/src/generated/lcf/rpg/terrain.h index b9d8db45..1d22ce1a 100644 --- a/src/generated/lcf/rpg/terrain.h +++ b/src/generated/lcf/rpg/terrain.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/testbattler.h b/src/generated/lcf/rpg/testbattler.h index 34f0ecaa..1700ab67 100644 --- a/src/generated/lcf/rpg/testbattler.h +++ b/src/generated/lcf/rpg/testbattler.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/treemap.h b/src/generated/lcf/rpg/treemap.h index a8f1a872..f9b0c3de 100644 --- a/src/generated/lcf/rpg/treemap.h +++ b/src/generated/lcf/rpg/treemap.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/troop.h b/src/generated/lcf/rpg/troop.h index 462234f3..b70c8f44 100644 --- a/src/generated/lcf/rpg/troop.h +++ b/src/generated/lcf/rpg/troop.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/troopmember.h b/src/generated/lcf/rpg/troopmember.h index d3b0c512..4fc68b76 100644 --- a/src/generated/lcf/rpg/troopmember.h +++ b/src/generated/lcf/rpg/troopmember.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/trooppage.h b/src/generated/lcf/rpg/trooppage.h index b79f2248..77d3a660 100644 --- a/src/generated/lcf/rpg/trooppage.h +++ b/src/generated/lcf/rpg/trooppage.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/trooppagecondition.h b/src/generated/lcf/rpg/trooppagecondition.h index a5a0991c..b10c86be 100644 --- a/src/generated/lcf/rpg/trooppagecondition.h +++ b/src/generated/lcf/rpg/trooppagecondition.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lcf/rpg/variable.h b/src/generated/lcf/rpg/variable.h index 101dbee1..c98ed56b 100644 --- a/src/generated/lcf/rpg/variable.h +++ b/src/generated/lcf/rpg/variable.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_actor.cpp b/src/generated/ldb_actor.cpp index 02c852df..5dfdba4d 100644 --- a/src/generated/ldb_actor.cpp +++ b/src/generated/ldb_actor.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_animation.cpp b/src/generated/ldb_animation.cpp index 6802ed33..e137b54f 100644 --- a/src/generated/ldb_animation.cpp +++ b/src/generated/ldb_animation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_animationcelldata.cpp b/src/generated/ldb_animationcelldata.cpp index c71f9cc0..e5db31de 100644 --- a/src/generated/ldb_animationcelldata.cpp +++ b/src/generated/ldb_animationcelldata.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_animationframe.cpp b/src/generated/ldb_animationframe.cpp index 14b5aa23..38ec8487 100644 --- a/src/generated/ldb_animationframe.cpp +++ b/src/generated/ldb_animationframe.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_animationtiming.cpp b/src/generated/ldb_animationtiming.cpp index 4be65da0..9f4854f5 100644 --- a/src/generated/ldb_animationtiming.cpp +++ b/src/generated/ldb_animationtiming.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_attribute.cpp b/src/generated/ldb_attribute.cpp index 831be6f6..169c8e25 100644 --- a/src/generated/ldb_attribute.cpp +++ b/src/generated/ldb_attribute.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_battlecommand.cpp b/src/generated/ldb_battlecommand.cpp index 72d4fdcd..73d280c8 100644 --- a/src/generated/ldb_battlecommand.cpp +++ b/src/generated/ldb_battlecommand.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_battlecommands.cpp b/src/generated/ldb_battlecommands.cpp index 05660fa3..85f1452e 100644 --- a/src/generated/ldb_battlecommands.cpp +++ b/src/generated/ldb_battlecommands.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_battleranimation.cpp b/src/generated/ldb_battleranimation.cpp index 813cdc86..815a8d7f 100644 --- a/src/generated/ldb_battleranimation.cpp +++ b/src/generated/ldb_battleranimation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_battleranimationitemskill.cpp b/src/generated/ldb_battleranimationitemskill.cpp index 935e93e7..2ae5291c 100644 --- a/src/generated/ldb_battleranimationitemskill.cpp +++ b/src/generated/ldb_battleranimationitemskill.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_battleranimationpose.cpp b/src/generated/ldb_battleranimationpose.cpp index 884d3937..305c56f4 100644 --- a/src/generated/ldb_battleranimationpose.cpp +++ b/src/generated/ldb_battleranimationpose.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_battleranimationweapon.cpp b/src/generated/ldb_battleranimationweapon.cpp index 4fdd956a..32262ff0 100644 --- a/src/generated/ldb_battleranimationweapon.cpp +++ b/src/generated/ldb_battleranimationweapon.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_chipset.cpp b/src/generated/ldb_chipset.cpp index f23bb813..5bfd8315 100644 --- a/src/generated/ldb_chipset.cpp +++ b/src/generated/ldb_chipset.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_class.cpp b/src/generated/ldb_class.cpp index 3028f4ce..ce5fc3c1 100644 --- a/src/generated/ldb_class.cpp +++ b/src/generated/ldb_class.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_commonevent.cpp b/src/generated/ldb_commonevent.cpp index 7ab2c402..2a8eda3c 100644 --- a/src/generated/ldb_commonevent.cpp +++ b/src/generated/ldb_commonevent.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_database.cpp b/src/generated/ldb_database.cpp index f5071af5..1aa31db6 100644 --- a/src/generated/ldb_database.cpp +++ b/src/generated/ldb_database.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_enemy.cpp b/src/generated/ldb_enemy.cpp index 0bf1baaf..8b45aaff 100644 --- a/src/generated/ldb_enemy.cpp +++ b/src/generated/ldb_enemy.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_enemyaction.cpp b/src/generated/ldb_enemyaction.cpp index 1b00410b..cde140b7 100644 --- a/src/generated/ldb_enemyaction.cpp +++ b/src/generated/ldb_enemyaction.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_item.cpp b/src/generated/ldb_item.cpp index 4602da10..81b88d6f 100644 --- a/src/generated/ldb_item.cpp +++ b/src/generated/ldb_item.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_learning.cpp b/src/generated/ldb_learning.cpp index 7dad4be7..1d0d4b98 100644 --- a/src/generated/ldb_learning.cpp +++ b/src/generated/ldb_learning.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_music.cpp b/src/generated/ldb_music.cpp index 71dfebe7..d222211a 100644 --- a/src/generated/ldb_music.cpp +++ b/src/generated/ldb_music.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_skill.cpp b/src/generated/ldb_skill.cpp index 7a37cdcc..4d9f821f 100644 --- a/src/generated/ldb_skill.cpp +++ b/src/generated/ldb_skill.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_sound.cpp b/src/generated/ldb_sound.cpp index b7b54c0d..8e4e3089 100644 --- a/src/generated/ldb_sound.cpp +++ b/src/generated/ldb_sound.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_state.cpp b/src/generated/ldb_state.cpp index cec31d6f..225baeeb 100644 --- a/src/generated/ldb_state.cpp +++ b/src/generated/ldb_state.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_switch.cpp b/src/generated/ldb_switch.cpp index 0ba4316c..9150e008 100644 --- a/src/generated/ldb_switch.cpp +++ b/src/generated/ldb_switch.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_system.cpp b/src/generated/ldb_system.cpp index 7ef969fb..6d561424 100644 --- a/src/generated/ldb_system.cpp +++ b/src/generated/ldb_system.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_terms.cpp b/src/generated/ldb_terms.cpp index 2e002bfe..64614d31 100644 --- a/src/generated/ldb_terms.cpp +++ b/src/generated/ldb_terms.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_terrain.cpp b/src/generated/ldb_terrain.cpp index 9d39cff4..c59752ee 100644 --- a/src/generated/ldb_terrain.cpp +++ b/src/generated/ldb_terrain.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_terrain_flags.h b/src/generated/ldb_terrain_flags.h index 1fdf41ac..9f1801e3 100644 --- a/src/generated/ldb_terrain_flags.h +++ b/src/generated/ldb_terrain_flags.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_testbattler.cpp b/src/generated/ldb_testbattler.cpp index c05dfece..75f82c99 100644 --- a/src/generated/ldb_testbattler.cpp +++ b/src/generated/ldb_testbattler.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_troop.cpp b/src/generated/ldb_troop.cpp index 493d83b6..bc7f5d38 100644 --- a/src/generated/ldb_troop.cpp +++ b/src/generated/ldb_troop.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_troopmember.cpp b/src/generated/ldb_troopmember.cpp index b1f8abbd..dd47aac4 100644 --- a/src/generated/ldb_troopmember.cpp +++ b/src/generated/ldb_troopmember.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_trooppage.cpp b/src/generated/ldb_trooppage.cpp index c8e9650e..9e5882d4 100644 --- a/src/generated/ldb_trooppage.cpp +++ b/src/generated/ldb_trooppage.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_trooppagecondition.cpp b/src/generated/ldb_trooppagecondition.cpp index d2da167a..8bbeee8a 100644 --- a/src/generated/ldb_trooppagecondition.cpp +++ b/src/generated/ldb_trooppagecondition.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_trooppagecondition_flags.h b/src/generated/ldb_trooppagecondition_flags.h index 4df31076..b57e71c9 100644 --- a/src/generated/ldb_trooppagecondition_flags.h +++ b/src/generated/ldb_trooppagecondition_flags.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/ldb_variable.cpp b/src/generated/ldb_variable.cpp index e1db699d..e323e6a6 100644 --- a/src/generated/ldb_variable.cpp +++ b/src/generated/ldb_variable.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmt_encounter.cpp b/src/generated/lmt_encounter.cpp index aae7fe75..f1d9ad34 100644 --- a/src/generated/lmt_encounter.cpp +++ b/src/generated/lmt_encounter.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmt_mapinfo.cpp b/src/generated/lmt_mapinfo.cpp index ebaa8a83..3e8e8dac 100644 --- a/src/generated/lmt_mapinfo.cpp +++ b/src/generated/lmt_mapinfo.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmt_start.cpp b/src/generated/lmt_start.cpp index 35aa3333..e2f8b0f9 100644 --- a/src/generated/lmt_start.cpp +++ b/src/generated/lmt_start.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmu_event.cpp b/src/generated/lmu_event.cpp index 3f58ddf1..db9fcf32 100644 --- a/src/generated/lmu_event.cpp +++ b/src/generated/lmu_event.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmu_eventpage.cpp b/src/generated/lmu_eventpage.cpp index 55e241ab..6d14c047 100644 --- a/src/generated/lmu_eventpage.cpp +++ b/src/generated/lmu_eventpage.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmu_eventpagecondition.cpp b/src/generated/lmu_eventpagecondition.cpp index 739e6663..d64ee868 100644 --- a/src/generated/lmu_eventpagecondition.cpp +++ b/src/generated/lmu_eventpagecondition.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmu_eventpagecondition_flags.h b/src/generated/lmu_eventpagecondition_flags.h index 8cd3764d..a54fa8e1 100644 --- a/src/generated/lmu_eventpagecondition_flags.h +++ b/src/generated/lmu_eventpagecondition_flags.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmu_map.cpp b/src/generated/lmu_map.cpp index 4c28a36e..313f1b6b 100644 --- a/src/generated/lmu_map.cpp +++ b/src/generated/lmu_map.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lmu_moveroute.cpp b/src/generated/lmu_moveroute.cpp index 1662e6df..081ea043 100644 --- a/src/generated/lmu_moveroute.cpp +++ b/src/generated/lmu_moveroute.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_save.cpp b/src/generated/lsd_save.cpp index bdd2996c..1c9c1830 100644 --- a/src/generated/lsd_save.cpp +++ b/src/generated/lsd_save.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveactor.cpp b/src/generated/lsd_saveactor.cpp index 4ea58514..05149aaa 100644 --- a/src/generated/lsd_saveactor.cpp +++ b/src/generated/lsd_saveactor.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savecommonevent.cpp b/src/generated/lsd_savecommonevent.cpp index 10948876..5353a750 100644 --- a/src/generated/lsd_savecommonevent.cpp +++ b/src/generated/lsd_savecommonevent.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeasyrpgdata.cpp b/src/generated/lsd_saveeasyrpgdata.cpp index 04973732..9e3b61d3 100644 --- a/src/generated/lsd_saveeasyrpgdata.cpp +++ b/src/generated/lsd_saveeasyrpgdata.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeasyrpgtext.cpp b/src/generated/lsd_saveeasyrpgtext.cpp index 65041ae0..9a535083 100644 --- a/src/generated/lsd_saveeasyrpgtext.cpp +++ b/src/generated/lsd_saveeasyrpgtext.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeasyrpgtext_flags.h b/src/generated/lsd_saveeasyrpgtext_flags.h index d7ae9550..a75dc8bf 100644 --- a/src/generated/lsd_saveeasyrpgtext_flags.h +++ b/src/generated/lsd_saveeasyrpgtext_flags.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeasyrpgwindow.cpp b/src/generated/lsd_saveeasyrpgwindow.cpp index 62726e15..c2b79b9f 100644 --- a/src/generated/lsd_saveeasyrpgwindow.cpp +++ b/src/generated/lsd_saveeasyrpgwindow.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeasyrpgwindow_flags.h b/src/generated/lsd_saveeasyrpgwindow_flags.h index fe24baa1..9dd7736c 100644 --- a/src/generated/lsd_saveeasyrpgwindow_flags.h +++ b/src/generated/lsd_saveeasyrpgwindow_flags.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeventexecframe.cpp b/src/generated/lsd_saveeventexecframe.cpp index 51630924..a29acf33 100644 --- a/src/generated/lsd_saveeventexecframe.cpp +++ b/src/generated/lsd_saveeventexecframe.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveeventexecstate.cpp b/src/generated/lsd_saveeventexecstate.cpp index d6fec1b6..9d542982 100644 --- a/src/generated/lsd_saveeventexecstate.cpp +++ b/src/generated/lsd_saveeventexecstate.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_saveinventory.cpp b/src/generated/lsd_saveinventory.cpp index ac65a505..93bea2ec 100644 --- a/src/generated/lsd_saveinventory.cpp +++ b/src/generated/lsd_saveinventory.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savemapevent.cpp b/src/generated/lsd_savemapevent.cpp index fc916591..541afa1e 100644 --- a/src/generated/lsd_savemapevent.cpp +++ b/src/generated/lsd_savemapevent.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savemapeventbase.cpp b/src/generated/lsd_savemapeventbase.cpp index c2ff7a09..1796177b 100644 --- a/src/generated/lsd_savemapeventbase.cpp +++ b/src/generated/lsd_savemapeventbase.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savemapinfo.cpp b/src/generated/lsd_savemapinfo.cpp index 817f64bf..84ef07b3 100644 --- a/src/generated/lsd_savemapinfo.cpp +++ b/src/generated/lsd_savemapinfo.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savepanorama.cpp b/src/generated/lsd_savepanorama.cpp index 3e3d9069..fca81e21 100644 --- a/src/generated/lsd_savepanorama.cpp +++ b/src/generated/lsd_savepanorama.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savepartylocation.cpp b/src/generated/lsd_savepartylocation.cpp index 8b4b01f5..2c4da661 100644 --- a/src/generated/lsd_savepartylocation.cpp +++ b/src/generated/lsd_savepartylocation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savepicture.cpp b/src/generated/lsd_savepicture.cpp index 96478871..896b5a6a 100644 --- a/src/generated/lsd_savepicture.cpp +++ b/src/generated/lsd_savepicture.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savepicture_flags.h b/src/generated/lsd_savepicture_flags.h index 2090582c..3e1346a7 100644 --- a/src/generated/lsd_savepicture_flags.h +++ b/src/generated/lsd_savepicture_flags.h @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savescreen.cpp b/src/generated/lsd_savescreen.cpp index 2bc58f28..7ce4eae0 100644 --- a/src/generated/lsd_savescreen.cpp +++ b/src/generated/lsd_savescreen.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savesystem.cpp b/src/generated/lsd_savesystem.cpp index 5eaa4a63..c7464417 100644 --- a/src/generated/lsd_savesystem.cpp +++ b/src/generated/lsd_savesystem.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savetarget.cpp b/src/generated/lsd_savetarget.cpp index 9d6d84a1..d719357f 100644 --- a/src/generated/lsd_savetarget.cpp +++ b/src/generated/lsd_savetarget.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savetitle.cpp b/src/generated/lsd_savetitle.cpp index 1166875c..8ee2d21e 100644 --- a/src/generated/lsd_savetitle.cpp +++ b/src/generated/lsd_savetitle.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/lsd_savevehiclelocation.cpp b/src/generated/lsd_savevehiclelocation.cpp index 11359ffd..88d19274 100644 --- a/src/generated/lsd_savevehiclelocation.cpp +++ b/src/generated/lsd_savevehiclelocation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_actor.cpp b/src/generated/rpg_actor.cpp index e0dd8c5b..914cdcfd 100644 --- a/src/generated/rpg_actor.cpp +++ b/src/generated/rpg_actor.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_animation.cpp b/src/generated/rpg_animation.cpp index e6664311..ed2389c6 100644 --- a/src/generated/rpg_animation.cpp +++ b/src/generated/rpg_animation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_animationcelldata.cpp b/src/generated/rpg_animationcelldata.cpp index 2833a227..eb62ebea 100644 --- a/src/generated/rpg_animationcelldata.cpp +++ b/src/generated/rpg_animationcelldata.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_animationframe.cpp b/src/generated/rpg_animationframe.cpp index 362043b3..174244c1 100644 --- a/src/generated/rpg_animationframe.cpp +++ b/src/generated/rpg_animationframe.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_animationtiming.cpp b/src/generated/rpg_animationtiming.cpp index e6cca2ab..e493631f 100644 --- a/src/generated/rpg_animationtiming.cpp +++ b/src/generated/rpg_animationtiming.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_attribute.cpp b/src/generated/rpg_attribute.cpp index ff7fae0d..b24b3d20 100644 --- a/src/generated/rpg_attribute.cpp +++ b/src/generated/rpg_attribute.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_battlecommand.cpp b/src/generated/rpg_battlecommand.cpp index 6dec18b3..0159f49a 100644 --- a/src/generated/rpg_battlecommand.cpp +++ b/src/generated/rpg_battlecommand.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_battlecommands.cpp b/src/generated/rpg_battlecommands.cpp index bcf7f38c..5d5ccdf5 100644 --- a/src/generated/rpg_battlecommands.cpp +++ b/src/generated/rpg_battlecommands.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_battleranimation.cpp b/src/generated/rpg_battleranimation.cpp index fb9d0985..d0517c1d 100644 --- a/src/generated/rpg_battleranimation.cpp +++ b/src/generated/rpg_battleranimation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_battleranimationitemskill.cpp b/src/generated/rpg_battleranimationitemskill.cpp index 20d9773d..d89a64f6 100644 --- a/src/generated/rpg_battleranimationitemskill.cpp +++ b/src/generated/rpg_battleranimationitemskill.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_battleranimationpose.cpp b/src/generated/rpg_battleranimationpose.cpp index f26eccd2..adf54ad1 100644 --- a/src/generated/rpg_battleranimationpose.cpp +++ b/src/generated/rpg_battleranimationpose.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_battleranimationweapon.cpp b/src/generated/rpg_battleranimationweapon.cpp index 131d336d..c0d6ba5c 100644 --- a/src/generated/rpg_battleranimationweapon.cpp +++ b/src/generated/rpg_battleranimationweapon.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_chipset.cpp b/src/generated/rpg_chipset.cpp index 068aa924..33f54769 100644 --- a/src/generated/rpg_chipset.cpp +++ b/src/generated/rpg_chipset.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_class.cpp b/src/generated/rpg_class.cpp index af6e06ea..6547263e 100644 --- a/src/generated/rpg_class.cpp +++ b/src/generated/rpg_class.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_commonevent.cpp b/src/generated/rpg_commonevent.cpp index fabaf17f..6b50f4d9 100644 --- a/src/generated/rpg_commonevent.cpp +++ b/src/generated/rpg_commonevent.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_database.cpp b/src/generated/rpg_database.cpp index 14f929bf..068be5e4 100644 --- a/src/generated/rpg_database.cpp +++ b/src/generated/rpg_database.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_encounter.cpp b/src/generated/rpg_encounter.cpp index b17940c8..a7bb846d 100644 --- a/src/generated/rpg_encounter.cpp +++ b/src/generated/rpg_encounter.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_enemy.cpp b/src/generated/rpg_enemy.cpp index edfaa86d..1ee8dc76 100644 --- a/src/generated/rpg_enemy.cpp +++ b/src/generated/rpg_enemy.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_enemyaction.cpp b/src/generated/rpg_enemyaction.cpp index d9ca28b8..bc6b92f8 100644 --- a/src/generated/rpg_enemyaction.cpp +++ b/src/generated/rpg_enemyaction.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_enums.cpp b/src/generated/rpg_enums.cpp index cd022415..943796e2 100644 --- a/src/generated/rpg_enums.cpp +++ b/src/generated/rpg_enums.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_equipment.cpp b/src/generated/rpg_equipment.cpp index aac2ae79..9551e9fd 100644 --- a/src/generated/rpg_equipment.cpp +++ b/src/generated/rpg_equipment.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_event.cpp b/src/generated/rpg_event.cpp index 3ae5a44a..8e89984f 100644 --- a/src/generated/rpg_event.cpp +++ b/src/generated/rpg_event.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_eventcommand.cpp b/src/generated/rpg_eventcommand.cpp index a3aa89c2..c880f452 100644 --- a/src/generated/rpg_eventcommand.cpp +++ b/src/generated/rpg_eventcommand.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_eventpage.cpp b/src/generated/rpg_eventpage.cpp index 601fc17c..7937b513 100644 --- a/src/generated/rpg_eventpage.cpp +++ b/src/generated/rpg_eventpage.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_eventpagecondition.cpp b/src/generated/rpg_eventpagecondition.cpp index 7bca079f..bf3a2a32 100644 --- a/src/generated/rpg_eventpagecondition.cpp +++ b/src/generated/rpg_eventpagecondition.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_item.cpp b/src/generated/rpg_item.cpp index 461a3cad..df45357e 100644 --- a/src/generated/rpg_item.cpp +++ b/src/generated/rpg_item.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_learning.cpp b/src/generated/rpg_learning.cpp index 79064471..5e8d6c69 100644 --- a/src/generated/rpg_learning.cpp +++ b/src/generated/rpg_learning.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_map.cpp b/src/generated/rpg_map.cpp index 906a47d2..0bd1b12c 100644 --- a/src/generated/rpg_map.cpp +++ b/src/generated/rpg_map.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_mapinfo.cpp b/src/generated/rpg_mapinfo.cpp index 69221951..8df5ad1f 100644 --- a/src/generated/rpg_mapinfo.cpp +++ b/src/generated/rpg_mapinfo.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_movecommand.cpp b/src/generated/rpg_movecommand.cpp index 0ff56d4f..65219171 100644 --- a/src/generated/rpg_movecommand.cpp +++ b/src/generated/rpg_movecommand.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_moveroute.cpp b/src/generated/rpg_moveroute.cpp index 22f5ff6d..643420bf 100644 --- a/src/generated/rpg_moveroute.cpp +++ b/src/generated/rpg_moveroute.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_music.cpp b/src/generated/rpg_music.cpp index 838746d7..b8e3d483 100644 --- a/src/generated/rpg_music.cpp +++ b/src/generated/rpg_music.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_parameters.cpp b/src/generated/rpg_parameters.cpp index 31032be7..6a1a5a96 100644 --- a/src/generated/rpg_parameters.cpp +++ b/src/generated/rpg_parameters.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_rect.cpp b/src/generated/rpg_rect.cpp index b1dc5caf..6134afc8 100644 --- a/src/generated/rpg_rect.cpp +++ b/src/generated/rpg_rect.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_save.cpp b/src/generated/rpg_save.cpp index a745bd1c..38ead6ee 100644 --- a/src/generated/rpg_save.cpp +++ b/src/generated/rpg_save.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveactor.cpp b/src/generated/rpg_saveactor.cpp index 4e6c0ceb..9e3b5c4b 100644 --- a/src/generated/rpg_saveactor.cpp +++ b/src/generated/rpg_saveactor.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savecommonevent.cpp b/src/generated/rpg_savecommonevent.cpp index 588de968..f9a02865 100644 --- a/src/generated/rpg_savecommonevent.cpp +++ b/src/generated/rpg_savecommonevent.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveeasyrpgdata.cpp b/src/generated/rpg_saveeasyrpgdata.cpp index 9a8eb5f9..4edc3197 100644 --- a/src/generated/rpg_saveeasyrpgdata.cpp +++ b/src/generated/rpg_saveeasyrpgdata.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveeasyrpgtext.cpp b/src/generated/rpg_saveeasyrpgtext.cpp index 6cd3a740..96e15bdf 100644 --- a/src/generated/rpg_saveeasyrpgtext.cpp +++ b/src/generated/rpg_saveeasyrpgtext.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveeasyrpgwindow.cpp b/src/generated/rpg_saveeasyrpgwindow.cpp index 01b85c79..0046325b 100644 --- a/src/generated/rpg_saveeasyrpgwindow.cpp +++ b/src/generated/rpg_saveeasyrpgwindow.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveeventexecframe.cpp b/src/generated/rpg_saveeventexecframe.cpp index af1e6e89..55dc3bc4 100644 --- a/src/generated/rpg_saveeventexecframe.cpp +++ b/src/generated/rpg_saveeventexecframe.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveeventexecstate.cpp b/src/generated/rpg_saveeventexecstate.cpp index 0c248596..b81be624 100644 --- a/src/generated/rpg_saveeventexecstate.cpp +++ b/src/generated/rpg_saveeventexecstate.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_saveinventory.cpp b/src/generated/rpg_saveinventory.cpp index bc435856..a08f15a1 100644 --- a/src/generated/rpg_saveinventory.cpp +++ b/src/generated/rpg_saveinventory.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savemapevent.cpp b/src/generated/rpg_savemapevent.cpp index 273c6116..a618fc23 100644 --- a/src/generated/rpg_savemapevent.cpp +++ b/src/generated/rpg_savemapevent.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savemapeventbase.cpp b/src/generated/rpg_savemapeventbase.cpp index 985b14c8..3906e2c1 100644 --- a/src/generated/rpg_savemapeventbase.cpp +++ b/src/generated/rpg_savemapeventbase.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savemapinfo.cpp b/src/generated/rpg_savemapinfo.cpp index 23f1c864..5031172a 100644 --- a/src/generated/rpg_savemapinfo.cpp +++ b/src/generated/rpg_savemapinfo.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savepanorama.cpp b/src/generated/rpg_savepanorama.cpp index 5b8a83b5..7c97460e 100644 --- a/src/generated/rpg_savepanorama.cpp +++ b/src/generated/rpg_savepanorama.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savepartylocation.cpp b/src/generated/rpg_savepartylocation.cpp index b2965dcd..96a44c8d 100644 --- a/src/generated/rpg_savepartylocation.cpp +++ b/src/generated/rpg_savepartylocation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savepicture.cpp b/src/generated/rpg_savepicture.cpp index d5647175..81cc9cce 100644 --- a/src/generated/rpg_savepicture.cpp +++ b/src/generated/rpg_savepicture.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savescreen.cpp b/src/generated/rpg_savescreen.cpp index 3cd88978..01ab1b56 100644 --- a/src/generated/rpg_savescreen.cpp +++ b/src/generated/rpg_savescreen.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savesystem.cpp b/src/generated/rpg_savesystem.cpp index 8dadf78e..65d27cd3 100644 --- a/src/generated/rpg_savesystem.cpp +++ b/src/generated/rpg_savesystem.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savetarget.cpp b/src/generated/rpg_savetarget.cpp index 25ce5add..b9b30300 100644 --- a/src/generated/rpg_savetarget.cpp +++ b/src/generated/rpg_savetarget.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savetitle.cpp b/src/generated/rpg_savetitle.cpp index 9e3661b4..82abe708 100644 --- a/src/generated/rpg_savetitle.cpp +++ b/src/generated/rpg_savetitle.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_savevehiclelocation.cpp b/src/generated/rpg_savevehiclelocation.cpp index 0c596606..811d5801 100644 --- a/src/generated/rpg_savevehiclelocation.cpp +++ b/src/generated/rpg_savevehiclelocation.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_skill.cpp b/src/generated/rpg_skill.cpp index 8ce6acb1..b6b40074 100644 --- a/src/generated/rpg_skill.cpp +++ b/src/generated/rpg_skill.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_sound.cpp b/src/generated/rpg_sound.cpp index 1673001c..bd75d064 100644 --- a/src/generated/rpg_sound.cpp +++ b/src/generated/rpg_sound.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_start.cpp b/src/generated/rpg_start.cpp index a829c898..77d870bf 100644 --- a/src/generated/rpg_start.cpp +++ b/src/generated/rpg_start.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_state.cpp b/src/generated/rpg_state.cpp index 1048964f..519ae3e1 100644 --- a/src/generated/rpg_state.cpp +++ b/src/generated/rpg_state.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_switch.cpp b/src/generated/rpg_switch.cpp index d0df0853..6c97f336 100644 --- a/src/generated/rpg_switch.cpp +++ b/src/generated/rpg_switch.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_system.cpp b/src/generated/rpg_system.cpp index 3e59ac1f..a8c7bfff 100644 --- a/src/generated/rpg_system.cpp +++ b/src/generated/rpg_system.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_terms.cpp b/src/generated/rpg_terms.cpp index 302a63ae..ee16bf11 100644 --- a/src/generated/rpg_terms.cpp +++ b/src/generated/rpg_terms.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_terrain.cpp b/src/generated/rpg_terrain.cpp index cef2b908..8675c1c4 100644 --- a/src/generated/rpg_terrain.cpp +++ b/src/generated/rpg_terrain.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_testbattler.cpp b/src/generated/rpg_testbattler.cpp index fac1d655..58ea76e5 100644 --- a/src/generated/rpg_testbattler.cpp +++ b/src/generated/rpg_testbattler.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_treemap.cpp b/src/generated/rpg_treemap.cpp index 83b27579..1d34b7d8 100644 --- a/src/generated/rpg_treemap.cpp +++ b/src/generated/rpg_treemap.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_troop.cpp b/src/generated/rpg_troop.cpp index 2c1f31c9..8ede8860 100644 --- a/src/generated/rpg_troop.cpp +++ b/src/generated/rpg_troop.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_troopmember.cpp b/src/generated/rpg_troopmember.cpp index f13deed2..2a7be4bc 100644 --- a/src/generated/rpg_troopmember.cpp +++ b/src/generated/rpg_troopmember.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_trooppage.cpp b/src/generated/rpg_trooppage.cpp index f0955411..db5142ee 100644 --- a/src/generated/rpg_trooppage.cpp +++ b/src/generated/rpg_trooppage.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_trooppagecondition.cpp b/src/generated/rpg_trooppagecondition.cpp index 58c774ae..ae8a218a 100644 --- a/src/generated/rpg_trooppagecondition.cpp +++ b/src/generated/rpg_trooppagecondition.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/generated/rpg_variable.cpp b/src/generated/rpg_variable.cpp index 01d91d8a..76d906a5 100644 --- a/src/generated/rpg_variable.cpp +++ b/src/generated/rpg_variable.cpp @@ -1,7 +1,7 @@ /* !!!! GENERATED FILE - DO NOT EDIT !!!! * -------------------------------------- * - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/context.h b/src/lcf/context.h index 9eb6d40e..13e307db 100644 --- a/src/lcf/context.h +++ b/src/lcf/context.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/dbarray.h b/src/lcf/dbarray.h index 4e219204..67447084 100644 --- a/src/lcf/dbarray.h +++ b/src/lcf/dbarray.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/dbarrayalloc.h b/src/lcf/dbarrayalloc.h index b738e83b..740c3c2b 100644 --- a/src/lcf/dbarrayalloc.h +++ b/src/lcf/dbarrayalloc.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/dbbitarray.h b/src/lcf/dbbitarray.h index 704970e4..91c310b7 100644 --- a/src/lcf/dbbitarray.h +++ b/src/lcf/dbbitarray.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/dbstring.h b/src/lcf/dbstring.h index bf893804..1385e709 100644 --- a/src/lcf/dbstring.h +++ b/src/lcf/dbstring.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/encoder.h b/src/lcf/encoder.h index f096a20e..14bcb779 100644 --- a/src/lcf/encoder.h +++ b/src/lcf/encoder.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/enum_tags.h b/src/lcf/enum_tags.h index 25ea4127..2e6f9aa5 100644 --- a/src/lcf/enum_tags.h +++ b/src/lcf/enum_tags.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/flag_set.h b/src/lcf/flag_set.h index 4acf32da..5ff2ec05 100644 --- a/src/lcf/flag_set.h +++ b/src/lcf/flag_set.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/ldb/reader.h b/src/lcf/ldb/reader.h index 9504ed66..384db519 100644 --- a/src/lcf/ldb/reader.h +++ b/src/lcf/ldb/reader.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/lmt/reader.h b/src/lcf/lmt/reader.h index f42535ee..1078a386 100644 --- a/src/lcf/lmt/reader.h +++ b/src/lcf/lmt/reader.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/lmu/reader.h b/src/lcf/lmu/reader.h index 3eaeaad6..ed24c50a 100644 --- a/src/lcf/lmu/reader.h +++ b/src/lcf/lmu/reader.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/lsd/reader.h b/src/lcf/lsd/reader.h index 60e86c91..1e944ddf 100644 --- a/src/lcf/lsd/reader.h +++ b/src/lcf/lsd/reader.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/reader_lcf.h b/src/lcf/reader_lcf.h index 1a5d06cf..ffce0819 100644 --- a/src/lcf/reader_lcf.h +++ b/src/lcf/reader_lcf.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/reader_util.h b/src/lcf/reader_util.h index 502e15f2..7de34b47 100644 --- a/src/lcf/reader_util.h +++ b/src/lcf/reader_util.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/reader_xml.h b/src/lcf/reader_xml.h index 17078dcd..379c5143 100644 --- a/src/lcf/reader_xml.h +++ b/src/lcf/reader_xml.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/saveopt.h b/src/lcf/saveopt.h index f39c0537..7e7ae538 100644 --- a/src/lcf/saveopt.h +++ b/src/lcf/saveopt.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/scope_guard.h b/src/lcf/scope_guard.h index 34a45bb3..2a57f7c5 100644 --- a/src/lcf/scope_guard.h +++ b/src/lcf/scope_guard.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/span.h b/src/lcf/span.h index 9c6974e5..70338e6a 100644 --- a/src/lcf/span.h +++ b/src/lcf/span.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/string_view.h b/src/lcf/string_view.h index aff430ee..b35e13e6 100644 --- a/src/lcf/string_view.h +++ b/src/lcf/string_view.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/writer_lcf.h b/src/lcf/writer_lcf.h index 920f635e..f2e91019 100644 --- a/src/lcf/writer_lcf.h +++ b/src/lcf/writer_lcf.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lcf/writer_xml.h b/src/lcf/writer_xml.h index d6eddbbe..be1c514e 100644 --- a/src/lcf/writer_xml.h +++ b/src/lcf/writer_xml.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/ldb_equipment.cpp b/src/ldb_equipment.cpp index f7091ad7..2da2354f 100644 --- a/src/ldb_equipment.cpp +++ b/src/ldb_equipment.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/ldb_eventcommand.cpp b/src/ldb_eventcommand.cpp index 28acf362..3d02a457 100644 --- a/src/ldb_eventcommand.cpp +++ b/src/ldb_eventcommand.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/ldb_parameters.cpp b/src/ldb_parameters.cpp index b0951025..3da08154 100644 --- a/src/ldb_parameters.cpp +++ b/src/ldb_parameters.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/ldb_reader.cpp b/src/ldb_reader.cpp index b2221fb9..406e4243 100644 --- a/src/ldb_reader.cpp +++ b/src/ldb_reader.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lmt_reader.cpp b/src/lmt_reader.cpp index 503c5068..30620109 100644 --- a/src/lmt_reader.cpp +++ b/src/lmt_reader.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lmt_rect.cpp b/src/lmt_rect.cpp index ecf8f689..53608697 100644 --- a/src/lmt_rect.cpp +++ b/src/lmt_rect.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lmt_treemap.cpp b/src/lmt_treemap.cpp index 1ac9b119..bba15e8b 100644 --- a/src/lmt_treemap.cpp +++ b/src/lmt_treemap.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lmu_movecommand.cpp b/src/lmu_movecommand.cpp index a6d515c2..0d8a1b5b 100644 --- a/src/lmu_movecommand.cpp +++ b/src/lmu_movecommand.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lmu_reader.cpp b/src/lmu_reader.cpp index 28658eb6..d3a2e9f0 100644 --- a/src/lmu_reader.cpp +++ b/src/lmu_reader.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/lsd_reader.cpp b/src/lsd_reader.cpp index 61def34c..cc64a44e 100644 --- a/src/lsd_reader.cpp +++ b/src/lsd_reader.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/reader_flags.cpp b/src/reader_flags.cpp index 3750b4d4..e6439254 100644 --- a/src/reader_flags.cpp +++ b/src/reader_flags.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/reader_lcf.cpp b/src/reader_lcf.cpp index e5e6f8f4..4c6ff0b3 100644 --- a/src/reader_lcf.cpp +++ b/src/reader_lcf.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/reader_struct.h b/src/reader_struct.h index 05714d47..de928321 100644 --- a/src/reader_struct.h +++ b/src/reader_struct.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/reader_struct_impl.h b/src/reader_struct_impl.h index 78c63c00..0ee118e4 100644 --- a/src/reader_struct_impl.h +++ b/src/reader_struct_impl.h @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/reader_util.cpp b/src/reader_util.cpp index 728d037a..9c8e6934 100644 --- a/src/reader_util.cpp +++ b/src/reader_util.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/reader_xml.cpp b/src/reader_xml.cpp index 67275a19..f44983ca 100644 --- a/src/reader_xml.cpp +++ b/src/reader_xml.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/rpg_setup.cpp b/src/rpg_setup.cpp index c9d0e415..87b641f6 100644 --- a/src/rpg_setup.cpp +++ b/src/rpg_setup.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/rpg_terms.cpp b/src/rpg_terms.cpp index 5c439d81..ac02898e 100644 --- a/src/rpg_terms.cpp +++ b/src/rpg_terms.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/writer_lcf.cpp b/src/writer_lcf.cpp index d3f9dc03..0893778a 100644 --- a/src/writer_lcf.cpp +++ b/src/writer_lcf.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/src/writer_xml.cpp b/src/writer_xml.cpp index 15cd4997..205e1c70 100644 --- a/src/writer_xml.cpp +++ b/src/writer_xml.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/dbarray.cpp b/tests/dbarray.cpp index c6b1c00f..a6e0e2e3 100644 --- a/tests/dbarray.cpp +++ b/tests/dbarray.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/dbbitarray.cpp b/tests/dbbitarray.cpp index 4ea653c6..eb93c155 100644 --- a/tests/dbbitarray.cpp +++ b/tests/dbbitarray.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/dbstring.cpp b/tests/dbstring.cpp index 54dad4e2..cc405e69 100644 --- a/tests/dbstring.cpp +++ b/tests/dbstring.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/flag_set.cpp b/tests/flag_set.cpp index fd21c3fb..48467170 100644 --- a/tests/flag_set.cpp +++ b/tests/flag_set.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/span.cpp b/tests/span.cpp index ac2bd7cf..f36b2e6f 100644 --- a/tests/span.cpp +++ b/tests/span.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/string_view.cpp b/tests/string_view.cpp index 83bb5d99..65395621 100644 --- a/tests/string_view.cpp +++ b/tests/string_view.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/test_main.cpp b/tests/test_main.cpp index 02dcbd26..08ce7f75 100644 --- a/tests/test_main.cpp +++ b/tests/test_main.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tests/time_stamp.cpp b/tests/time_stamp.cpp index 19bad6bb..036b828a 100644 --- a/tests/time_stamp.cpp +++ b/tests/time_stamp.cpp @@ -1,5 +1,5 @@ /* - * This file is part of liblcf. Copyright (c) 2021 liblcf authors. + * This file is part of liblcf. Copyright (c) liblcf authors. * https://github.com/EasyRPG/liblcf - https://easyrpg.org * * liblcf is Free/Libre Open Source Software, released under the MIT License. diff --git a/tools/lcf2xml.cpp b/tools/lcf2xml.cpp index 960e70c0..be5ac673 100644 --- a/tools/lcf2xml.cpp +++ b/tools/lcf2xml.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 liblcf authors + * Copyright (c) liblcf authors * This file is released under the MIT License * http://opensource.org/licenses/MIT */ diff --git a/tools/lcfstrings.cpp b/tools/lcfstrings.cpp index e6e24db3..d85660e5 100644 --- a/tools/lcfstrings.cpp +++ b/tools/lcfstrings.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 liblcf authors + * Copyright (c) liblcf authors * This file is released under the MIT License * http://opensource.org/licenses/MIT */ From 916711e57f6f237f05dd53e691ec46d4aa4864c0 Mon Sep 17 00:00:00 2001 From: Ghabry Date: Thu, 27 Apr 2023 14:03:46 +0200 Subject: [PATCH 4/5] Apply changes from Player release-helper script to liblcf script --- builds/release-helper.sh | 56 ++++++++++++++++++++++++++++++++-------- 1 file changed, 45 insertions(+), 11 deletions(-) diff --git a/builds/release-helper.sh b/builds/release-helper.sh index 1f16abe8..60513458 100755 --- a/builds/release-helper.sh +++ b/builds/release-helper.sh @@ -8,6 +8,29 @@ set -e year=$(date +%Y) version=$1 +verbose=${2:-quiet} + +# helpers +reset="\e[0m" +red="\e[31m" +yellow="\e[33m" +blue="\e[36m" +bold="\e[1m" +function print_file() { + if [ $verbose == "verbose" ]; then + echo -e "$yellow $file:$reset" + else + echo -e "$yellow $file$reset" + fi +} + +function print_verbose() { + if [ $verbose == "verbose" ]; then + echo -ne "$blue" + grep "$1" $2 + echo -e "$reset" + fi +} if [[ ! -z $version ]]; then @@ -21,15 +44,20 @@ if [[ ! -z $version ]]; then echo "Updating Version in:" - echo " CMakeLists.txt" - sed -i "/liblcf VERSION/,1 s/[0-9]\.[0-9]\.[0-9]/$version/" CMakeLists.txt + file=CMakeLists.txt + print_file + sed -i "/liblcf VERSION/,1 s/[0-9]\(.[0-9]\)\{1,2\}/$version/" $file + print_verbose 'liblcf VERSION' $file - echo " configure.ac" - sed -i "/AC_INIT/,1 s/[0-9]\.[0-9]\.[0-9]/$version/" configure.ac - - echo " README.md" - sed -i "s/\(liblcf-\)[0-9]\.[0-9]\.[0-9]/\1$version/g" README.md + file=configure.ac + print_file + sed -i "/AC_INIT/,1 s/[0-9]\(.[0-9]\)\{1,2\}/$version/" $file + print_verbose 'AC_INIT' $file + file=README.md + print_file + sed -i "s/\(liblcf-\)[0-9]\(.[0-9]\)\{1,2\}/\1$version/g" $file + print_verbose 'liblcf-' $file else echo "No new version argument, only updating copyright years!" @@ -37,13 +65,19 @@ else fi echo "Updating License…" -sed -i "1,1 s/2014-2[0-9][0-9][0-9]/2014-$year/" COPYING -cat << EOF +file=COPYING +print_file +sed -i "1,1 s/2014-2[0-9][0-9][0-9]/2014-$year/" $file +print_verbose '2014-' $file + +echo -e "$( +cat << EOM ${red}Please check ${bold}README.md${reset}${red} file for whitespace problems.${reset} If everything is ready and committed, use these commands to publish the git tag: -$ git tag -a (-s) $version -m "Codename \"\fancy codename\"" +$ git tag -a (-s) $version -m "Codename \"fancy codename\"" $ git push (-n) --tags upstream -EOF +EOM +)" From 0ee6ed13bb5859b0479ebef0de07ced860c948ef Mon Sep 17 00:00:00 2001 From: Ghabry Date: Sat, 29 Apr 2023 15:43:59 +0200 Subject: [PATCH 5/5] CMakePresets: Make Ninja default generator and enable VS2022 Presets --- CMakePresets.json | 172 +++++++++++++++++++++--- builds/cmake/CMakePresets.json.template | 4 - builds/cmake/CMakePresetsBase.json | 1 + 3 files changed, 157 insertions(+), 20 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 7886b5d8..45aa431f 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -79,45 +79,137 @@ ] }, { - "name": "windows-x86", - "displayName": "Windows (x86)", - "hidden": true, + "name": "windows-x86-parent", "cacheVariables": { "VCPKG_TARGET_TRIPLET": "x86-windows-static" }, - "inherits": "win-user" + "inherits": "win-user", + "hidden": true }, { - "name": "windows-x86-vs2022", - "displayName": "Windows (x86) using Visual Studio 2022", - "hidden": true, + "name": "windows-x86-debug", + "displayName": "Windows (x86) (Debug)", + "inherits": [ + "windows-x86-parent", + "type-debug" + ] + }, + { + "name": "windows-x86-relwithdebinfo", + "displayName": "Windows (x86) (RelWithDebInfo)", + "inherits": [ + "windows-x86-parent", + "type-relwithdebinfo" + ] + }, + { + "name": "windows-x86-release", + "displayName": "Windows (x86) (Release)", + "inherits": [ + "windows-x86-parent", + "type-release" + ] + }, + { + "name": "windows-x86-vs2022-parent", "generator": "Visual Studio 17 2022", "architecture": "Win32", "cacheVariables": { "VCPKG_TARGET_TRIPLET": "x86-windows-static" }, - "inherits": "win-user" + "inherits": "win-user", + "hidden": true }, { - "name": "windows-x64", - "displayName": "Windows (x64)", - "hidden": true, + "name": "windows-x86-vs2022-debug", + "displayName": "Windows (x86) using Visual Studio 2022 (Debug)", + "inherits": [ + "windows-x86-vs2022-parent", + "type-debug" + ] + }, + { + "name": "windows-x86-vs2022-relwithdebinfo", + "displayName": "Windows (x86) using Visual Studio 2022 (RelWithDebInfo)", + "inherits": [ + "windows-x86-vs2022-parent", + "type-relwithdebinfo" + ] + }, + { + "name": "windows-x86-vs2022-release", + "displayName": "Windows (x86) using Visual Studio 2022 (Release)", + "inherits": [ + "windows-x86-vs2022-parent", + "type-release" + ] + }, + { + "name": "windows-x64-parent", "architecture": "x64", "cacheVariables": { "VCPKG_TARGET_TRIPLET": "x64-windows-static" }, - "inherits": "win-user" + "inherits": "win-user", + "hidden": true }, { - "name": "windows-x64-vs2022", - "displayName": "Windows (x64) using Visual Studio 2022", - "hidden": true, + "name": "windows-x64-debug", + "displayName": "Windows (x64) (Debug)", + "inherits": [ + "windows-x64-parent", + "type-debug" + ] + }, + { + "name": "windows-x64-relwithdebinfo", + "displayName": "Windows (x64) (RelWithDebInfo)", + "inherits": [ + "windows-x64-parent", + "type-relwithdebinfo" + ] + }, + { + "name": "windows-x64-release", + "displayName": "Windows (x64) (Release)", + "inherits": [ + "windows-x64-parent", + "type-release" + ] + }, + { + "name": "windows-x64-vs2022-parent", "generator": "Visual Studio 17 2022", "architecture": "x64", "cacheVariables": { "VCPKG_TARGET_TRIPLET": "x64-windows-static" }, - "inherits": "win-user" + "inherits": "win-user", + "hidden": true + }, + { + "name": "windows-x64-vs2022-debug", + "displayName": "Windows (x64) using Visual Studio 2022 (Debug)", + "inherits": [ + "windows-x64-vs2022-parent", + "type-debug" + ] + }, + { + "name": "windows-x64-vs2022-relwithdebinfo", + "displayName": "Windows (x64) using Visual Studio 2022 (RelWithDebInfo)", + "inherits": [ + "windows-x64-vs2022-parent", + "type-relwithdebinfo" + ] + }, + { + "name": "windows-x64-vs2022-release", + "displayName": "Windows (x64) using Visual Studio 2022 (Release)", + "inherits": [ + "windows-x64-vs2022-parent", + "type-release" + ] }, { "name": "macos-parent", @@ -482,6 +574,54 @@ "name": "linux-release", "configurePreset": "linux-release" }, + { + "name": "windows-x86-debug", + "configurePreset": "windows-x86-debug" + }, + { + "name": "windows-x86-relwithdebinfo", + "configurePreset": "windows-x86-relwithdebinfo" + }, + { + "name": "windows-x86-release", + "configurePreset": "windows-x86-release" + }, + { + "name": "windows-x86-vs2022-debug", + "configurePreset": "windows-x86-vs2022-debug" + }, + { + "name": "windows-x86-vs2022-relwithdebinfo", + "configurePreset": "windows-x86-vs2022-relwithdebinfo" + }, + { + "name": "windows-x86-vs2022-release", + "configurePreset": "windows-x86-vs2022-release" + }, + { + "name": "windows-x64-debug", + "configurePreset": "windows-x64-debug" + }, + { + "name": "windows-x64-relwithdebinfo", + "configurePreset": "windows-x64-relwithdebinfo" + }, + { + "name": "windows-x64-release", + "configurePreset": "windows-x64-release" + }, + { + "name": "windows-x64-vs2022-debug", + "configurePreset": "windows-x64-vs2022-debug" + }, + { + "name": "windows-x64-vs2022-relwithdebinfo", + "configurePreset": "windows-x64-vs2022-relwithdebinfo" + }, + { + "name": "windows-x64-vs2022-release", + "configurePreset": "windows-x64-vs2022-release" + }, { "name": "macos-debug", "configurePreset": "macos-debug" diff --git a/builds/cmake/CMakePresets.json.template b/builds/cmake/CMakePresets.json.template index 5cc295fb..916d537b 100644 --- a/builds/cmake/CMakePresets.json.template +++ b/builds/cmake/CMakePresets.json.template @@ -24,7 +24,6 @@ { "name": "windows-x86", "displayName": "Windows (x86)", - "hidden": true, "cacheVariables": { "VCPKG_TARGET_TRIPLET": "x86-windows-static" }, @@ -33,7 +32,6 @@ { "name": "windows-x86-vs2022", "displayName": "Windows (x86) using Visual Studio 2022", - "hidden": true, "generator": "Visual Studio 17 2022", "architecture": "Win32", "cacheVariables": { @@ -44,7 +42,6 @@ { "name": "windows-x64", "displayName": "Windows (x64)", - "hidden": true, "architecture": "x64", "cacheVariables": { "VCPKG_TARGET_TRIPLET": "x64-windows-static" @@ -54,7 +51,6 @@ { "name": "windows-x64-vs2022", "displayName": "Windows (x64) using Visual Studio 2022", - "hidden": true, "generator": "Visual Studio 17 2022", "architecture": "x64", "cacheVariables": { diff --git a/builds/cmake/CMakePresetsBase.json b/builds/cmake/CMakePresetsBase.json index 53a2e9ed..15551a52 100644 --- a/builds/cmake/CMakePresetsBase.json +++ b/builds/cmake/CMakePresetsBase.json @@ -5,6 +5,7 @@ "name": "base", "displayName": "base preset", "hidden": true, + "generator": "Ninja", "binaryDir": "${sourceDir}/build/${presetName}", "cacheVariables": { "BUILD_SHARED_LIBS": "OFF",