Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ktop into dev
  • Loading branch information
smk762 committed Dec 22, 2023
2 parents ba9e296 + e3259a5 commit 77106ee
Show file tree
Hide file tree
Showing 11 changed files with 602 additions and 574 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- cron: '0 0 * * 1'

env:
DEX_API: "mm2"
DEX_API: "mm2_kmd"
DEX_RPCPORT: 7762
DEX_RPC: "http://127.0.0.1:7762"
DEX_PROJECT_NAME: "komodo-wallet"
Expand Down
33 changes: 27 additions & 6 deletions atomic_defi_design/Dex/Settings/SettingModal.qml
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ Qaterial.Dialog
{
anchors.fill: parent
topPadding: 10
spacing: 15
spacing: 12

ModalLoader
{
Expand Down Expand Up @@ -721,15 +721,15 @@ Qaterial.Dialog
{
Layout.alignment: Qt.AlignVCenter
Layout.fillWidth: true
text: qsTr("Qt version")
text: qsTr("RPC Port")
}

DexCopyableLabel
{
Layout.alignment: Qt.AlignVCenter
text: qtversion
onCopyNotificationTitle: qsTr("Qt Version")
onCopyNotificationMsg: qsTr("Qt Version copied to clipboard.")
text: API.app.settings_pg.get_rpcport()
onCopyNotificationTitle: qsTr("RPC Port")
onCopyNotificationMsg: qsTr("RPC Port copied to clipboard.")
}
}

Expand All @@ -755,6 +755,27 @@ Qaterial.Dialog
}
}

RowLayout
{
width: parent.width - 30
anchors.horizontalCenter: parent.horizontalCenter
height: 60

DexLabel
{
Layout.alignment: Qt.AlignVCenter
Layout.fillWidth: true
text: qsTr("Qt version")
}

DexCopyableLabel
{
Layout.alignment: Qt.AlignVCenter
text: qtversion
onCopyNotificationTitle: qsTr("Qt Version")
onCopyNotificationMsg: qsTr("Qt Version copied to clipboard.")
}
}
}
}
}
Expand All @@ -777,7 +798,7 @@ Qaterial.Dialog

DexAppButton
{
text: qsTr("Search Update")
text: qsTr("Search for Update")
height: 48
radius: 20
leftPadding: 20
Expand Down
Loading

0 comments on commit 77106ee

Please sign in to comment.