Skip to content

Commit dba9d28

Browse files
authored
Merge branch 'develop' into cj/search-siege-engines
2 parents 30536a6 + a9455d0 commit dba9d28

File tree

19 files changed

+1083
-862
lines changed

19 files changed

+1083
-862
lines changed

.github/workflows/generate-symbols.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
pip install itch-dl
165165
minor=$(echo "${{ inputs.version }}" | cut -d. -f1)
166166
patch=$(echo "${{ inputs.version }}" | cut -d. -f2)
167-
fname="dwarf_fortress_${minor}_${patch}_linux*.tar.bz2"
167+
fname="dwarf_fortress_${minor}_${patch}_linux.tar.bz2"
168168
itch-dl https://kitfoxgames.itch.io/dwarf-fortress --download-to . --api-key $ITCH_API_KEY --filter-files-glob "${fname}"
169169
tar xjf "kitfoxgames/dwarf-fortress/files/${fname}" -C DF_itch
170170
tar xjf dfhack-symbols-linux64-build.tar.bz2 -C DF_itch
@@ -272,7 +272,7 @@ jobs:
272272
pip install itch-dl
273273
minor=$(echo "${{ inputs.version }}" | cut -d. -f1)
274274
patch=$(echo "${{ inputs.version }}" | cut -d. -f2)
275-
fname="dwarf_fortress_${minor}_${patch}_windows*.zip"
275+
fname="dwarf_fortress_${minor}_${patch}_windows.zip"
276276
itch-dl https://kitfoxgames.itch.io/dwarf-fortress --download-to . --api-key $ITCH_API_KEY --filter-files-glob "${fname}"
277277
unzip -d DF_itch "kitfoxgames/dwarf-fortress/files/${fname}"
278278
xml/symbols_gen_windows.sh ${{ inputs.version }} ITCH DF_itch

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_policy(SET CMP0048 NEW)
66
cmake_policy(SET CMP0074 NEW)
77

88
# set up versioning.
9-
set(DF_VERSION "53.05")
9+
set(DF_VERSION "53.06")
1010
set(DFHACK_RELEASE "r1")
1111
set(DFHACK_PRERELEASE FALSE)
1212

docs/changelog.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,25 @@ Template for new versions:
5959
## New Features
6060
- `sort`: Places search widget can search "Siege engines" subtab by name, loaded status, and operator status
6161

62+
## Fixes
63+
64+
## Misc Improvements
65+
- The ``fpause`` console command can now be used to force world generation to pause (as it did prior to version 50).
66+
67+
## Documentation
68+
69+
## API
70+
71+
## Lua
72+
73+
## Removed
74+
75+
# 53.06-r1
76+
77+
## New Tools
78+
79+
## New Features
80+
6281
## Fixes
6382
- `sort`: Using the squad unit selector will no longer cause Dwarf Fortress to crash on exit
6483
- `sort`: Places search widget moved to account for DF's new "Siege engines" subtab

library/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ set(MAIN_HEADERS
4848
include/DFHackVersion.h
4949
include/BitArray.h
5050
include/ColorText.h
51+
include/Commands.h
5152
include/Console.h
5253
include/Core.h
5354
include/CoreDefs.h
@@ -66,6 +67,7 @@ set(MAIN_HEADERS
6667
include/MiscUtils.h
6768
include/Module.h
6869
include/MemAccess.h
70+
include/MemoryPatcher.h
6971
include/ModuleFactory.h
7072
include/PluginLua.h
7173
include/PluginManager.h
@@ -88,6 +90,7 @@ set(MAIN_HEADERS_WINDOWS
8890
set(MAIN_SOURCES
8991
Core.cpp
9092
ColorText.cpp
93+
Commands.cpp
9194
CompilerWorkAround.cpp
9295
DataDefs.cpp
9396
DataIdentity.cpp
@@ -100,6 +103,7 @@ set(MAIN_SOURCES
100103
LuaApi.cpp
101104
DataStatics.cpp
102105
DataStaticsCtor.cpp
106+
MemoryPatcher.cpp
103107
MiscUtils.cpp
104108
Types.cpp
105109
PluginManager.cpp

0 commit comments

Comments
 (0)