1
0

plugins: rename plugin nostr cosigner, minor tweaks

This commit is contained in:
ThomasV
2025-04-16 10:08:55 +02:00
parent 9d42505eec
commit c0ddce4586
3 changed files with 6 additions and 4 deletions

View File

@@ -45,11 +45,12 @@ class PluginDialog(WindowModalDialog):
icon = read_QIcon_from_bytes(self.plugins.read_file(name, icon_path))
name_label.setIcon(icon)
vbox.addWidget(name_label)
vbox.addStretch()
vbox.addWidget(WWLabel(description))
vbox.addStretch()
form = QFormLayout(None)
if author:
form.addRow(QLabel(_('Author') + ':'), QLabel(author))
if description:
form.addRow(QLabel(_('Description') + ':'), WWLabel(description))
if version:
form.addRow(QLabel(_('Version') + ':'), QLabel(version))
if zip_hash:

View File

@@ -3,6 +3,7 @@
"fullname": "Audio MODEM",
"description": "Provides support for air-gapped transaction signing.",
"requires": [["amodem", "http://github.com/romanz/amodem/"]],
"author":"Roman Zeyde",
"icon":"speaker.png",
"available_for": ["qt"]
}

View File

@@ -1,6 +1,6 @@
{
"name": "nostr_multisig",
"fullname": "Nostr Multisig",
"name": "psbt_nostr",
"fullname": "Nostr Cosigner",
"description": "This plugin facilitates the use of multi-signatures wallets. It sends and receives partially signed transactions from/to your cosigner wallet. PSBTs are sent and retrieved from Nostr relays.",
"author": "The Electrum Developers",
"icon":"nostr_multisig.png",