Skip to content

Commit

Permalink
v1.41.00 Released!
Browse files Browse the repository at this point in the history
- Fixed time syncronization in Binance
- Translation fixes, added Korean language
- Fixed bug in trade history of Bittrex exchange
- Improved request interval limits for Poloniex
- Qt 6 support, using QJSEngine instead of QtScript
- Optimized CPU and memory usage
- Updated currency pairs list
  • Loading branch information
JulyIghor committed Mar 5, 2022
1 parent a36eae6 commit 996b5a6
Show file tree
Hide file tree
Showing 185 changed files with 55,280 additions and 37,575 deletions.
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -45,6 +45,15 @@ Next ToDo:

## Change Log

v1.41.00 Released!
- Fixed time syncronization in Binance
- Translation fixes, added Korean language
- Fixed bug in trade history of Bittrex exchange
- Improved request interval limits for Poloniex
- Qt 6 support, using QJSEngine instead of QtScript
- Optimized CPU usage
- Updated currency pairs list

v1.40.55 Released!

- Fixed trader.groupStop(..) script command
Expand Down
2 changes: 1 addition & 1 deletion src/LICENSE.GPL3
@@ -1,6 +1,6 @@
GNU GENERAL PUBLIC LICENSE

The Qt Bitcoin Trader is Copyright (C) 2013-2021 July IGHOR.
The Qt Bitcoin Trader is Copyright (C) 2013-2022 July IGHOR.
I want to create Bitcoin Trader that can be configured for any rule and strategy.
If you want to help me please Donate: 1d6iMwjjNo8ZGYeJBZKXgcgVk9o7fXcjc
For any questions please use contact form at http://gigasoftgroup.com
Expand Down
2 changes: 1 addition & 1 deletion src/QtBitcoinTrader.plist
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>CFBundleVersion</key>
<string>1.40.55</string>
<string>1.41.00</string>
<key>CFBundleName</key>
<string>Qt Bitcoin Trader</string>
<key>CFBundleIconFile</key>
Expand Down
16 changes: 13 additions & 3 deletions src/QtBitcoinTrader_Desktop.pro
Expand Up @@ -14,7 +14,14 @@ LANGUAGE = C++
DEPENDPATH += .
INCLUDEPATH += .

QT += network script widgets texttospeech
QT += network widgets

lessThan(QT_MAJOR_VERSION, 6) {
QT += script texttospeech
} else {
QT += qml
}

unix:!macx { QT += multimedia }
macx { QT += multimedia }

Expand Down Expand Up @@ -50,6 +57,7 @@ macx {

CONFIG(static) {
linux: QTPLUGIN.platforms+=qvnc qxcb
win32: QTPLUGIN.platforms=qwindows
QTPLUGIN.mediaservice=-
QTPLUGIN.playlistformats=-
QTPLUGIN.position=-
Expand Down Expand Up @@ -155,7 +163,8 @@ HEADERS += $${PWD}/script/addrulegroup.h \
$${PWD}/menu/currencymenucell.h \
$${PWD}/utils/currencysignloader.h \
$${PWD}/iniengine.h \
$${PWD}/utils/traderspinbox.h
$${PWD}/utils/traderspinbox.h \
$${PWD}/platform/procdestructor.h

FORMS += $${PWD}/script/addrulegroup.ui \
$${PWD}/script/rulewidget.ui \
Expand Down Expand Up @@ -272,7 +281,8 @@ SOURCES +=$${PWD}/script/addrulegroup.cpp \
$${PWD}/menu/currencymenucell.cpp \
$${PWD}/utils/currencysignloader.cpp \
$${PWD}/iniengine.cpp \
$${PWD}/utils/traderspinbox.cpp
$${PWD}/utils/traderspinbox.cpp \
$${PWD}/platform/procdestructor.cpp

#
# Resources
Expand Down
2 changes: 1 addition & 1 deletion src/QtResource.qrc
Expand Up @@ -95,6 +95,7 @@
<file>Resources/Language/Bulgarian.lng</file>
<file>Resources/Language/Czech.lng</file>
<file>Resources/Language/Turkish.lng</file>
<file>Resources/Language/Korean.lng</file>
<file>Resources/Language/LangList.ini</file>
<file>Resources/Themes/Gray.thm</file>
<file>Resources/Gray.png</file>
Expand Down Expand Up @@ -132,6 +133,5 @@
<file>Resources/Exchanges/Poloniex.ini</file>
<file>Resources/Exchanges/Logos/Poloniex.png</file>
<file>Resources/Exchanges/Logos/Poloniex_Big.png</file>
<file>Resources/Language/Korean.lng</file>
</qresource>
</RCC>

0 comments on commit 996b5a6

Please sign in to comment.