2022-08-25 18:37:24 +08:00
|
|
|
|
#include "cfg.h"
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QStandardPaths>
|
2022-01-20 10:08:17 +08:00
|
|
|
|
|
2023-05-18 18:24:40 +08:00
|
|
|
|
const QString UpdVerUrl = "https://www.ledok.cn/download/LedOK Express Updates.json";
|
2022-01-20 10:08:17 +08:00
|
|
|
|
|
2022-08-25 18:37:24 +08:00
|
|
|
|
QString programsDir() {
|
2024-02-21 18:08:50 +08:00
|
|
|
|
static auto rtn = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/programs";
|
2022-08-25 18:37:24 +08:00
|
|
|
|
return rtn;
|
2022-01-20 10:08:17 +08:00
|
|
|
|
}
|