qt/LedOK/cfg.cpp
2024-02-21 18:08:50 +08:00

11 lines
303 B
C++

#include "cfg.h"
#include <QApplication>
#include <QStandardPaths>
const QString UpdVerUrl = "https://www.ledok.cn/download/LedOK Express Updates.json";
QString programsDir() {
static auto rtn = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + "/programs";
return rtn;
}