Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellframe-ui-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
cellframe-ui-sdk
Merge requests
!293
[+] add new web 3 commands - GetDexOrderList, GetDexPairs, GetDexPairRate
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[+] add new web 3 commands - GetDexOrderList, GetDexPairs, GetDexPairRate
release-3.1-18
into
master
Overview
0
Commits
10
Pipelines
0
Changes
8
Merged
Denis Sumin
requested to merge
release-3.1-18
into
master
1 month ago
Overview
0
Commits
10
Pipelines
0
Changes
8
Expand
👍
0
👎
0
Merge request reports
Compare
master
version 5
8fc830ce
1 month ago
version 4
fde47b49
1 month ago
version 3
88e2a7a5
1 month ago
version 2
5ef7efd4
1 month ago
version 1
434157ad
1 month ago
master (base)
and
latest version
latest version
2e874438
10 commits,
1 month ago
version 5
8fc830ce
9 commits,
1 month ago
version 4
fde47b49
7 commits,
1 month ago
version 3
88e2a7a5
5 commits,
1 month ago
version 2
5ef7efd4
3 commits,
1 month ago
version 1
434157ad
1 commit,
1 month ago
8 files
+
76
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
chain/wallet/DapConfigManager/DapNodeInstallManager.cpp
+
3
−
3
Options
@@ -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
);
Loading