diff --git a/README.md b/README.md index ef0a622..dbcfa2d 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,6 @@ You will be [blocked](https://docs.github.com/en/communities/maintaining-your-sa - **spam** (many messages, flood, very big text walls) - ~~excessive cursing~~ - advertising -- and other obvious **bad** shit +- and other obvious **bad** stuff If you see someone doin that, [create report issue](https://github.com/user95401/Geode-Mod-Comments/issues/new/choose) by template! \ No newline at end of file diff --git a/about.md b/about.md index c527764..391c396 100644 --- a/about.md +++ b/about.md @@ -9,6 +9,6 @@ You will be [blocked](https://docs.github.com/en/communities/maintaining-your-sa - **spam** (many messages, flood, very big text walls) - ~~excessive cursing~~ - *intrusive* advertising -- and other obvious **bad** shit +- and other obvious **bad** stuff If you see someone doin that, [create report issue](https://github.com/user95401/Geode-Mod-Comments/issues/new?assignees=&labels=report&projects=&template=1-REPORT_USER.yml&title=Report+User) by template! \ No newline at end of file diff --git a/mod.json b/mod.json index ef76c33..c98ce7d 100644 --- a/mod.json +++ b/mod.json @@ -8,7 +8,7 @@ }, "id": "user95401.geode-mod-comments", "name": "Mod Comments", - "version": "v1.1.0", + "version": "v1.1.1", "developer": "user95401", "description": "add comments in mod popups", "tags": [ "online", "enhancement", "interface", "content", "developer" ], diff --git a/src/main.cpp b/src/main.cpp index 127162e..24b42f7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -189,7 +189,7 @@ class GitHubAuthPopup : public FLAlertLayer, FLAlertLayerProtocol { std::string error; auto json_val = matjson::parse(data, error); if (error.size() > 0) return b("Error parsing JSON: " + error); - //call the some shit + //call the some stuff if (res->code() < 399) a(json_val); else b(data); } @@ -541,7 +541,7 @@ class IssueCommentItem : public CCLayer { [this, a, filep](web::WebTask::Event* e) { if (web::WebResponse* res = e->getValue()) { std::string data = res->string().unwrapOr(""); - //call the some shit + //call the some stuff if (res->code() < 399) { res->into(filep); a(std::monostate()); @@ -784,7 +784,7 @@ class IssueCommentItem : public CCLayer { auto json = res->json().value_or(matjson::Value()); if (json.contains("message")) data = json["message"].as_string(); if (json["errors"].is_array()) for (auto err : json["errors"].as_array()) data += ", " + err["message"].as_string(); - //call the some shit + //call the some stuff if (res->code() < 399) a(data); else b(data); } @@ -864,7 +864,7 @@ class CommentsLayer : public CCLayer { contentLayer->addChild(item); } - //fix some shit goes when content smaller than scroll + //fix some stuff goes when content smaller than scroll if (contentLayer->getContentSize().height < scroll->getContentSize().height) { contentLayer->setContentSize({ contentLayer->getContentSize().width, @@ -1246,7 +1246,7 @@ void hi() { auto json = res->json().value_or(matjson::Value()); if (json.contains("message")) data = json["message"].as_string(); if (json["errors"].is_array()) for (auto err : json["errors"].as_array()) data += ", " + err["message"].as_string(); - //call the some shit + //call the some stuff if (res->code() < 399) a(data); else b(data); }