File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 set (CMAKE_OSX_ARCHITECTURES "arm64;x86_64" )
1010endif ()
1111
12- project (argon VERSION 1.1.0 )
12+ project (argon VERSION 1.1.1 )
1313
1414file (GLOB_RECURSE SOURCES
1515 src/*.cpp
Original file line number Diff line number Diff line change 1+ # Best Practices
2+
3+ TODO
Original file line number Diff line number Diff line change 1+ # 1.1.1
2+
3+ * Make library usable without precompiled headers
4+
15# 1.1.0
26
37* Now return an error if a mod tries to perform auth multiple times at once with the same account
Original file line number Diff line number Diff line change 44
55#pragma once
66
7+ #include < Geode/loader/Event.hpp>
8+
79using namespace geode ::prelude;
810
911#ifdef GEODE_IS_WINDOWS
Original file line number Diff line number Diff line change 22
33#include " stages.hpp"
44#include " storage.hpp"
5+ #include " util.hpp"
56
7+ #include < Geode/binding/GameManager.hpp>
68#include < matjson/reflect.hpp>
79#include < matjson/std.hpp>
810#include < asp/time/sleep.hpp>
911#include < asp/data.hpp>
10- #include " util.hpp"
1112
1213using namespace geode ::prelude;
1314using namespace asp ::time;
Original file line number Diff line number Diff line change 11#include " storage.hpp"
2+
3+ #include < Geode/loader/Dirs.hpp>
4+ #include < matjson.hpp>
25#include < asp/fs.hpp>
36
47using namespace geode ::prelude;
Original file line number Diff line number Diff line change 33#include " state.hpp"
44
55#include < Geode/loader/Loader.hpp>
6+ #include < Geode/loader/Mod.hpp>
67#include " external/ServerAPIEvents.hpp"
78
89using namespace geode ::prelude;
910
1011namespace argon ::web {
1112
13+ // TODO: reverse engineer the "encryption" and replace this all with geode base64
14+
1215static std::string base64Encode (const gd::string& data) {
1316 // trust me i did not want to use this but oh well
1417 std::string ret = cocos2d::ZipUtils::base64URLEncode (data);
You can’t perform that action at this time.
0 commit comments