git: e954cf469e4a - main - games/vcmi: the port had been updated to version 1.7.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 11 Feb 2026 09:54:00 UTC
The branch main has been updated by danfe:
URL: https://cgit.FreeBSD.org/ports/commit/?id=e954cf469e4aa4842d2c1cb1f0f5921c19e7bee4
commit e954cf469e4aa4842d2c1cb1f0f5921c19e7bee4
Author: Alexey Dokuchaev <danfe@FreeBSD.org>
AuthorDate: 2026-02-11 09:52:54 +0000
Commit: Alexey Dokuchaev <danfe@FreeBSD.org>
CommitDate: 2026-02-11 09:52:54 +0000
games/vcmi: the port had been updated to version 1.7.1
This is the new major version since 1.6.8 released last
April, with plethora of new features and bug fixes.
We must now #include <sys/param.h> explicitly which was
previously sucked in via, roughly, `boost/thread/*' ->
`boost/atomic/*' -> `boost/atomic/detail/platform.hpp'.
Reported by: portscout
---
games/vcmi/Makefile | 18 ++++--
games/vcmi/distinfo | 10 ++--
.../files/patch-lib_network_NetworkConnection.cpp | 9 +--
games/vcmi/pkg-plist | 69 +++++++++++++++++-----
4 files changed, 78 insertions(+), 28 deletions(-)
diff --git a/games/vcmi/Makefile b/games/vcmi/Makefile
index c83dbe30d587..387543143d42 100644
--- a/games/vcmi/Makefile
+++ b/games/vcmi/Makefile
@@ -1,6 +1,5 @@
PORTNAME= vcmi
-PORTVERSION= 1.6.8
-PORTREVISION= 4
+PORTVERSION= 1.7.1
CATEGORIES= games
MAINTAINER= danfe@FreeBSD.org
@@ -13,13 +12,14 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \
libboost_atomic.so:devel/boost-libs \
libfuzzylite.so:devel/fuzzylite \
libminizip.so:archivers/minizip \
+ libsquish.so:graphics/squish \
libtbb.so:devel/onetbb
RUN_DEPENDS= bash:shells/bash
USES= cmake pkgconfig sdl shebangfix
USE_GITHUB= yes
GH_PROJECT= innoextract:inex
-GH_TAGNAME= 9977089:inex
+GH_TAGNAME= 96e9566:inex
GH_SUBDIR= launcher/lib/innoextract:inex
USE_SDL= image2 mixer2 sdl2 ttf2
SHEBANG_FILES= vcmibuilder
@@ -30,18 +30,26 @@ CMAKE_ARGS= -DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON \
PORTDOCS= ChangeLog.md
-OPTIONS_DEFINE= DOCS QT
+OPTIONS_DEFINE= DOCS MMAI QT
OPTIONS_DEFAULT= QT
OPTIONS_SUB= yes
+MMAI_DESC= Experimental machine learning-based combat AI
+MMAI_LIB_DEPENDS= libonnxruntime.so:misc/onnxruntime
+MMAI_CMAKE_OFF= -DENABLE_MMAI:BOOL=OFF
+
QT_DESC= Build Qt-based game launcher and map editor
QT_USES= qt:5
QT_USE= QT=buildtools:build,linguisttools:build,qmake:build \
- QT=core,gui,network,widgets
+ QT=core,gui,network,svg,widgets,xml
QT_CMAKE_OFF= -DENABLE_LAUNCHER:BOOL=OFF -DENABLE_EDITOR:BOOL=OFF
post-patch:
@${REINPLACE_CMD} -e '/QT NAMES/s, Qt6,,' ${WRKSRC}/CMakeLists.txt
+ @${REINPLACE_CMD} -e 's,^target_link_libraries(vcmieditor vcmi,& pthread,' \
+ ${WRKSRC}/mapeditor/CMakeLists.txt
+ @${REINPLACE_CMD} -e 's,^set(vcmiservercommon_LIBS vcmi,& pthread,' \
+ ${WRKSRC}/server/CMakeLists.txt
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
diff --git a/games/vcmi/distinfo b/games/vcmi/distinfo
index 262123a8c2a3..fc344ff10fcb 100644
--- a/games/vcmi/distinfo
+++ b/games/vcmi/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1745524203
-SHA256 (vcmi-vcmi-1.6.8_GH0.tar.gz) = c1cbc74195d5a121f46a8e1b5779ec1b37f85b9c5255324ac52b549a9411a986
-SIZE (vcmi-vcmi-1.6.8_GH0.tar.gz) = 12109092
-SHA256 (vcmi-innoextract-9977089_GH0.tar.gz) = dae4cbf04a0adc6f9d0d3d64f90deda8fd148ced3834a4062b18a1538a26edbe
-SIZE (vcmi-innoextract-9977089_GH0.tar.gz) = 205324
+TIMESTAMP = 1767094318
+SHA256 (vcmi-vcmi-1.7.1_GH0.tar.gz) = d92e7ead515397a58d9b21b605a5876d3f101d81a7c42ccac575e809102c0bde
+SIZE (vcmi-vcmi-1.7.1_GH0.tar.gz) = 12982029
+SHA256 (vcmi-innoextract-96e9566_GH0.tar.gz) = 132a8df8b2b98378b02c21b75d3b3f9d34276472da4b992a12f5a789b1fbc329
+SIZE (vcmi-innoextract-96e9566_GH0.tar.gz) = 216047
diff --git a/games/vcmi/files/patch-lib_network_NetworkConnection.cpp b/games/vcmi/files/patch-lib_network_NetworkConnection.cpp
index 39185ea05624..d0fea44f75f1 100644
--- a/games/vcmi/files/patch-lib_network_NetworkConnection.cpp
+++ b/games/vcmi/files/patch-lib_network_NetworkConnection.cpp
@@ -1,18 +1,19 @@
---- lib/network/NetworkConnection.cpp.orig 2024-05-09 08:25:27 UTC
+--- lib/network/NetworkConnection.cpp.orig 2025-12-30 11:31:58 UTC
+++ lib/network/NetworkConnection.cpp
-@@ -7,6 +7,9 @@
+@@ -7,6 +7,10 @@
* Full text of license available in license.txt file, in main folder
*
*/
+#ifdef __FreeBSD__
++#include <sys/param.h>
+#include <sys/sysctl.h>
+#endif
#include "StdInc.h"
#include "NetworkConnection.h"
-@@ -19,8 +22,15 @@ NetworkConnection::NetworkConnection(INetworkConnectio
+@@ -19,8 +23,15 @@ NetworkConnection::NetworkConnection(INetworkConnectio
+ {
socket->set_option(boost::asio::ip::tcp::no_delay(true));
- socket->set_option(boost::asio::socket_base::keep_alive(true));
+#ifdef __FreeBSD__
+ unsigned long sb_max;
diff --git a/games/vcmi/pkg-plist b/games/vcmi/pkg-plist
index 37f6d8422947..b5375d123f9a 100644
--- a/games/vcmi/pkg-plist
+++ b/games/vcmi/pkg-plist
@@ -5,9 +5,10 @@ bin/vcmiclient
bin/vcmiserver
lib/vcmi/AI/libBattleAI.so
lib/vcmi/AI/libEmptyAI.so
+%%MMAI%%lib/vcmi/AI/libMMAI.so
lib/vcmi/AI/libNullkiller.so
+lib/vcmi/AI/libNullkiller2.so
lib/vcmi/AI/libStupidAI.so
-lib/vcmi/AI/libVCAI.so
lib/vcmi/libvcmi.so
%%QT%%lib/vcmi/libvcmiqt.so
share/applications/vcmiclient.desktop
@@ -48,6 +49,13 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/StackQueueSmall.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/UnitMaxMovementHighlight.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/UnitMovementHighlight.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/adventureLayers.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/actionAttack.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/actionGenie.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/actionInfo.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/actionMove.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/actionReturn.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/actionShoot.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/queueDefend.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/queueWait.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/rangeHighlights/green/empty.png
@@ -68,6 +76,14 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/rangeHighlights/red/topLeft.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/rangeHighlights/red/topLeftCorner.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/battle/rangeHighlights/red/topLeftHalfCorner.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/arrow-back-down.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/arrow-back-hover.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/arrow-back-normal.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/arrow-next-down.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/arrow-next-hover.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/arrow-next-normal.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/back.json
+%%DATADIR%%/Mods/vcmi/Content/Sprites/campaigns/next.json
%%DATADIR%%/Mods/vcmi/Content/Sprites/cprsmall.json
%%DATADIR%%/Mods/vcmi/Content/Sprites/debug/blocked.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/debug/grid.png
@@ -83,6 +99,9 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/checkboxBlueOn.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/checkboxOff.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/checkboxOn.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/checkboxSmall.json
+%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/checkboxSmallOff.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/checkboxSmallOn.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/closeChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/delete-normal.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/delete-pressed.png
@@ -93,6 +112,7 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/iconFolder.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/iconPlayer.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/iconSend.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/removeChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/selectionTabSortDate.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/townBorderBig.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/lobby/townBorderBigActivated.png
@@ -101,13 +121,14 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/mapFormatIcons/vcmi1.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/bordergate.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/borderguard.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/hero-overlay.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/hero.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/keymaster.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/obelisk.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/obeliskVisited.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/portalBidirectional.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/portalEntrance.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/minimapIcons/portalExit.png
-%%DATADIR%%/Mods/vcmi/Content/Sprites/questDialog.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/radialMenu/altDown.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/radialMenu/altDownBottom.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/radialMenu/altUp.png
@@ -144,17 +165,10 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/spellResearch/close.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/spellResearch/reroll.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/spells.json
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/bonus-effects.png
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/button-panel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/cancel-normal.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/cancel-pressed.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/cancelButton.json
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/commander-abilities.png
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/commander-bg.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/icons.png
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/info-panel-0.png
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/info-panel-1.png
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/info-panel-2.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/level-0.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/level-1.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/level-10.png
@@ -167,15 +181,21 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/level-8.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/level-9.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/levels.json
-%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/spell-effects.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/switchModeIcons.json
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/upgrade-normal.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/upgrade-pressed.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/stackWindow/upgradeButton.json
%%DATADIR%%/Mods/vcmi/Content/Sprites/vcmi/creatureIcons/towerLarge.png
%%DATADIR%%/Mods/vcmi/Content/Sprites/vcmi/creatureIcons/towerSmall.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/actionAttack.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/actionGenie.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/actionInfo.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/actionMove.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/actionReturn.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/actionShoot.png
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/queueDefend.png
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/battle/queueWait.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites2x/heroWindow/backpackButtonIcon.png
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/lobby/addChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/lobby/closeChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/lobby/iconPlayer.png
@@ -191,6 +211,7 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/settingsWindow/gear.png
%%DATADIR%%/Mods/vcmi/Content/Sprites2x/stackWindow/icons.png
%%DATADIR%%/Mods/vcmi/Content/Sprites3x/battle/queueDefend.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites3x/heroWindow/backpackButtonIcon.png
%%DATADIR%%/Mods/vcmi/Content/Sprites3x/lobby/addChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites3x/lobby/closeChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites3x/lobby/iconPlayer.png
@@ -198,6 +219,7 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Sprites3x/settingsWindow/gear.png
%%DATADIR%%/Mods/vcmi/Content/Sprites3x/stackWindow/icons.png
%%DATADIR%%/Mods/vcmi/Content/Sprites4x/battle/queueDefend.png
+%%DATADIR%%/Mods/vcmi/Content/Sprites4x/heroWindow/backpackButtonIcon.png
%%DATADIR%%/Mods/vcmi/Content/Sprites4x/lobby/addChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites4x/lobby/closeChannel.png
%%DATADIR%%/Mods/vcmi/Content/Sprites4x/lobby/iconPlayer.png
@@ -211,13 +233,20 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/Video/tutorial/MapZooming.webm
%%DATADIR%%/Mods/vcmi/Content/Video/tutorial/RadialWheel.webm
%%DATADIR%%/Mods/vcmi/Content/Video/tutorial/RightClick.webm
+%%DATADIR%%/Mods/vcmi/Content/config/belarusian.json
+%%DATADIR%%/Mods/vcmi/Content/config/bulgarian.json
%%DATADIR%%/Mods/vcmi/Content/config/chinese.json
%%DATADIR%%/Mods/vcmi/Content/config/czech.json
%%DATADIR%%/Mods/vcmi/Content/config/english.json
+%%DATADIR%%/Mods/vcmi/Content/config/finnish.json
%%DATADIR%%/Mods/vcmi/Content/config/french.json
%%DATADIR%%/Mods/vcmi/Content/config/german.json
+%%DATADIR%%/Mods/vcmi/Content/config/greek.json
%%DATADIR%%/Mods/vcmi/Content/config/hungarian.json
%%DATADIR%%/Mods/vcmi/Content/config/italian.json
+%%DATADIR%%/Mods/vcmi/Content/config/japanese.json
+%%DATADIR%%/Mods/vcmi/Content/config/korean.json
+%%DATADIR%%/Mods/vcmi/Content/config/norwegian.json
%%DATADIR%%/Mods/vcmi/Content/config/polish.json
%%DATADIR%%/Mods/vcmi/Content/config/portuguese.json
%%DATADIR%%/Mods/vcmi/Content/config/rmg/hdmod/aroundamarsh.json
@@ -328,17 +357,20 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/Mods/vcmi/Content/config/rmg/unknownUnused/kite.json
%%DATADIR%%/Mods/vcmi/Content/config/rmg/unknownUnused/upgrade.json
%%DATADIR%%/Mods/vcmi/Content/config/rmg/unknownUnused/wheel.json
+%%DATADIR%%/Mods/vcmi/Content/config/romanian.json
%%DATADIR%%/Mods/vcmi/Content/config/russian.json
%%DATADIR%%/Mods/vcmi/Content/config/spanish.json
%%DATADIR%%/Mods/vcmi/Content/config/spells.json
%%DATADIR%%/Mods/vcmi/Content/config/swedish.json
%%DATADIR%%/Mods/vcmi/Content/config/towerCreature.json
%%DATADIR%%/Mods/vcmi/Content/config/towerFactions.json
+%%DATADIR%%/Mods/vcmi/Content/config/turkish.json
%%DATADIR%%/Mods/vcmi/Content/config/ukrainian.json
%%DATADIR%%/Mods/vcmi/Content/config/vietnamese.json
%%DATADIR%%/Mods/vcmi/mod.json
-%%DATADIR%%/config/ERMU_to_picture.json
%%DATADIR%%/config/NEUTRAL.PAL
+%%DATADIR%%/config/ai/nk2ai/nk2ai-settings.json
+%%DATADIR%%/config/ai/nk2ai/object-priorities.txt
%%DATADIR%%/config/ai/nkai/nkai-settings.json
%%DATADIR%%/config/ai/nkai/object-priorities.txt
%%DATADIR%%/config/ambientSounds.json
@@ -349,10 +381,10 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/biomes.json
%%DATADIR%%/config/bonuses.json
%%DATADIR%%/config/buildingsLibrary.json
-%%DATADIR%%/config/campaignMedia.json
%%DATADIR%%/config/campaignOverrides.json
+%%DATADIR%%/config/campaignRegions.json
%%DATADIR%%/config/campaignSets.json
-%%DATADIR%%/config/campaign_regions.json
+%%DATADIR%%/config/cheats.json
%%DATADIR%%/config/commanders.json
%%DATADIR%%/config/creatures/castle.json
%%DATADIR%%/config/creatures/conflux.json
@@ -365,6 +397,7 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/creatures/special.json
%%DATADIR%%/config/creatures/stronghold.json
%%DATADIR%%/config/creatures/tower.json
+%%DATADIR%%/config/cursors.json
%%DATADIR%%/config/difficulty.json
%%DATADIR%%/config/factions/castle.json
%%DATADIR%%/config/factions/conflux.json
@@ -394,6 +427,7 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/heroes/stronghold.json
%%DATADIR%%/config/heroes/tower.json
%%DATADIR%%/config/highscoreCreatures.json
+%%DATADIR%%/config/keyBindingsConfig.json
%%DATADIR%%/config/mainmenu.json
%%DATADIR%%/config/mapOverrides.json
%%DATADIR%%/config/objects/cartographer.json
@@ -425,12 +459,15 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/schemas/battlefield.json
%%DATADIR%%/config/schemas/biome.json
%%DATADIR%%/config/schemas/bonus.json
+%%DATADIR%%/config/schemas/bonusInstance.json
+%%DATADIR%%/config/schemas/campaignRegion.json
%%DATADIR%%/config/schemas/creature.json
%%DATADIR%%/config/schemas/faction.json
%%DATADIR%%/config/schemas/flaggable.json
%%DATADIR%%/config/schemas/gameSettings.json
%%DATADIR%%/config/schemas/hero.json
%%DATADIR%%/config/schemas/heroClass.json
+%%DATADIR%%/config/schemas/highscoreCreatures.json
%%DATADIR%%/config/schemas/lobbyProtocol/accountCreated.json
%%DATADIR%%/config/schemas/lobbyProtocol/accountJoinsRoom.json
%%DATADIR%%/config/schemas/lobbyProtocol/activateGameRoom.json
@@ -458,11 +495,13 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/schemas/lobbyProtocol/serverProxyLogin.json
%%DATADIR%%/config/schemas/mapHeader.json
%%DATADIR%%/config/schemas/market.json
+%%DATADIR%%/config/schemas/mmaiSettings.json
%%DATADIR%%/config/schemas/mod.json
%%DATADIR%%/config/schemas/object.json
%%DATADIR%%/config/schemas/objectTemplate.json
%%DATADIR%%/config/schemas/objectType.json
%%DATADIR%%/config/schemas/obstacle.json
+%%DATADIR%%/config/schemas/resources.json
%%DATADIR%%/config/schemas/rewardable.json
%%DATADIR%%/config/schemas/river.json
%%DATADIR%%/config/schemas/road.json
@@ -470,13 +509,14 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/schemas/settings.json
%%DATADIR%%/config/schemas/skill.json
%%DATADIR%%/config/schemas/spell.json
+%%DATADIR%%/config/schemas/spellSchool.json
%%DATADIR%%/config/schemas/template.json
%%DATADIR%%/config/schemas/terrain.json
%%DATADIR%%/config/schemas/townBuilding.json
%%DATADIR%%/config/schemas/townSiege.json
%%DATADIR%%/config/schemas/townStructure.json
-%%DATADIR%%/config/shortcutsConfig.json
%%DATADIR%%/config/skills.json
+%%DATADIR%%/config/spellSchools.json
%%DATADIR%%/config/spells/ability.json
%%DATADIR%%/config/spells/adventure.json
%%DATADIR%%/config/spells/moats.json
@@ -490,6 +530,7 @@ share/icons/hicolor/scalable/apps/vcmiclient.svg
%%DATADIR%%/config/widgets/advancedOptionsTab.json
%%DATADIR%%/config/widgets/adventureMap.json
%%DATADIR%%/config/widgets/battleWindow2.json
+%%DATADIR%%/config/widgets/buttons/battleUnitAction.json
%%DATADIR%%/config/widgets/buttons/campaignBonusSelection.json
%%DATADIR%%/config/widgets/buttons/castleInterfaceQuickAccess.json
%%DATADIR%%/config/widgets/buttons/heroBackpack.json