@sakura2333/kancolle-data 0.5.16 → 0.5.17
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 +15 -0
- package/README.md +1 -1
- package/RELEASES.json +37 -0
- package/audit/build-report.json +4 -4
- package/equipment/sources.nedb +574 -574
- package/improvement/list.json +2 -2
- package/manifest.json +28 -18
- package/package.json +2 -2
- package/schemas/equipment-sources.schema.json +35 -7
package/CHANGELOG.md
CHANGED
|
@@ -28,6 +28,21 @@ All notable consumer-visible changes to `@sakura2333/kancolle-data` are document
|
|
|
28
28
|
- Add quest, development, exchange, ranking, and event acquisition methods.
|
|
29
29
|
- Add additional ship, map, and quest projections when stable schemas are available.
|
|
30
30
|
|
|
31
|
+
## [0.5.17] - 2026-07-15
|
|
32
|
+
|
|
33
|
+
### Data
|
|
34
|
+
|
|
35
|
+
- Refreshed validated KanColle consumer datasets after a successful strict Spider run.
|
|
36
|
+
- Improvement records: 372.
|
|
37
|
+
- Equipment acquisition records: 249.
|
|
38
|
+
- Equipment special-bonus records: 350.
|
|
39
|
+
- Equipment-type special-bonus records: 7.
|
|
40
|
+
- Packaged use-item icons: 13.
|
|
41
|
+
|
|
42
|
+
### Validation
|
|
43
|
+
|
|
44
|
+
- Passed source freshness, schema, reference-integrity, record-count, and file-size quality gates.
|
|
45
|
+
|
|
31
46
|
## [0.5.16] - 2026-07-15
|
|
32
47
|
|
|
33
48
|
### Data
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Datasets:
|
|
|
21
21
|
- `improvement/detail.nedb`: full routes plus ★0..★MAX effect expectations and 11 explicit per-route actions (including optional MAX conversion).
|
|
22
22
|
- `schemas/improvement-detail.schema.json`: JSON Schema for each schema-4 NeDB record.
|
|
23
23
|
- `equipment/drop-from.nedb`: detailed ship initial/remodel loadout evidence.
|
|
24
|
-
- `equipment/sources.nedb`: one unified record per equipment with required `shipIds`, `upgradeFromItemIds`,
|
|
24
|
+
- `equipment/sources.nedb`: one unified record per equipment with required `shipIds`, `upgradeFromItemIds`, numeric `questKey` arrays, and a non-null boolean `developmentAvailable` flag.
|
|
25
25
|
- `schemas/equipment-sources.schema.json`: JSON Schema for unified source records.
|
|
26
26
|
- `equipment/special-bonuses.nedb`: bonus rules targeting either concrete equipment IDs or equipment-type IDs.
|
|
27
27
|
- `assets/useitem/*.webp`: official use-item cards encoded as WebP quality 93 for canonical consumers.
|
package/RELEASES.json
CHANGED
|
@@ -1,4 +1,41 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"version": "0.5.17",
|
|
4
|
+
"date": "2026-07-15",
|
|
5
|
+
"contentDigest": "a01be27f9864c34cbea743b4e1dbaa2cd56357da9eb920c5ef33159c3d55f124",
|
|
6
|
+
"improvement2ContentDigest": "9d9016cec6ecd64d9285b0110c728c273e26b168382ffdfefab502036208508e",
|
|
7
|
+
"identitySchemaVersion": 3,
|
|
8
|
+
"metrics": {
|
|
9
|
+
"improvement.listViewCount": 8,
|
|
10
|
+
"improvement.listAllCount": 372,
|
|
11
|
+
"improvement.detailRecordCount": 372,
|
|
12
|
+
"improvement.effectExpectationAvailableCount": 366,
|
|
13
|
+
"improvement.effectExpectationUnavailableCount": 6,
|
|
14
|
+
"improvement.routeCount": 412,
|
|
15
|
+
"improvement.stepCount": 4532,
|
|
16
|
+
"improvement.upgradeAvailableCount": 208,
|
|
17
|
+
"compat.poiPluginItemImprovement2.detailRecordCount": 372,
|
|
18
|
+
"compat.poiPluginItemImprovement2.routeCount": 412,
|
|
19
|
+
"equipmentDropFrom.recordCount": 249,
|
|
20
|
+
"equipmentDropFrom.relationCount": 1656,
|
|
21
|
+
"equipmentSources.recordCount": 574,
|
|
22
|
+
"equipmentSources.shipRelationCount": 1594,
|
|
23
|
+
"equipmentSources.upgradeRelationCount": 207,
|
|
24
|
+
"equipmentSources.questRelationCount": 10,
|
|
25
|
+
"equipmentSpecialBonuses.recordCount": 350,
|
|
26
|
+
"equipmentSpecialBonuses.equipmentRecordCount": 343,
|
|
27
|
+
"equipmentSpecialBonuses.equipmentTypeRecordCount": 7,
|
|
28
|
+
"equipmentSpecialBonuses.ruleCount": 2355,
|
|
29
|
+
"useitemIcons.requiredCount": 13,
|
|
30
|
+
"useitemIcons.missingCount": 0,
|
|
31
|
+
"useitemIcons.count": 13,
|
|
32
|
+
"useitemIcons.totalBytes": 352768,
|
|
33
|
+
"compat.poiPluginItemImprovement2.useitemPngCount": 13,
|
|
34
|
+
"equipmentImages.count": 410,
|
|
35
|
+
"equipmentImages.totalBytes": 24369164,
|
|
36
|
+
"publicData.totalBytes": 30969696
|
|
37
|
+
}
|
|
38
|
+
},
|
|
2
39
|
{
|
|
3
40
|
"version": "0.5.16",
|
|
4
41
|
"date": "2026-07-15",
|
package/audit/build-report.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-07-
|
|
2
|
+
"generatedAt": "2026-07-15T12:51:39+00:00",
|
|
3
3
|
"strict": true,
|
|
4
4
|
"improvementSourceStatus": "ok",
|
|
5
5
|
"dropFromIssueCount": 0,
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"shipDayCount": 3179
|
|
19
19
|
},
|
|
20
20
|
"equipmentAcquisitionInputMode": "local-raw-cache",
|
|
21
|
-
"equipmentAcquisitionSnapshotGeneratedAt": "2026-07-
|
|
21
|
+
"equipmentAcquisitionSnapshotGeneratedAt": "2026-07-15T12:51:38+00:00",
|
|
22
22
|
"equipmentSourceIncremental": {
|
|
23
23
|
"addedIds": [
|
|
24
24
|
1,
|
|
@@ -602,11 +602,11 @@
|
|
|
602
602
|
"changed": true,
|
|
603
603
|
"inputHashes": {
|
|
604
604
|
"improvementDetail": "dc61dc22c2327377d6069124b439aabf6ca4e8be17e33f477d4c962246fb1e21",
|
|
605
|
-
"wikiwikiAcquisition": "
|
|
605
|
+
"wikiwikiAcquisition": "6915d71be6f20d747da96d956e1a42e289402a2dd4b808b7ed6d46ea84ba86d5",
|
|
606
606
|
"kcwikiShip": "bc6c3ca90b542fb11e02d43abaffc5e323f038a2382909cb174c87fe5f933db6",
|
|
607
607
|
"kcwikiEquipment": "f3cd7273f62c6377e2277c6213f64f56df2ac145ef853e06417e077f08e10303"
|
|
608
608
|
},
|
|
609
|
-
"projectionSha256": "
|
|
609
|
+
"projectionSha256": "504ed9416c75e756e7617539fc5967311429d941ddd48a76a3d60a8eb136ef0f"
|
|
610
610
|
},
|
|
611
611
|
"improvement2Compatibility": {
|
|
612
612
|
"detailRecordCount": 372,
|