diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de286a7b..d25b38e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,7 @@ jobs: combine: true sdk: 'nightly' target: ${{ matrix.config.target }} + bindings: "dankmeme01/bindings" package: name: Package builds diff --git a/mod.json b/mod.json index 005b1c1a..98d9b6a3 100644 --- a/mod.json +++ b/mod.json @@ -1,6 +1,6 @@ { - "geode": "2.0.0", - "version": "v1.0.0", + "geode": "2.0.0-beta.15", + "version": "v1.0.1", "gd": { "win": "2.204", "android": "2.205", diff --git a/src/ui/menu/main/signup_popup.cpp b/src/ui/menu/main/signup_popup.cpp index ee02b4c9..cede9951 100644 --- a/src/ui/menu/main/signup_popup.cpp +++ b/src/ui/menu/main/signup_popup.cpp @@ -138,9 +138,9 @@ void GlobedSignupPopup::onChallengeCompleted(const std::string_view authcode) { }) .expect([this](std::string error) { if (error.empty()) { - this->onFailure("Creating challenge failed: server sent an empty response."); + this->onFailure("Completing challenge failed: server sent an empty response."); } else { - this->onFailure("Creating challenge failed: " + util::format::formatErrorMessage(error) + ""); + this->onFailure("Completing challenge failed: " + util::format::formatErrorMessage(error) + ""); } }) .send();