Skip to content

Commit

Permalink
v1.40.30.00 Released!
Browse files Browse the repository at this point in the history
Added new exchange HitBTC
Added more decimals for Fee Calculator
Fixed canceling order via rule or script for Binance
Fixed bug in charts
Fixed wex mirror
Minor cleanup and optimizations
Join Qt Trader HFT Exchange early access https://qttrader.com
  • Loading branch information
JulyIghor committed Nov 24, 2018
1 parent 5872f20 commit 3a7290d
Show file tree
Hide file tree
Showing 31 changed files with 36,723 additions and 24,418 deletions.
2 changes: 1 addition & 1 deletion src/QtBitcoinTrader.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>CFBundleVersion</key>
<string>1.40.23</string>
<string>1.40.30</string>
<key>CFBundleName</key>
<string>Qt Bitcoin Trader</string>
<key>CFBundleIconFile</key>
Expand Down
7 changes: 4 additions & 3 deletions src/QtBitcoinTrader_Desktop.pro
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
lessThan(QT_MAJOR_VERSION, 5) {
error("Qt 4 is no longer supported. In order to compile Qt Bitcoin Trader you need update to Qt5 http://qt.io/download-open-source/");
error("Qt 4 is no longer supported. In order to compile Qt Bitcoin Trader you need update to Qt5 http://qt.io/download-open-source/ or use pre-compiled binaries https://sourceforge.net/projects/bitcointrader/files/");
}

lessThan(QT_MAJOR_VERSION, 6) { lessThan(QT_MINOR_VERSION, 9) {
error("Qt $${QT_VERSION} is no longer supported. In order to compile Qt Bitcoin Trader you need update at least to Qt 5.9 http://qt.io/download-open-source/"); } }
error("Qt $${QT_VERSION} is no longer supported. In order to compile Qt Bitcoin Trader you need update at least to Qt 5.9 http://qt.io/download-open-source/ or use pre-compiled binaries https://sourceforge.net/projects/bitcointrader/files/"); } }

TARGET = QtBitcoinTrader

Expand Down Expand Up @@ -114,6 +114,7 @@ HEADERS += $${PWD}/script/addrulegroup.h \
$${PWD}/exchange/exchange_yobit.h \
$${PWD}/exchange/exchange_binance.h \
$${PWD}/exchange/exchange_bittrex.h \
$${PWD}/exchange/exchange_hitbtc.h \
$${PWD}/feecalculator.h \
$${PWD}/historyitem.h \
$${PWD}/historymodel.h \
Expand Down Expand Up @@ -234,6 +235,7 @@ SOURCES +=$${PWD}/script/addrulegroup.cpp \
$${PWD}/exchange/exchange_yobit.cpp \
$${PWD}/exchange/exchange_binance.cpp \
$${PWD}/exchange/exchange_bittrex.cpp \
$${PWD}/exchange/exchange_hitbtc.cpp \
$${PWD}/feecalculator.cpp \
$${PWD}/historyitem.cpp \
$${PWD}/historymodel.cpp \
Expand Down Expand Up @@ -318,4 +320,3 @@ win32:RC_FILE = $${PWD}/WinResource.rc

macx:ICON = $${PWD}/QtBitcoinTrader.icns
macx:QMAKE_INFO_PLIST = $${PWD}/QtBitcoinTrader.plist

3 changes: 3 additions & 0 deletions src/QtResource.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@
<file>Resources/Exchanges/Bittrex.ini</file>
<file>Resources/Exchanges/Logos/Bittrex.png</file>
<file>Resources/Exchanges/Logos/Bittrex_Big.png</file>
<file>Resources/Exchanges/HitBTC.ini</file>
<file>Resources/Exchanges/Logos/HitBTC.png</file>
<file>Resources/Exchanges/Logos/HitBTC_Big.png</file>
<file>Resources/QtTrader.png</file>
</qresource>
</RCC>
Loading

0 comments on commit 3a7290d

Please sign in to comment.