diff --git a/CMakeLists.txt b/CMakeLists.txt index ceb68bd..b1e67fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,6 +66,8 @@ file(GLOB_RECURSE CRYPTONOTE_SOURCES cryptonote/external/miniupnpc/upnpreplyparse.c cryptonote/src/BlockchainExplorer/BlockchainExplorer.cpp cryptonote/src/BlockchainExplorer/BlockchainExplorerErrors.cpp + cryptonote/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp + cryptonote/src/Serialization/BlockchainExplorerDataSerialization.cpp cryptonote/src/Common/Base58.cpp cryptonote/src/Common/CommandLine.cpp cryptonote/src/Common/Util.cpp @@ -139,7 +141,7 @@ file(GLOB_RECURSE CRYPTONOTE_SOURCES cryptonote/src/PaymentGateService/*.cpp ) -file(GLOB_RECURSE Mnemonics cryptonote/src/mnemonics/*) +file(GLOB_RECURSE Mnemonics cryptonote/src/Mnemonics/*) file(GLOB_RECURSE SOURCES src/*.cpp) file(GLOB_RECURSE HEADERS src/*.h) diff --git a/CryptoNoteWallet.cmake b/CryptoNoteWallet.cmake index 4acb7d8..b6355ad 100644 --- a/CryptoNoteWallet.cmake +++ b/CryptoNoteWallet.cmake @@ -1,4 +1,4 @@ set(CN_PROJECT_NAME "KarboLite") set(CN_CURRENCY_DISPLAY_NAME "Karbo") set(CN_CURRENCY_TICKER "KRB") -set(CN_VERSION 1.0.7) +set(CN_VERSION 1.0.8) diff --git a/cryptonote b/cryptonote index 4cbbd5c..961df6e 160000 --- a/cryptonote +++ b/cryptonote @@ -1 +1 @@ -Subproject commit 4cbbd5c7d185b215e6ed4c2a76a0a1319e51148a +Subproject commit 961df6e005a2b7b599749c061fcc6f0175cae352 diff --git a/src/Gui/Common/MnemonicDialog.cpp b/src/Gui/Common/MnemonicDialog.cpp index 2170b59..161718b 100644 --- a/src/Gui/Common/MnemonicDialog.cpp +++ b/src/Gui/Common/MnemonicDialog.cpp @@ -16,7 +16,7 @@ // along with Karbovanets. If not, see . #include "MnemonicDialog.h" -#include "mnemonics/electrum-words.h" +#include "Mnemonics/electrum-words.h" #include "ui_MnemonicDialog.h" diff --git a/src/Gui/MainWindow/MainWindow.cpp b/src/Gui/MainWindow/MainWindow.cpp index 5158151..e4820d2 100644 --- a/src/Gui/MainWindow/MainWindow.cpp +++ b/src/Gui/MainWindow/MainWindow.cpp @@ -62,7 +62,7 @@ #include "Gui/Options/OptionsDialog.h" #include "Style/Style.h" #include "Gui/Common/RestoreFromMnemonicSeedDialog.h" -#include "mnemonics/electrum-words.h" +#include "Mnemonics/electrum-words.h" #include "CryptoNote.h" #include "crypto/crypto.h" extern "C" diff --git a/src/karbowanecwallet.desktop b/src/karbowanecwallet.desktop index b7a0465..1fab913 100644 --- a/src/karbowanecwallet.desktop +++ b/src/karbowanecwallet.desktop @@ -8,4 +8,4 @@ Type=Application Icon=Karbovanets MimeType=x-scheme-handler/karbowanec; Categories=Office;Finance; -Version=1.0.7 +Version=1.0.8 diff --git a/src/karbowanecwallet.rc b/src/karbowanecwallet.rc index 9db8be9..162ac80 100644 --- a/src/karbowanecwallet.rc +++ b/src/karbowanecwallet.rc @@ -4,8 +4,8 @@ IDI_ICON1 ICON "images\Karbovanets.ico" #define VER_FILEVERSION 1,0,0,0 #define VER_FILEVERSION_STR "1.0.0.0\0" -#define VER_PRODUCTVERSION 1,0,7 -#define VER_PRODUCTVERSION_STR "1.0.7\0" +#define VER_PRODUCTVERSION 1,0,8 +#define VER_PRODUCTVERSION_STR "1.0.8\0" #define VER_FILEDESCRIPTION_STR "Karbo" #define VER_INTERNALNAME_STR "KarboLiteWallet" #define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2016-2017, Karbowanec Developers"