Skip to content

Commit 8f5aa08

Browse files
authored
Merge branch 'develop' into constexpr-in-core
2 parents 61d8540 + 858b05f commit 8f5aa08

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,24 @@ Template for new versions:
5858

5959
## New Features
6060

61+
## Fixes
62+
63+
## Misc Improvements
64+
65+
## Documentation
66+
67+
## API
68+
69+
## Lua
70+
71+
## Removed
72+
73+
# 53.06-r1
74+
75+
## New Tools
76+
77+
## New Features
78+
6179
## Fixes
6280
- `sort`: Using the squad unit selector will no longer cause Dwarf Fortress to crash on exit
6381

0 commit comments

Comments
 (0)