Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
- name: macOS
os: macos-latest

- name: iOS
os: macos-latest
target: iOS

- name: Android32
os: ubuntu-latest
target: Android32
Expand Down
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
cmake_minimum_required(VERSION 3.21)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_OSX_ARCHITECTURES "x86_64")
if ("${CMAKE_SYSTEM_NAME}" STREQUAL "iOS" OR IOS)
set(CMAKE_OSX_ARCHITECTURES "arm64")
else()
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
endif()
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)

Expand Down
3 changes: 2 additions & 1 deletion mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"gd": {
"win": "2.2081",
"android": "2.2081",
"mac": "2.2081"
"mac": "2.2081",
"ios": "2.2081"
},
"version": "v1.3.2",
"id": "itzkiba.better_progression",
Expand Down
3 changes: 3 additions & 0 deletions src/ProfilePage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,12 @@ class $modify(BP_ProfilePage, ProfilePage) {
currentEXP,
perc);

// RIP wherwin easter egg. you had a good run, but the geode index rules don't really allow this sort of stuff (anymore). sorry!
/*
if (this->m_accountID == 150529) {
desc = "cant you just play the game and enjoy that? if you guys wanna watch meaningless numbers go up you can play cookie clicker or something. go play runescape. those games are all about shit like this";
}
*/

auto alert = FLAlertLayer::create(title.c_str(), desc.c_str(), "OK");
alert->show();
Expand Down