Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Template for new versions:
## Fixes

## Misc Improvements
- The ``fpause`` console command can now be used to force world generation to pause (as it did prior to version 50).

## Documentation

Expand Down
4 changes: 4 additions & 0 deletions library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ set(MAIN_HEADERS
include/DFHackVersion.h
include/BitArray.h
include/ColorText.h
include/Commands.h
include/Console.h
include/Core.h
include/CoreDefs.h
Expand All @@ -66,6 +67,7 @@ set(MAIN_HEADERS
include/MiscUtils.h
include/Module.h
include/MemAccess.h
include/MemoryPatcher.h
include/ModuleFactory.h
include/PluginLua.h
include/PluginManager.h
Expand All @@ -88,6 +90,7 @@ set(MAIN_HEADERS_WINDOWS
set(MAIN_SOURCES
Core.cpp
ColorText.cpp
Commands.cpp
CompilerWorkAround.cpp
DataDefs.cpp
DataIdentity.cpp
Expand All @@ -100,6 +103,7 @@ set(MAIN_SOURCES
LuaApi.cpp
DataStatics.cpp
DataStaticsCtor.cpp
MemoryPatcher.cpp
MiscUtils.cpp
Types.cpp
PluginManager.cpp
Expand Down
Loading