Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into nogeo
Browse files Browse the repository at this point in the history
  • Loading branch information
cipig committed Sep 4, 2023
2 parents 8da7db7 + 53f81e5 commit c3884c3
Show file tree
Hide file tree
Showing 16 changed files with 144 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Please describe what you expected to happen.

**Additional context**
- Add any related context about the problem here (e.g. screen resolution, mining activity on address)
- Attach [log files](https://forum.komodoplatform.com/t/accessing-atomicdex-desktop-log-files/540)
- Attach [log files](https://forum.komodoplatform.com/t/accessing-komodo-wallet-desktop-log-files/540)
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/support.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ assignees: ''
---

[Komodo Platform Discord Support Channel](https://discord.gg/RRZ8hzc)
[Komodo Platform Forum](https://forum.komodoplatform.com/t/atomicdex-desktop-collection/541)
[Komodo Platform Forum](https://forum.komodoplatform.com/t/komodo-wallet-desktop-collection/541)
[Develper Documentation](https://developers.komodoplatform.com/)
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: AtomicDex-Desktop CD releases
name: komodo-wallet-desktop CD releases

on:
push:
Expand Down
35 changes: 24 additions & 11 deletions .github/workflows/atomicdex-desktop-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: AtomicDex-Desktop CI
name: komodo-wallet-desktop CI

on:
push:
Expand All @@ -16,8 +16,8 @@ env:
DEX_WEBSITE: "https://atomicdex.io/"
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/b/vcpkg_cache
VCPKG_BINARY_SOURCES: clear;x-gha,readwrite
RUNVCPKG_VCPKG_ROOT: ${{ github.workspace }}\atomicDEX-Desktop\ci_tools_atomic_dex\vcpkg-repo
VCPKG_ROOT: ${{ github.workspace }}\atomicDEX-Desktop\ci_tools_atomic_dex\vcpkg-repo
RUNVCPKG_VCPKG_ROOT: ${{ github.workspace }}\komodo-wallet-desktop\ci_tools_atomic_dex\vcpkg-repo
VCPKG_ROOT: ${{ github.workspace }}\komodo-wallet-desktop\ci_tools_atomic_dex\vcpkg-repo

jobs:

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Install QT (macOS)
if: runner.os == 'macOS'
uses: jurplel/install-qt-action@v3.0.0
uses: jurplel/install-qt-action@v3.3.0
with:
version: ${{ matrix.qt }}
host: ${{ matrix.host }}
Expand All @@ -124,7 +124,7 @@ jobs:

- name: Install QT (Linux)
if: runner.os == 'Linux'
uses: jurplel/install-qt-action@v3.0.0
uses: jurplel/install-qt-action@v3.3.0
with:
version: ${{ matrix.qt }}
host: ${{ matrix.host }}
Expand All @@ -136,7 +136,7 @@ jobs:

- name: Install QT (Windows)
if: runner.os == 'Windows'
uses: jurplel/install-qt-action@v3.0.0
uses: jurplel/install-qt-action@v3.3.0
with:
version: ${{ matrix.qt }}
host: ${{ matrix.host }}
Expand All @@ -160,6 +160,17 @@ jobs:
export PATH=/home/runner/.nimble/bin:$PATH
chmod +x /home/runner/.choosenim/toolchains/nim-1.6.10/bin/*
- name: Install nim (MacOS)
if: runner.os == 'macOS'
run: |
echo "CHOOSENIM_CHOOSE_VERSION=1.6.10" >> $GITHUB_ENV
export CHOOSENIM_CHOOSE_VERSION=1.6.10
curl https://nim-lang.org/choosenim/init.sh > choosenim.sh
chmod +x choosenim.sh
./choosenim.sh -y
export PATH=/Users/runner/.nimble/bin:$PATH
chmod +x /Users/runner/.choosenim/toolchains/nim-1.6.10/bin/*
- name: Install deps (Linux)
if: runner.os == 'Linux'
run: |
Expand Down Expand Up @@ -191,7 +202,7 @@ jobs:
vcpkgJsonGlob: 'vcpkg.json'

- name: import code signing certificates (macos)
if: runner.os == 'macOS' && 'KomodoPlatform/atomicDEX-Desktop' == github.repository
if: runner.os == 'macOS' && 'KomodoPlatform/komodo-wallet-desktop' == github.repository
uses: Apple-Actions/import-codesign-certs@v1
with:
keychain: ${{ github.run_id }}
Expand All @@ -200,7 +211,7 @@ jobs:
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}

- name: import installer code signing certificates (macos)
if: runner.os == 'macOS' && 'KomodoPlatform/atomicDEX-Desktop' == github.repository
if: runner.os == 'macOS' && 'KomodoPlatform/komodo-wallet-desktop' == github.repository
uses: apple-actions/import-codesign-certs@v1
with:
keychain: ${{ github.run_id }}
Expand All @@ -226,6 +237,7 @@ jobs:
export ASC_PUBLIC_ID="${{ secrets.ASC_PUBLIC_ID }}"
export QT_INSTALL_CMAKE_PATH=${{ github.workspace }}/Qt/${{ matrix.qt }}/clang_64/lib/cmake
export QT_ROOT=${{ github.workspace }}/Qt/${{ matrix.qt }}
export PATH=/Users/runner/.nimble/bin:$PATH
export MACOSX_DEPLOYMENT_TARGET=10.15
export CC=clang
export CXX=clang++
Expand Down Expand Up @@ -347,7 +359,7 @@ jobs:
- name: Running Tests (Linux)
working-directory: ci_tools_atomic_dex
continue-on-error: true
if: runner.os == 'Linux' && 'KomodoPlatform/atomicDEX-Desktop' == github.repository
if: runner.os == 'Linux' && 'KomodoPlatform/komodo-wallet-desktop' == github.repository
run: |
export REPORT_CI_TOKEN=${{ secrets.REPORT_CI_TOKEN_SECRET }}
export ATOMICDEX_TEST_SEED=${{ secrets.ATOMICDEX_TEST_SEED }}
Expand All @@ -366,7 +378,7 @@ jobs:
- name: Running Tests (MacOS)
working-directory: ci_tools_atomic_dex
continue-on-error: true
if: runner.os == 'macOS' && 'KomodoPlatform/atomicDEX-Desktop' == github.repository
if: runner.os == 'macOS' && 'KomodoPlatform/komodo-wallet-desktop' == github.repository
run: |
export MAC_SIGN_IDENTITY="${{ secrets.MAC_SIGN_IDENTITY }}"
export INSTALLER_MAC_SIGN_IDENTITY="${{ secrets.INSTALLER_MAC_SIGN_IDENTITY }}"
Expand All @@ -379,6 +391,7 @@ jobs:
export ATOMICDEX_PASSWORD=${{ secrets.ATOMICDEX_PASSWORD }}
export QT_INSTALL_CMAKE_PATH=${{ github.workspace }}/Qt/${{ matrix.qt }}/clang_64/lib/cmake
export QT_ROOT=${{ github.workspace }}/Qt/${{ matrix.qt }}
export PATH=/Users/runner/.nimble/bin:$PATH
export CC=clang
export CXX=clang++
#echo "Running tests"
Expand All @@ -390,7 +403,7 @@ jobs:
- name: Running Tests (Windows)
shell: powershell
continue-on-error: true
if: runner.os == 'Windows' && 'KomodoPlatform/atomicDEX-Desktop' == github.repository
if: runner.os == 'Windows' && 'KomodoPlatform/komodo-wallet-desktop' == github.repository
run: |
#echo "Running tests"
$Env:REPORT_CI_TOKEN = "${{ secrets.REPORT_CI_TOKEN_SECRET }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-release-vt.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: AtomicDex-Desktop VirustTotal Release
name: komodo-wallet-desktop VirustTotal Release

on:
release:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ FetchContent_Declare(jl777-coins
URL https://github.com/cipig/coins/archive/nogeo.zip)

#FetchContent_Declare(adex-generics-coins
# URL https://github.com/KomodoPlatform/atomicdex-desktop-generics/archive/main.zip)
# URL https://github.com/KomodoPlatform/komodo-wallet-desktop/archive/main.zip)

FetchContent_MakeAvailable(mm2 jl777-coins qmaterial)

Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt.user
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX}
-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C}
-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx}</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\MSI\atomicDEX-Desktop\build</value>
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:\Users\MSI\komodo-wallet-desktop\build</value>
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
Expand Down Expand Up @@ -223,7 +223,7 @@
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/MSI/atomicDEX-Desktop/build/bin</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/MSI/komodo-wallet-desktop/build/bin</value>
</valuemap>
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.1">
<value type="QString" key="Analyzer.Perf.CallgraphMode">dwarf</value>
Expand Down Expand Up @@ -294,7 +294,7 @@
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/MSI/atomicDEX-Desktop/build/bin</value>
<value type="QString" key="RunConfiguration.WorkingDirectory.default">C:/Users/MSI/komodo-wallet-desktop/build/bin</value>
</valuemap>
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">2</value>
</valuemap>
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
<img src="https://img.shields.io/github/issues-pr-closed/komodoplatform/komodo-wallet-desktop" alt="pulls closed">
</a>
<br/>
<a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/actions/workflows/atomicdex-desktop-ci.yml">
<img src="https://github.com/KomodoPlatform/komodo-wallet-desktop/actions/workflows/atomicdex-desktop-ci.yml/badge.svg?branch=master" alt="build status">
<a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/actions/workflows/komodo-wallet-desktop-ci.yml">
<img src="https://github.com/KomodoPlatform/komodo-wallet-desktop/actions/workflows/komodo-wallet-desktop-ci.yml/badge.svg?branch=master" alt="build status">
</a>
<a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/releases">
<img src="https://img.shields.io/github/v/release/komodoplatform/komodo-wallet-desktop" alt="release version">
Expand Down Expand Up @@ -108,44 +108,44 @@ Check out Komodo Wallet mobile, available for [Android and iOS](https://atomicde
<table>
<tr>
<td align="center">
<a href="https://github.com/Milerius"><img src="https://avatars1.githubusercontent.com/u/21139416?s=400&u=12e0a99353ae95365801542b85e2fd69abd44a81&v=4" width="100px;" alt="Milerius"/><br /><sub><b>Milerius</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=Milerius" title="Lead Back-End Dev / Code">✍️💻</a>
<a href="https://github.com/Milerius"><img src="https://avatars1.githubusercontent.com/u/21139416?s=400&u=12e0a99353ae95365801542b85e2fd69abd44a81&v=4" width="100px;" alt="Milerius"/><br /><sub><b>Milerius</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=Milerius" title="Lead Back-End Dev / Code">✍️💻</a>
</td>
<td align="center">
<a href="https://github.com/SylEze"><img src="https://avatars1.githubusercontent.com/u/14373103?s=460&u=b303a2d2261008814800c2d7809efc6af685a460&v=4"width="100px;" alt="syl"/><br /><sub><b>syl</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=SylEze" title="Frontend and Back-End Dev / Code">✍️💻</a>
<a href="https://github.com/SylEze"><img src="https://avatars1.githubusercontent.com/u/14373103?s=460&u=b303a2d2261008814800c2d7809efc6af685a460&v=4"width="100px;" alt="syl"/><br /><sub><b>syl</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=SylEze" title="Frontend and Back-End Dev / Code">✍️💻</a>
</td>
<td align="center">
<a href="https://github.com/naezith"><img src="https://avatars2.githubusercontent.com/u/6732486?s=400&u=5d242e560be002ad4af597dd284eb3242ab28016&v=4" width="100px;" alt="naezith"/><br /><sub><b>naezith</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=naezith" title="Front-End Dev / Code">✍️💻</a>
<a href="https://github.com/naezith"><img src="https://avatars2.githubusercontent.com/u/6732486?s=400&u=5d242e560be002ad4af597dd284eb3242ab28016&v=4" width="100px;" alt="naezith"/><br /><sub><b>naezith</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=naezith" title="Front-End Dev / Code">✍️💻</a>
</td>
<td align="center">
<a href="https://github.com/ssakone"><img src="https://avatars.githubusercontent.com/u/39985611?v=4" width="100px;" alt="ssakone"/><br /><sub><b>ssakone</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=ssakone" title="Front-End Dev / Code">✍️💻</a>
<a href="https://github.com/ssakone"><img src="https://avatars.githubusercontent.com/u/39985611?v=4" width="100px;" alt="ssakone"/><br /><sub><b>ssakone</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=ssakone" title="Front-End Dev / Code">✍️💻</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/tonymorony"><img src="https://avatars3.githubusercontent.com/u/24797699?s=400&u=335984bcb93856f260ac6d139b18f0c596306e08&v=4" width="100px;" alt="Anton TonyL Lysakov"/><br /><sub><b>Anton "TonyL" Lysakov</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=tonymorony" title="Lead QA / CI">🛠💻</a>
<a href="https://github.com/tonymorony"><img src="https://avatars3.githubusercontent.com/u/24797699?s=400&u=335984bcb93856f260ac6d139b18f0c596306e08&v=4" width="100px;" alt="Anton TonyL Lysakov"/><br /><sub><b>Anton "TonyL" Lysakov</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=tonymorony" title="Lead QA / CI">🛠💻</a>
</td>
<td align="center">
<a href="https://github.com/ca333"><img src="https://avatars3.githubusercontent.com/u/10762374?s=60&v=4" width="100px;" alt="ca333"/><br /><sub><b>ca333</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=ca333" title="Chief Technology Officer">:penguin: :guardsman:</a>
<a href="https://github.com/ca333"><img src="https://avatars3.githubusercontent.com/u/10762374?s=60&v=4" width="100px;" alt="ca333"/><br /><sub><b>ca333</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=ca333" title="Chief Technology Officer">:penguin: :guardsman:</a>
</td>
<td align="center">
<a href="https://github.com/smk762"><img src="https://i.imgur.com/gAD7BxX.jpg" width="100px;" alt="smk762"/><br /><sub><b>smk762</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=smk762" title="QA Engineer">🛠:wolf:</a>
<a href="https://github.com/smk762"><img src="https://i.imgur.com/gAD7BxX.jpg" width="100px;" alt="smk762"/><br /><sub><b>smk762</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=smk762" title="QA Engineer">🛠:wolf:</a>
</td>
<td align="center">
<a href="https://github.com/cipig"><img src="https://avatars0.githubusercontent.com/u/32116761?s=60&v=4" width="100px;" alt="cipig"/><br /><sub><b>cipig</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=cipig" title="System Administrator">✍️💻</a>
<a href="https://github.com/cipig"><img src="https://avatars0.githubusercontent.com/u/32116761?s=60&v=4" width="100px;" alt="cipig"/><br /><sub><b>cipig</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=cipig" title="System Administrator">✍️💻</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/SirSevenG"><img src="https://avatars1.githubusercontent.com/u/44422309?s=60&v=4" width="100px;" alt="SirSevenG"/><br /><sub><b>SirSevenG</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=SirSevenG" title="QA Engineer">🛠💻</a>
<a href="https://github.com/SirSevenG"><img src="https://avatars1.githubusercontent.com/u/44422309?s=60&v=4" width="100px;" alt="SirSevenG"/><br /><sub><b>SirSevenG</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=SirSevenG" title="QA Engineer">🛠💻</a>
</td>
<td align="center">
<a href="https://github.com/dathbezumniy"><img src="https://avatars2.githubusercontent.com/u/11756768?s=60&v=4" width="100px;" alt="dathbezumniy"/><br /><sub><b>dathbezumniy</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=dathbezumniy" title="Junior QA Engineer">🛠💻</a>
<a href="https://github.com/dathbezumniy"><img src="https://avatars2.githubusercontent.com/u/11756768?s=60&v=4" width="100px;" alt="dathbezumniy"/><br /><sub><b>dathbezumniy</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=dathbezumniy" title="Junior QA Engineer">🛠💻</a>
</td>
<td align="center">
<a href="https://github.com/BloodyNora"><img src="https://avatars2.githubusercontent.com/u/4005813?s=60&v=4" width="100px;" alt="BloodyNora"/><br /><sub><b>BloodyNora</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=BloodyNora" title="IT allrounder">🛠💻</a>
<a href="https://github.com/BloodyNora"><img src="https://avatars2.githubusercontent.com/u/4005813?s=60&v=4" width="100px;" alt="BloodyNora"/><br /><sub><b>BloodyNora</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=BloodyNora" title="IT allrounder">🛠💻</a>
</td>
<td align="center">
<a href="https://github.com/zatJUM"><img src="https://avatars3.githubusercontent.com/u/45312760?s=60&v=4" width="100px;" alt="zatJUM"/><br /><sub><b>zatJUM</b></sub></a><br /><a href="https://github.com/KomodoPlatform/AtomicDex-Desktop/commits?author=zatJUM" title="Community Dev">:heart:💻</a>
<a href="https://github.com/zatJUM"><img src="https://avatars3.githubusercontent.com/u/45312760?s=60&v=4" width="100px;" alt="zatJUM"/><br /><sub><b>zatJUM</b></sub></a><br /><a href="https://github.com/KomodoPlatform/komodo-wallet-desktop/commits?author=zatJUM" title="Community Dev">:heart:💻</a>
</td>
</tr>
</table>
Expand All @@ -154,7 +154,7 @@ Check out Komodo Wallet mobile, available for [Android and iOS](https://atomicde

## License

For details please refer to our [license](https://github.com/KomodoPlatform/atomicDEX-Desktop/blob/master/LICENSE).
For details please refer to our [license](https://github.com/KomodoPlatform/komodo-wallet-desktop/blob/master/LICENSE).

This is experimental alpha software - use at your own risk!

Expand Down
2 changes: 1 addition & 1 deletion atomic_defi_design/Dex/Support/SupportModal.qml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ There is a toggle in settings where you can turn on/off the display of these tra
Layout.preferredHeight: column_layout.height
hoverEnabled: true

onClicked: Qt.openUrlExternally("https://github.com/KomodoPlatform/atomicDEX-Desktop/pull/2296")
onClicked: Qt.openUrlExternally("https://github.com/KomodoPlatform/komodo-wallet-desktop/pull/2296")

ColumnLayout
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define MyAppName "GleecDEX-Desktop"
#define MyAppVersion "0.5.0"
#define MyAppPublisher "Komodo Platform"
#define MyAppURL "https://github.com/KomodoPlatform/atomicDEX-Desktop"
#define MyAppURL "https://github.com/KomodoPlatform/komodo-wallet-desktop"
#define MyAppExeName "GleecDEX.exe"
#define MyUserName "smk"
#define CommitHash "cc57ab3"
Expand Down
2 changes: 1 addition & 1 deletion ci_tools_atomic_dex/util/compare_themes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Usage: `./compare_themes.py`
'''

REPO_URL = "https://raw.githubusercontent.com/KomodoPlatform/atomicDEX-Desktop"
REPO_URL = "https://raw.githubusercontent.com/KomodoPlatform/komodo-wallet-desktop"
BRANCHES = ['smartdex', 'GleecDEX', 'shibadex']


Expand Down
2 changes: 1 addition & 1 deletion cmake/cfg_hash.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if (UNIX)
# execute_process(COMMAND bash -c "git ls-remote https://github.com/KomodoPlatform/atomicdex-desktop-generics refs/heads/main | cut -f 1 | tr -d '\n'"
# execute_process(COMMAND bash -c "git ls-remote https://github.com/KomodoPlatform/komodo-wallet-desktop-generics refs/heads/main | cut -f 1 | tr -d '\n'"
# OUTPUT_VARIABLE GENERICS_VERSION_ID
# )
# if (NOT EXISTS ${GENERICS_VERSION_ID}.cfg_hash)
Expand Down
Loading

0 comments on commit c3884c3

Please sign in to comment.