File tree 5 files changed +5
-9
lines changed
5 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,6 @@ command -v mono >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires
7
7
TEMPLATE_LAUNCHER=$( python -c " import os; print(os.path.realpath('$0 '))" )
8
8
TEMPLATE_ROOT=$( dirname " ${TEMPLATE_LAUNCHER} " )
9
9
10
- # Mono >= 5.2 on macOS default mono to 64bit. Force 32 bit until the engine is ready
11
- if [ " $( uname -s) " = " Darwin" ] && command -v mono32 > /dev/null 2>&1 ; then
12
- alias mono=mono32
13
- fi
14
-
15
10
# shellcheck source=mod.config
16
11
. " ${TEMPLATE_ROOT} /mod.config"
17
12
Original file line number Diff line number Diff line change 9
9
MOD_ID="example"
10
10
11
11
# The OpenRA engine version to use for this project.
12
- ENGINE_VERSION="release-20171014 "
12
+ ENGINE_VERSION="release-20180218 "
13
13
14
14
# Enable this to make the default OpenRA mods available for use in your mod.yaml
15
15
# Packages list (via $mod references). Accepts values "True" or "False".
@@ -69,7 +69,7 @@ PACKAGING_FAQ_URL="http://wiki.openra.net/FAQ"
69
69
PACKAGING_AUTHORS="Example Mod authors"
70
70
71
71
# The git tag to use for the macOS Launcher files.
72
- PACKAGING_OSX_LAUNCHER_TAG="osx-launcher-20170812 "
72
+ PACKAGING_OSX_LAUNCHER_TAG="osx-launcher-20171118 "
73
73
74
74
# Filename to use for the launcher executable on Windows.
75
75
PACKAGING_WINDOWS_LAUNCHER_NAME="ExampleMod"
Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ Notifications:
36
36
Translations :
37
37
example|english.yaml
38
38
39
+ Hotkeys :
40
+ common|hotkeys/game.yaml
41
+
39
42
LoadScreen : BlankLoadScreen
40
43
41
44
ServerTraits :
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ Section "Game" GAME
90
90
File " ${SRCDIR}\MaxMind.Db.dll"
91
91
File " ${SRCDIR}\GeoLite2-Country.mmdb.gz"
92
92
File " ${SRCDIR}\eluant.dll"
93
- File " ${SRCDIR}\SmarIrc4net.dll"
94
93
File " ${SRCDIR}\rix0rrr.BeaconLib.dll"
95
94
File " ${DEPSDIR}\soft_oal.dll"
96
95
File " ${DEPSDIR}\SDL2.dll"
@@ -197,7 +196,6 @@ Function ${UN}Clean
197
196
Delete $INSTDIR \freetype6.dll
198
197
Delete $INSTDIR \SDL2-CS.dll
199
198
Delete $INSTDIR \OpenAL-CS.dll
200
- Delete $INSTDIR \SmarIrc4net.dll
201
199
Delete $INSTDIR \rix0rrr.BeaconLib.dll
202
200
RMDir /r $INSTDIR \Support
203
201
You can’t perform that action at this time.
0 commit comments