Skip to content
Snippets Groups Projects
Commit 2e874438 authored by denis's avatar denis
Browse files

[*] change latest url

parent 8fc830ce
No related branches found
No related tags found
1 merge request!293[+] add new web 3 commands - GetDexOrderList, GetDexPairs, GetDexPairRate
......@@ -14,21 +14,21 @@ DapNodeInstallManager::DapNodeInstallManager(bool flag_RK, QObject *parent)
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
m_url = QUrl(QString("https://pub.cellframe.net/linux/cellframe-node/%1/%2/").arg(branch).arg(latest));
m_url = QUrl(QString("https://pub.cellframe.net/linux/cellframe-node/%1/%2").arg(branch).arg(latest));
m_suffix = QString(".deb");
m_labelUrlFile = "-amd64";
m_baseUrl = QString("https://pub.cellframe.net/linux/cellframe-node/%1").arg(branch);
#elif defined (Q_OS_MACOS)
m_url = QUrl(QString("https://pub.cellframe.net/macos/cellframe-node/%1/%2/").arg(branch).arg(latest));//todo: need branch
m_url = QUrl(QString("https://pub.cellframe.net/macos/cellframe-node/%1/%2").arg(branch).arg(latest));//todo: need branch
m_suffix = QString(".pkg");
m_labelUrlFile = "-amd64-signed";
m_baseUrl = QString("https://pub.cellframe.net/macos/cellframe-node/%1").arg(branch);
#elif defined (Q_OS_WIN)
m_url = QUrl(QString("https://pub.cellframe.net/windows/cellframe-node/%1/%2/").arg(branch).arg(latest)); //todo: need branch
m_url = QUrl(QString("https://pub.cellframe.net/windows/cellframe-node/%1/%2").arg(branch).arg(latest)); //todo: need branch
m_suffix = QString(".exe");
m_labelUrlFile = "-installer";
m_baseUrl = QString("https://pub.cellframe.net/windows/cellframe-node/%1").arg(branch);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment