mirror of
https://github.com/markqvist/Reticulum.git
synced 2026-07-15 21:08:10 -07:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 804a7ddbe1 | |||
| 739fdd387e |
@@ -1,3 +1,39 @@
|
|||||||
|
### 2026-05-28: RNS 1.3.3
|
||||||
|
|
||||||
|
This release fixes a regression in persistence of known destination on Windows.
|
||||||
|
|
||||||
|
**Changes**
|
||||||
|
- Fixed regression in known destinations persist on Windows
|
||||||
|
|
||||||
|
**Verified Retrieval**
|
||||||
|
You can retrieve and verify this release over Reticulum using the built-in `rngit release` utility. To retrieve only the installation `.whl` package, and the release manifest for future updates, you can use:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch "latest:rns-*.whl" --signer bc7291552be7a58f361522990465165c
|
||||||
|
```
|
||||||
|
|
||||||
|
To download all artifacts, including the documentation and source archive, you can use the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/reticulum fetch latest:all --signer bc7291552be7a58f361522990465165c
|
||||||
|
```
|
||||||
|
|
||||||
|
**Release Signatures**
|
||||||
|
Release artifacts include a signed `rsm` release manifest and `rsg` signature files that can be validated against the RNS release signing identity `<bc7291552be7a58f361522990465165c>` using `rngit` or `rnid`. To perform an offline verification of all release artifacts using a manifest:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rngit release rns_*.rsm verify --signer bc7291552be7a58f361522990465165c
|
||||||
|
```
|
||||||
|
|
||||||
|
To verify release artifacts using individual `rsg` files, while also verifying the manifest itself, download the `rsm` and `rsg` signatures, make sure they are in the same folder as the release artifact, and run `rnid` signature verification with the release identity as the required signer:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
rnid -i bc7291552be7a58f361522990465165c -V rns_*.rsm *.rsg
|
||||||
|
```
|
||||||
|
|
||||||
|
The `rnid` utility will then verify the signatures, and display whether they are valid. If the signature cannot be verified, the release has been tampered with and should be discarded.
|
||||||
|
|
||||||
|
|
||||||
### 2026-05-28: RNS 1.3.2
|
### 2026-05-28: RNS 1.3.2
|
||||||
|
|
||||||
This release adds commit signing and validation support to the `rngit` system, as well as improvements to the blackhole functionality.
|
This release adds commit signing and validation support to the `rngit` system, as well as improvements to the blackhole functionality.
|
||||||
|
|||||||
+1
-1
@@ -218,7 +218,7 @@ class Identity:
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
with open(temp_file,"wb") as file: umsgpack.dump(Identity.known_destinations.copy(), file)
|
with open(temp_file,"wb") as file: umsgpack.dump(Identity.known_destinations.copy(), file)
|
||||||
os.rename(temp_file, RNS.Reticulum.storagepath+f"/known_destinations")
|
os.replace(temp_file, RNS.Reticulum.storagepath+f"/known_destinations")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
RNS.log(f"Error while serializing and writing known destinations: {e}", RNS.LOG_ERROR)
|
RNS.log(f"Error while serializing and writing known destinations: {e}", RNS.LOG_ERROR)
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
__version__ = "1.3.2"
|
__version__ = "1.3.3"
|
||||||
|
|||||||
Reference in New Issue
Block a user