Compare commits
4 Commits
bitcoinaft
...
6c41a28541
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c41a28541 | |||
| 00eefe0525 | |||
|
|
4ae019cba5 | ||
| 372f3952ca |
20
CHANGELOG.md
20
CHANGELOG.md
@@ -2329,3 +2329,23 @@ The request was to make the failure message clearer (no timeout change).
|
||||
- `ruff`: no new errors.
|
||||
|
||||
**Outcome:** DONE (delivered as test ZIP v0.5.18; commit only after confirmation).
|
||||
|
||||
---
|
||||
|
||||
## 43. v0.6.0 - Version bump for the official repository release
|
||||
|
||||
**Date:** 2026-07-17
|
||||
|
||||
**Context:** the plugin content of this version is IDENTICAL to v0.5.18 - no code
|
||||
changes. A release was published on the official repository
|
||||
(bitcoinafterlife/bal-electrum-plugin) tagged "v0.6.0", but the internal version
|
||||
files still read "0.5.18" (a human oversight: the release tag was not matched by
|
||||
a version bump in the code), so Electrum displayed "0.5.18" after installing it.
|
||||
This entry aligns the internal version with the intended "0.6.0" release tag by
|
||||
bumping `bal/VERSION`, `bal/manifest.json`, `bal/__init__.py` and
|
||||
`bal/core/plugin_base.py` from 0.5.18 to 0.6.0. No functional changes.
|
||||
|
||||
**Verification:** full test suite against Electrum 4.7.2 and 4.8.0 (same 266
|
||||
passed / 2 pre-existing unrelated failures as v0.5.18); `ruff` clean.
|
||||
|
||||
**Outcome:** DONE.
|
||||
|
||||
30
COMPATIBILITY.md
Normal file
30
COMPATIBILITY.md
Normal file
@@ -0,0 +1,30 @@
|
||||
# Wallet Compatibility
|
||||
|
||||
BAL (Bitcoin After Life) builds and signs Electrum transactions using
|
||||
Electrum's own wallet and signing infrastructure. Its compatibility therefore
|
||||
depends on the wallet type in use.
|
||||
|
||||
| Wallet type | Status | Notes |
|
||||
|-------------------------------------------------|-----------------------------|-------|
|
||||
| Standard wallet (single-signature, seed-based) | ✅ Supported | Primary, fully tested target |
|
||||
| Hardware wallets (Ledger, Trezor, Coldcard, BitBox02, Jade, KeepKey, etc.) | ✅ Supported | Any hardware wallet supported by Electrum itself |
|
||||
| Multisig wallets | ❌ Not yet supported | Known limitation identified 2026-07-18. Support is planned for a future plugin release. |
|
||||
| Electrum TrustedCoin (2FA) wallets | ❓ Unknown / unsupported | Known limitation identified 2026-07-18. It has not yet been determined whether or when this will be addressed. |
|
||||
|
||||
## What "not supported" means in practice
|
||||
|
||||
For multisig and TrustedCoin (2FA) wallets, BAL's behavior has not been
|
||||
verified and should be considered **unreliable**. Do not rely on BAL to
|
||||
protect an inheritance set up on one of these wallet types until this document
|
||||
is updated to mark them as supported.
|
||||
|
||||
## Electrum version compatibility
|
||||
|
||||
See [`README.md`](README.md) for supported Electrum versions (currently 4.7.2
|
||||
and 4.8.0).
|
||||
|
||||
## Reporting compatibility issues
|
||||
|
||||
If you find a compatibility problem not listed here, please open an issue on
|
||||
this repository describing the wallet type, Electrum version, and the exact
|
||||
error or unexpected behavior observed.
|
||||
13
README.md
13
README.md
@@ -38,10 +38,19 @@ tests/ smoke + external-zip regression tests
|
||||
|
||||
## Requirements
|
||||
|
||||
- **Electrum 4.7.2** — the last stable release exposing `json_db.register_dict`,
|
||||
which this plugin relies on. Newer versions removed it.
|
||||
- **Electrum 4.7.2 or 4.8.0** — the plugin detects which wallet-DB
|
||||
registration API is available (`json_db.register_dict` on 4.7.2,
|
||||
`stored_dict.register_name` on 4.8.0) and adapts automatically.
|
||||
- **PyQt6** (bundled with the Electrum desktop GUI).
|
||||
|
||||
## Wallet compatibility
|
||||
|
||||
BAL currently supports **standard (single-signature) wallets** and
|
||||
**hardware wallets** supported by Electrum. **Multisig wallets** and
|
||||
**Electrum TrustedCoin (2FA) wallets** are **not yet supported** — see
|
||||
[`COMPATIBILITY.md`](COMPATIBILITY.md) for the full compatibility matrix and
|
||||
current status.
|
||||
|
||||
## Installation
|
||||
|
||||
### Build the distribution archive
|
||||
|
||||
@@ -36,4 +36,4 @@ The plugin supports Electrum 4.7.2 and 4.8.0 with PyQt6. Electrum 4.8.0 removed
|
||||
available and adapts, so both releases keep working.
|
||||
"""
|
||||
|
||||
__version__ = "0.6.0"
|
||||
__version__ = "0.5.18"
|
||||
|
||||
Reference in New Issue
Block a user