Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c7e951adb | |||
| 08b98a8775 | |||
| 0f307a498d |
@@ -1,4 +1,4 @@
|
||||
# Triangles (TRI) - v5.0.0.0 "Black Pharao"
|
||||
# Cryptographic Triangles (TRI) - v5.1.4
|
||||
|
||||
Triangles is a privacy-focused cryptocurrency featuring Proof-of-Stake consensus, Tor v3 onion routing, and built-in encrypted messaging. Originally launched in July 2014, the chain was revived in March 2026 after being frozen since December 2022.
|
||||
|
||||
|
||||
+3
-3
@@ -6,9 +6,9 @@
|
||||
//
|
||||
|
||||
// These need to be macros, as version.cpp's and triangles-qt.rc's voodoo requires it
|
||||
#define CLIENT_VERSION_MAJOR 4
|
||||
#define CLIENT_VERSION_MINOR 2
|
||||
#define CLIENT_VERSION_REVISION 1
|
||||
#define CLIENT_VERSION_MAJOR 5
|
||||
#define CLIENT_VERSION_MINOR 1
|
||||
#define CLIENT_VERSION_REVISION 4
|
||||
#define CLIENT_VERSION_BUILD 0
|
||||
|
||||
// Converts the parameter X to a string after macro replacement on X has been performed.
|
||||
|
||||
@@ -591,7 +591,7 @@ QDialog {
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>About Triangles</string>
|
||||
<string>About Cryptographic Triangles</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -808,7 +808,7 @@ QPushButton:hover {
|
||||
<cursorShape>IBeamCursor</cursorShape>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string notr="true"><html><head/><body><p>Copyright © 2009-2015 The Bitcoin developers<br/>Copyright © 2014-2015 Triangles team</p></body></html></string>
|
||||
<string notr="true"><html><head/><body><p>Copyright © 2009-2015 The Bitcoin developers<br/>Copyright © 2014-2026 Cryptographic Triangles team</p></body></html></string>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::RichText</enum>
|
||||
|
||||
@@ -18,14 +18,14 @@ BEGIN
|
||||
BEGIN
|
||||
BLOCK "040904E4" // U.S. English - multilingual (hex)
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Triangles"
|
||||
VALUE "FileDescription", "Triangles-Qt (OSS GUI client for Triangles)"
|
||||
VALUE "CompanyName", "Cryptographic Triangles"
|
||||
VALUE "FileDescription", "Cryptographic Triangles Qt Wallet"
|
||||
VALUE "FileVersion", VER_FILEVERSION_STR
|
||||
VALUE "InternalName", "Triangles-qt"
|
||||
VALUE "LegalCopyright", "2014-2015 Triangles Team, 2012-2015 PPCoin developers, 2009-2015 The Bitcoin developers"
|
||||
VALUE "InternalName", "triangles-qt"
|
||||
VALUE "LegalCopyright", "2014-2026 Cryptographic Triangles Team, 2012-2015 PPCoin developers, 2009-2015 The Bitcoin developers"
|
||||
VALUE "LegalTrademarks1", "Distributed under the MIT/X11 software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
|
||||
VALUE "OriginalFilename", "triangled-qt.exe"
|
||||
VALUE "ProductName", "Triangles-Qt"
|
||||
VALUE "OriginalFilename", "triangles-qt.exe"
|
||||
VALUE "ProductName", "Cryptographic Triangles"
|
||||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
|
||||
END
|
||||
END
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@
|
||||
// Name of client reported in the 'version' message. Report the same name
|
||||
// for both trianglesd and triangles-qt, to make it harder for attackers to
|
||||
// target servers or GUI users specifically.
|
||||
const std::string CLIENT_NAME("Black Pharao");
|
||||
const std::string CLIENT_NAME("Cryptographic Triangles");
|
||||
|
||||
// Client version number
|
||||
#define CLIENT_VERSION_SUFFIX ""
|
||||
|
||||
+2
-2
@@ -52,8 +52,8 @@ static const int BIP0031_VERSION = 60000;
|
||||
static const int MEMPOOL_GD_VERSION = 60002;
|
||||
|
||||
#define DISPLAY_VERSION_MAJOR 5
|
||||
#define DISPLAY_VERSION_MINOR 0
|
||||
#define DISPLAY_VERSION_REVISION 0
|
||||
#define DISPLAY_VERSION_MINOR 1
|
||||
#define DISPLAY_VERSION_REVISION 4
|
||||
#define DISPLAY_VERSION_BUILD 0
|
||||
|
||||
#endif
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
TEMPLATE = app
|
||||
TARGET = triangles-qt
|
||||
|
||||
VERSION = 5.0.0.0
|
||||
VERSION = 5.1.4.0
|
||||
INCLUDEPATH += src src/json src/qt src/qt/plugins/mrichtexteditor
|
||||
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN BOOST_BIND_GLOBAL_PLACEHOLDERS __NO_SYSTEM_INCLUDES
|
||||
CONFIG += no_include_pwd
|
||||
|
||||
Reference in New Issue
Block a user