qt/LedOK/cfg.cpp
2022-08-25 18:37:24 +08:00

11 lines
344 B
C++

#include "cfg.h"
#include <QApplication>
#include <QStandardPaths>
const QString UpdVerUrl = "https://www.ledok.cn/download/definitions/updates.json";
QString programsDir() {
static auto rtn = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation) + "/" + QApplication::applicationName() + "/NPrograms";
return rtn;
}