2019-10-26 04:38:12 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-12-19 01:33:27 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2019-10-26 05:58:32 +00:00
|
|
|
namespace inst::config {
|
2019-11-16 02:18:01 +00:00
|
|
|
static const std::string appDir = "sdmc:/switch/Awoo-Installer";
|
|
|
|
static const std::string configPath = appDir + "/config.ini";
|
2019-12-19 02:43:14 +00:00
|
|
|
static const std::string appVersion = "1.3.0";
|
2019-11-16 02:18:01 +00:00
|
|
|
|
2019-10-27 21:16:42 +00:00
|
|
|
extern std::string sigPatchesUrl;
|
2019-12-12 17:36:10 +00:00
|
|
|
extern std::string gAuthKey;
|
2019-12-19 01:33:27 +00:00
|
|
|
extern std::vector<std::string> updateInfo;
|
2019-12-21 00:08:54 +00:00
|
|
|
extern int languageSetting;
|
2019-10-26 04:38:12 +00:00
|
|
|
extern bool ignoreReqVers;
|
2019-11-16 02:18:01 +00:00
|
|
|
extern bool validateNCAs;
|
2019-11-17 20:38:01 +00:00
|
|
|
extern bool overClock;
|
2019-11-06 02:45:26 +00:00
|
|
|
extern bool deletePrompt;
|
2019-12-19 01:33:27 +00:00
|
|
|
extern bool autoUpdate;
|
2019-10-26 04:38:12 +00:00
|
|
|
extern bool gayMode;
|
2019-12-01 06:02:31 +00:00
|
|
|
extern bool usbAck;
|
2019-10-26 04:38:12 +00:00
|
|
|
|
|
|
|
void parseConfig();
|
|
|
|
void setConfig();
|
|
|
|
}
|