Skip to content

Commit

Permalink
Merge pull request #28 from KomodoPlatform/update-version-082
Browse files Browse the repository at this point in the history
Update version to 0.8.2
  • Loading branch information
smk762 authored Jan 10, 2025
2 parents f319eb0 + 4d33457 commit 030cd86
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 30 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 @@ -26,7 +26,7 @@ Please describe what you expected to happen.
**Operating Environment(s):**
- OS: [e.g. Windows/OSX/Linux. If Linux, include distro. ]
- OS version: [e.g. 7/10/11, 10.13/10.15, 18.04/20.04 ]
- Komodo Wallet Desktop Version: [e.g. 0.8.1]
- Komodo Wallet Desktop Version: [e.g. 0.8.2]
- Build branch: [e.g. master/dev]


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
DEX_PROJECT_NAME: "komodo-wallet"
DEX_DISPLAY_NAME: "Komodo Wallet"
DEX_COMPANY: "KomodoPlatform"
DEX_VERSION: "0.8.1"
DEX_VERSION: "0.8.2"
DEX_WEBSITE: "https://atomicdex.io/"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/atomicdex-desktop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
DEX_PROJECT_NAME: "komodo-wallet"
DEX_DISPLAY_NAME: "Komodo Wallet"
DEX_COMPANY: "KomodoPlatform"
DEX_VERSION: "0.8.1"
DEX_VERSION: "0.8.2"
DEX_WEBSITE: "https://atomicdex.io/"
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/b/vcpkg_cache
VCPKG_BINARY_SOURCES: clear;x-gha,readwrite
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include(vcpkg_prerequisites)
include(qt_prerequisites)
include(cfg_hash)

project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.8.1)
project(${DEX_PROJECT_NAME} LANGUAGES CXX VERSION 0.8.2)
message(STATUS "${PROJECT_NAME} is version ${PROJECT_VERSION}")

include(cmake_default_options)
Expand Down
23 changes: 5 additions & 18 deletions atomic_defi_design/Dex/Sidebar/Center.qml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,14 @@ MouseArea
_walletLine.label.opacity = 0;
_dexLine.label.opacity = 0;
_addressBookLine.label.opacity = 0;
_fiatLine.label.opacity = 0;
}
}
}

NumberAnimation
{
id: waitForSidebarExpansionAnimation
targets: [_portfolioLine.label, _walletLine.label, _dexLine.label, _addressBookLine.label, _fiatLine.label]
targets: [_portfolioLine.label, _walletLine.label, _dexLine.label, _addressBookLine.label]
properties: "opacity"
duration: 200
from: 0
Expand All @@ -66,7 +65,7 @@ MouseArea
NumberAnimation
{
id: labelsOpacityAnimation
targets: [_portfolioLine.label, _walletLine.label, _dexLine.label, _addressBookLine.label, _fiatLine.label]
targets: [_portfolioLine.label, _walletLine.label, _dexLine.label, _addressBookLine.label]
properties: "opacity"
duration: 350
from: 0.0
Expand Down Expand Up @@ -107,11 +106,10 @@ MouseArea

Layout.fillWidth: true
type: Main.LineType.DEX
label.color: timesyncInfo ? Dex.CurrentTheme.foregroundColor : Dex.CurrentTheme.textDisabledColor
label.text: qsTr("DEX") // isExpanded ? qsTr("DEX") : ""
label.color: timesyncInfo ? Dex.CurrentTheme.textDisabledColor : Dex.CurrentTheme.textDisabledColor
label.text: qsTr("DEX")
icon.source: General.image_path + "menu-exchange-white.svg"
onClicked: timesyncInfo ? lineSelected(type) : null
disabled_tt_text: timesyncInfo ? "" : qsTr("DEX is disabled due to system clock synchronization issues. Please check your device time settings.")
disabled_tt_text: qsTr("DEX is temporarily disabled. Please check https://komodoplatform.com/en/blog/ for more details.")
}

FigurativeLine
Expand All @@ -124,16 +122,5 @@ MouseArea
icon.source: General.image_path + "menu-news-white.svg"
onClicked: lineSelected(type)
}

FigurativeLine
{
id: _fiatLine

label.enabled: false
icon.enabled: false
Layout.fillWidth: true
label.text: qsTr("Fiat") // isExpanded ? qsTr("Fiat") : ""
icon.source: General.image_path + "bill.svg"
}
}
}
2 changes: 2 additions & 0 deletions atomic_defi_design/Dex/Sidebar/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ Item
anchors.topMargin: 70
onLineSelected:
{
if (lineType === Main.LineType.DEX)
return;
if (currentLineType === lineType)
return;
currentLineType = lineType;
Expand Down
1 change: 1 addition & 0 deletions atomic_defi_design/Dex/Wallet/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,7 @@ Item
{
Layout.preferredWidth: 165
Layout.preferredHeight: 40
visible: false

DefaultButton
{
Expand Down
2 changes: 1 addition & 1 deletion cmake/project.metadata.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set(DEX_DISPLAY_NAME "Komodo Wallet")
set(DEX_MAINTENANCE_TOOL_NAME "Komodo Wallet Maintenance Tool")
set(DEX_COMPANY "KomodoPlatform")
set(DEX_WEBSITE "https://atomicdex.io/")
set(DEX_VERSION "0.8.1")
set(DEX_VERSION "0.8.2")
set(DEX_SUPPORT_PAGE "https://support.komodoplatform.com/support/home")
set(DEX_DISCORD "https://komodoplatform.com/discord")
set(DEX_TWITTER "https://twitter.com/AtomicDEX")
Expand Down
8 changes: 4 additions & 4 deletions src/core/atomicdex/version/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,24 @@ namespace atomic_dex
constexpr const char*
get_version()
{
return "0.8.1-beta";
return "0.8.2-beta";
}

constexpr int
get_num_version() noexcept
{
return 81;
return 82;
}

constexpr const char*
get_raw_version()
{
return "0.8.1";
return "0.8.2";
}

constexpr const char*
get_precedent_raw_version()
{
return "0.8.0";
return "0.8.1";
}
} // namespace atomic_dex
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "komodo-wallet-desktop",
"version-string": "0.8.1",
"version-string": "0.8.2",
"dependencies": [
"entt",
"boost-multiprecision",
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "0.8.1",
"update": "recommended"
"version": "0.8.2",
"update": "required"
}

0 comments on commit 030cd86

Please sign in to comment.