diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index a738fa926..93afde394 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -623,7 +623,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): @classmethod def get_app_name_and_version_str(cls) -> str: - name = "Electrum" + name = "Pallectrum" if constants.net.TESTNET: name += " " + constants.net.NET_NAME.capitalize() return f"{name} {ELECTRUM_VERSION}" @@ -864,13 +864,13 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger, QtEventListener): self.show_error(_('No donation address for this server')) def show_about(self): - QMessageBox.about(self, "Electrum", + QMessageBox.about(self, "Pallectrum", (_("Version")+" %s" % ELECTRUM_VERSION + "\n\n" + - _("Electrum's focus is speed, with low resource usage and simplifying Bitcoin.") + " " + + _("Pallectrum's focus is speed, with low resource usage and simplifying Palladium.") + " " + _("You do not need to perform regular backups, because your wallet can be " "recovered from a secret phrase that you can memorize or write on paper.") + " " + _("Startup times are instant because it operates in conjunction with high-performance " - "servers that handle the most complicated parts of the Bitcoin system.") + "\n\n" + + "servers that handle the most complicated parts of the Palladium system.") + "\n\n" + _("Uses icons from the Icons8 icon pack (icons8.com)."))) def show_bitcoin_paper(self): diff --git a/electrum/version.py b/electrum/version.py index 18ee702ac..d77f1b98c 100644 --- a/electrum/version.py +++ b/electrum/version.py @@ -1,4 +1,4 @@ -ELECTRUM_VERSION = '4.6.2' # version of the client package +ELECTRUM_VERSION = '0.1.0' # version of the client package (Pallectrum) PROTOCOL_VERSION_MIN = '1.4' # electrum protocol PROTOCOL_VERSION_MAX = '1.6'