update changelog

This commit is contained in:
altalk23 2024-01-24 22:07:30 +03:00
parent a2b164af29
commit 9307bb1c42
3 changed files with 4 additions and 3 deletions
CHANGELOG.md
loader/src
loader
platform/android

View file

@ -2,6 +2,8 @@
## v2.0.0-beta.9
* Make the index population async as well (3b3e174)
* Run Android file callbacks on main thread (79d9184)
* Implement launch arguments support (a2b164a)
## v2.0.0-beta.8
* Fix TulipHook arm32 relocation of conditional branch - blame Dobby (69b9b2d)

View file

@ -740,7 +740,6 @@ void Loader::Impl::releaseNextMod() {
// e.g. "--geode:arg=My spaced value"
void Loader::Impl::initLaunchArguments() {
auto launchStr = this->getLaunchCommand();
log::debug("Found launch string: {}", launchStr);
auto args = string::split(launchStr, " ");
for (const auto& arg : args) {
if (!arg.starts_with(LAUNCH_ARG_PREFIX)) {

View file

@ -35,6 +35,6 @@ void console::log(std::string const& msg, Severity severity) {
}
void console::messageBox(char const* title, std::string const& info, Severity severity) {
console::log(info, severity);
// cocos2d::CCMessageBox(info.c_str(), title);
// console::log(info, severity);
cocos2d::CCMessageBox(info.c_str(), title);
}