diff --git a/CMakeLists.txt b/CMakeLists.txt index 78790a4f9..2d1ded60b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -229,11 +229,11 @@ if(WIN32) # Download zlib on Windows set(ZLIB_DOWNLOAD_DIR ${CMAKE_SOURCE_DIR}/depends/zlib/lib/win${DFHACK_BUILD_ARCH}) if(${DFHACK_BUILD_ARCH} STREQUAL "64") - download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/win64-zlib.lib" + download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/win64-zlib.lib" ${ZLIB_DOWNLOAD_DIR}/zlib.lib "a3b2fc6b68efafa89b0882e354fc8418") else() - download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/win32-zlib.lib" + download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/win32-zlib.lib" ${ZLIB_DOWNLOAD_DIR}/zlib.lib "f4ebaa21d9de28566e88b1edfcdff901") endif() @@ -250,11 +250,11 @@ if(WIN32) # (DFHack doesn't require this at build time, so no need to move it to the build folder) set(SDLREAL_DOWNLOAD_DIR ${CMAKE_SOURCE_DIR}/package/windows/win${DFHACK_BUILD_ARCH}) if(${DFHACK_BUILD_ARCH} STREQUAL "64") - download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/win64-SDL.dll" + download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/win64-SDL.dll" ${SDLREAL_DOWNLOAD_DIR}/SDLreal.dll "1ae242c4b94cb03756a1288122a66faf") else() - download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/win32-SDL.dll" + download_file("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/win32-SDL.dll" ${SDLREAL_DOWNLOAD_DIR}/SDLreal.dll "5a09604daca6b2b5ce049d79af935d6a") endif() @@ -274,7 +274,7 @@ if(APPLE) if(${DFHACK_BUILD_ARCH} STREQUAL "64") if(${LIBSTDCXX_GCC_VER} STREQUAL "48") - download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/osx64-gcc48-libstdcxx.6.dylib.gz" + download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/osx64-gcc48-libstdcxx.6.dylib.gz" "gz" ${LIBSTDCXX_DOWNLOAD_DIR}/libstdc++.6.dylib.gz "cf26ed588be8e83c8e3a49919793b416" @@ -282,7 +282,7 @@ if(APPLE) "16dc6dbd4ecde7f9b95bb6dc91f07404") else() # GCC 7 - download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/osx64-gcc7-libstdcxx.6.dylib.gz" + download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/osx64-gcc7-libstdcxx.6.dylib.gz" "gz" ${LIBSTDCXX_DOWNLOAD_DIR}/libstdc++.6.dylib.gz "81314b7846f9e8806409bef2160c76e6" @@ -293,7 +293,7 @@ if(APPLE) else() # 32-bit if(${LIBSTDCXX_GCC_VER} STREQUAL "48") - download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/osx32-gcc48-libstdcxx.6.dylib.gz" + download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/osx32-gcc48-libstdcxx.6.dylib.gz" "gz" ${LIBSTDCXX_DOWNLOAD_DIR}/libstdc++.6.dylib.gz "40f3d83871b114f0279240626311621b" @@ -301,7 +301,7 @@ if(APPLE) "c3f5678b8204917e03870834902c3e8b") else() # GCC 7 - download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/osx32-gcc7-libstdcxx.6.dylib.gz" + download_file_unzip("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/osx32-gcc7-libstdcxx.6.dylib.gz" "gz" ${LIBSTDCXX_DOWNLOAD_DIR}/libstdc++.6.dylib.gz "dbd213171f66edb90d204d525f10c969" diff --git a/plugins/ruby/CMakeLists.txt b/plugins/ruby/CMakeLists.txt index f1ef12ac5..c2c80e79e 100644 --- a/plugins/ruby/CMakeLists.txt +++ b/plugins/ruby/CMakeLists.txt @@ -9,7 +9,7 @@ IF (DOWNLOAD_RUBY) IF(${DFHACK_BUILD_ARCH} STREQUAL 64) # MESSAGE("No ruby lib for 64-bit OS X yet") ELSE() - DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/osx32-libruby187.dylib.gz" + DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/osx32-libruby187.dylib.gz" "gz" ${RUBYLIB}.gz "e9bc4263557e652121b055a46abb4f97" @@ -20,14 +20,14 @@ IF (DOWNLOAD_RUBY) SET(RUBYLIB ${CMAKE_CURRENT_SOURCE_DIR}/linux${DFHACK_BUILD_ARCH}/libruby.so) SET(RUBYLIB_INSTALL_NAME "libruby.so") IF(${DFHACK_BUILD_ARCH} STREQUAL 64) - DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/linux64-libruby187.so.gz" + DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/linux64-libruby187.so.gz" "gz" ${RUBYLIB}.gz "8eb757bb9ada08608914d8ca8906c427" ${RUBYLIB} "e8c36a06f031cfbf02def28169bb5f1f") ELSE() - DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/linux32-libruby187.so.gz" + DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/linux32-libruby187.so.gz" "gz" ${RUBYLIB}.gz "2d06f5069ff07ea934ecd40db55a4ac5" @@ -38,14 +38,14 @@ IF (DOWNLOAD_RUBY) SET(RUBYLIB ${CMAKE_CURRENT_SOURCE_DIR}/win${DFHACK_BUILD_ARCH}/libruby.dll) SET(RUBYLIB_INSTALL_NAME "libruby.dll") IF(${DFHACK_BUILD_ARCH} STREQUAL 64) - DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/win64-libruby200.dll.gz" + DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/win64-libruby200.dll.gz" "gz" ${RUBYLIB}.gz "81db54a8b8b3090c94c6ae2147d30b8f" ${RUBYLIB} "8a8564418aebddef3dfee1e96690e713") ELSE() - DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.43.05/win32-libruby187.dll.gz" + DOWNLOAD_FILE_UNZIP("https://github.com/DFHack/dfhack-bin/releases/download/0.44.09/win32-libruby187.dll.gz" "gz" ${RUBYLIB}.gz "ffc0f1b5b33748e2a36128e90c97f6b2" diff --git a/plugins/stonesense b/plugins/stonesense index 9bc7acc11..6d38bf884 160000 --- a/plugins/stonesense +++ b/plugins/stonesense @@ -1 +1 @@ -Subproject commit 9bc7acc114e25c7399f4b85c95d544fe7e7c3d8e +Subproject commit 6d38bf884eef435d99df5c4e27b3b36ac6f2ec04