Skip to content

Commit 30a866f

Browse files
authored
Merge branch 'geode-sdk:main' into scrollable-descriptions
2 parents e583a2d + 4d6c173 commit 30a866f

File tree

137 files changed

+1011
-292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+1011
-292
lines changed

CMakeLists.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ endif()
237237

238238
set(MAT_JSON_AS_INTERFACE ON)
239239
CPMAddPackage("gh:geode-sdk/[email protected]")
240-
CPMAddPackage("gh:geode-sdk/json@3.1.5")
240+
CPMAddPackage("gh:geode-sdk/json@3.2.0")
241241
CPMAddPackage("gh:fmtlib/fmt#11.0.2")
242242

243243
target_compile_definitions(${PROJECT_NAME} INTERFACE MAT_JSON_DYNAMIC=1)
@@ -332,7 +332,6 @@ elseif (EXISTS ${GEODE_PLATFORM_BIN_PATH})
332332
else()
333333
message(FATAL_ERROR
334334
"No valid loader binary to link to! Install pre-built binaries with `geode sdk install-binaries`, "
335-
"or build Geode from source and add `set(GEODE_LINK_NIGHTLY ON)` to your CMakeLists.txt "
336-
"in the line before calling add_subdirectory for Geode."
335+
"or build Geode from source."
337336
)
338337
endif()

loader/include/Geode/Loader.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "loader/Log.hpp"
66
#include "loader/Mod.hpp"
77
#include "loader/ModEvent.hpp"
8+
#include "loader/EventV2.hpp"
89
#include "loader/Setting.hpp"
910
#include "loader/Dirs.hpp"
1011

loader/include/Geode/c++stl/gnustl/stl_algobase.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
990990
typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
991991
__glibcxx_requires_partitioned_lower(__first, __last, __val);
992992

993-
return std::__lower_bound(__first, __last, __val,
993+
return geode::stl::__lower_bound(__first, __last, __val,
994994
__gnu_cxx::__ops::__iter_less_val());
995995
}
996996

0 commit comments

Comments
 (0)