From f56740409c85abffc04c269e99c15cfe3ba02b7e Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Fri, 21 Nov 2025 11:07:54 +0100 Subject: [PATCH] Update branding from Electrum to Pallectrum Update client package version and replace all references to 'Electrum' with 'Pallectrum' in the codebase. Also updates the description to reflect Palladium instead of Bitcoin. --- electrum/gui/qt/main_window.py | 8 ++++---- electrum/version.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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'