pmtiles-swarm 0.32.2 → 0.32.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@
|
|
|
7
7
|
### 🐞 Bug fixes
|
|
8
8
|
- _...Add new stuff here..._
|
|
9
9
|
|
|
10
|
+
## 0.32.3
|
|
11
|
+
### ✨ Features and improvements
|
|
12
|
+
- _...Add new stuff here..._
|
|
13
|
+
|
|
14
|
+
### 🐞 Bug fixes
|
|
15
|
+
- **Requires pmtiles-torrent 0.5.2, which deletes a torrent's resume file with its data.** Resume
|
|
16
|
+
data was outliving the data it described: deleting an archive to re-fetch it left the record of
|
|
17
|
+
the old complete file behind, so the re-add handed libtorrent a description of a finished archive
|
|
18
|
+
against a path holding a fresh partial one. It answered `fastresume_rejected` and rechecked, and
|
|
19
|
+
until that settled nothing was verified — bytes arriving at full speed against a verified-piece
|
|
20
|
+
count stuck at 1, and every tile read told the piece it wanted was not in the slot list. Only when
|
|
21
|
+
the data goes too: a removal that keeps the files is how a pause is expressed for an engine with
|
|
22
|
+
no pause of its own, and discarding resume data there would turn every pause into a full re-hash.
|
|
23
|
+
|
|
24
|
+
- _...Add new stuff here..._
|
|
25
|
+
|
|
10
26
|
## 0.32.2
|
|
11
27
|
### ✨ Features and improvements
|
|
12
28
|
- _...Add new stuff here..._
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmtiles-swarm",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.3",
|
|
4
4
|
"description": "BitTorrent distribution for PMTiles map archives: create torrents, watch folders, publish and subscribe to RSS feeds, and seed through qBittorrent or an embedded client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"maplibre-gl": "^6.2.0",
|
|
47
47
|
"parse-torrent": "^11.0.24",
|
|
48
48
|
"pmtiles": "^4.4.1",
|
|
49
|
-
"pmtiles-torrent": "^0.5.
|
|
49
|
+
"pmtiles-torrent": "^0.5.2",
|
|
50
50
|
"webtorrent": "^3.0.21"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|