poi-plugin-item-improvement2-beta 1.0.95 → 1.3.41
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 +61 -0
- package/LICENSE +21 -0
- package/README.md +12 -31
- package/assets/help/new-interface-overview.png +0 -0
- package/assets/main.css +6978 -1
- package/data/beginner-recommendations.json +5313 -0
- package/i18n/en-US.json +740 -50
- package/i18n/ja-JP.json +740 -50
- package/i18n/zh-CN.json +740 -50
- package/i18n/zh-TW.json +740 -50
- package/index.js +8 -1
- package/package.json +19 -37
- package/views/changelog-modal.js +100 -10
- package/views/changelog.js +80 -2
- package/views/data-transfer.js +334 -0
- package/views/detail-row.js +3 -1
- package/views/item-info-area.js +249 -73
- package/views/item-info-row.js +45 -77
- package/views/mat-row.js +29 -22
- package/views/new-interface/beginner-recommendation-model.js +255 -0
- package/views/new-interface/beginner-recommendation-page.js +366 -0
- package/views/new-interface/catalog-page.js +349 -0
- package/views/new-interface/chain-protection-modal.js +305 -0
- package/views/new-interface/collapsible-tools.js +92 -0
- package/views/new-interface/current-upgrade-cost-model.js +47 -0
- package/views/new-interface/current-upgrade-cost.js +191 -0
- package/views/new-interface/data-transfer-modal.js +318 -0
- package/views/new-interface/decision-chain-modal.js +91 -0
- package/views/new-interface/decision-chain-model.js +504 -0
- package/views/new-interface/decision-chain-page.js +239 -0
- package/views/new-interface/decision-chain-view.js +110 -0
- package/views/new-interface/decision-model.js +658 -0
- package/views/new-interface/detail-panel.js +689 -0
- package/views/new-interface/detail-plugin.js +148 -0
- package/views/new-interface/equipment-category-filter-modal.js +204 -0
- package/views/new-interface/equipment-category-model.js +152 -0
- package/views/new-interface/equipment-list.js +246 -0
- package/views/new-interface/new-interface-area.js +898 -0
- package/views/new-interface/plan-migration-modal.js +147 -0
- package/views/new-interface/plan-page.js +191 -0
- package/views/new-interface/plan-target-cost-summary.js +181 -0
- package/views/new-interface/poi-image.js +94 -0
- package/views/new-interface/quick-plan-control.js +246 -0
- package/views/new-interface/savings-calculator.js +504 -0
- package/views/new-interface/upgrade-chain-canvas.js +1358 -0
- package/views/new-interface/upgrade-chain-layout.js +211 -0
- package/views/new-interface/upgrade-chain-view.js +250 -0
- package/views/new-interface/upgrade-route-modal.js +138 -0
- package/views/new-interface/upgrade-route-model.js +895 -0
- package/views/new-interface/visual-flow.js +267 -0
- package/views/new-interface/workbench-detail-model.js +106 -0
- package/views/new-interface/workbench-detail.js +154 -0
- package/views/new-interface/workbench-page.js +129 -0
- package/views/plugin-meta.js +17 -0
- package/views/search-box.js +80 -0
- package/views/search.js +70 -0
- package/views/selectors.js +19 -2
- package/views/starcraft/add-new-equip-view.js +3 -1
- package/views/starcraft/control-panel.js +3 -1
- package/views/starcraft/equip-view.js +3 -1
- package/views/starcraft/plan-modify-control.js +3 -1
- package/views/starcraft/plan-view.js +3 -1
- package/views/starcraft/starcraft-area.js +49 -9
- package/views/starcraft/utils.js +94 -4
- package/views/ui-preferences.js +366 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.3.41
|
|
4
|
+
|
|
5
|
+
- Fixed one-click upgrades from 1.3.39 and preserved Flow availability after replacement.
|
|
6
|
+
- No gameplay or equipment-data behavior changes.
|
|
7
|
+
|
|
8
|
+
## 1.3.40
|
|
9
|
+
|
|
10
|
+
- Improved one-click update reliability, checksum validation, and deterministic rollback.
|
|
11
|
+
- Improved release consistency so user packages contain only runtime files and user documentation.
|
|
12
|
+
- No gameplay or equipment-data behavior changes.
|
|
13
|
+
|
|
14
|
+
## 1.3.39
|
|
15
|
+
|
|
16
|
+
- 改进本地更新交接与一致性检查,避免更新路径或步骤在后续维护中丢失。
|
|
17
|
+
|
|
18
|
+
## 1.3.38
|
|
19
|
+
|
|
20
|
+
- 一键更新改为读取已经确认并持久化的固定路径,不再在脚本运行时询问关键目录。
|
|
21
|
+
- 替换过程只执行完整性校验、本机配置继承、旧目录备份和原子替换,完成后立即停止。
|
|
22
|
+
- 更新完成后明确列出依赖安装、快速检查、完整检查和状态核对步骤,不自动提交、推送或发布。
|
|
23
|
+
|
|
24
|
+
## 1.3.37
|
|
25
|
+
|
|
26
|
+
- Improved package cleanliness and update reliability.
|
|
27
|
+
- No user-facing feature changes.
|
|
28
|
+
|
|
29
|
+
## 1.3.36
|
|
30
|
+
|
|
31
|
+
- Improved local update and validation reliability.
|
|
32
|
+
|
|
33
|
+
## 1.3.35
|
|
34
|
+
|
|
35
|
+
- No user-facing behavior changes. Corrected clean-install package metadata.
|
|
36
|
+
|
|
37
|
+
## 1.3.34
|
|
38
|
+
|
|
39
|
+
- Fixed clean installations missing the required Lodash runtime dependency.
|
|
40
|
+
|
|
41
|
+
## 1.3.33
|
|
42
|
+
|
|
43
|
+
- No user-facing feature changes.
|
|
44
|
+
|
|
45
|
+
## 1.3.32
|
|
46
|
+
|
|
47
|
+
- No user-facing feature changes.
|
|
48
|
+
|
|
49
|
+
## 1.3.31
|
|
50
|
+
|
|
51
|
+
- Improved mouse dragging, node sizing, material-table scrolling, and click suppression in the upgrade-chain canvas.
|
|
52
|
+
|
|
53
|
+
## 1.3.30
|
|
54
|
+
|
|
55
|
+
- Reworked mouse and pointer ownership for the upgrade-chain canvas.
|
|
56
|
+
- Made node layout respond to rendered table height.
|
|
57
|
+
- Improved material-table scrolling and interaction isolation.
|
|
58
|
+
|
|
59
|
+
## 1.3.29
|
|
60
|
+
|
|
61
|
+
- Improved quick-plan accumulation and legacy-plan migration.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 sakura2333
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,39 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Equipment Improvement Beta for Poi
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Beta channel of the equipment improvement assistant for Kantai Collection players using Poi.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package is intended for preview testing. Stable users should install `poi-plugin-item-improvement2`.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
## Features
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
- Browse equipment improvement recipes and schedules.
|
|
10
|
+
- Build multi-target improvement plans.
|
|
11
|
+
- Review upgrade chains and material costs.
|
|
12
|
+
- Compare normal and guaranteed upgrade costs.
|
|
10
13
|
|
|
11
|
-
##
|
|
14
|
+
## Data
|
|
12
15
|
|
|
13
|
-
|
|
14
|
-
npm ci --include=dev
|
|
15
|
-
npm test
|
|
16
|
-
npm pack --dry-run
|
|
17
|
-
```
|
|
16
|
+
Improvement data is provided by the packaged `@sakura2333/kancolle-data` dependency. The plugin does not fetch improvement data from a Git repository at runtime.
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
## License
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
Publish a compatible `@sakura2333/kancolle-data` release before publishing a plugin version that depends on it.
|
|
24
|
-
|
|
25
|
-
Official package:
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
npm test
|
|
29
|
-
npm publish --registry=https://registry.npmjs.org/
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
Beta package:
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
npm run publish:beta:dry-run
|
|
36
|
-
npm run publish:beta
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
The beta script temporarily changes the package and runtime namespace to `poi-plugin-item-improvement2-beta-beta`, publishes it, and restores the source tree even when publication fails.
|
|
20
|
+
MIT
|
|
Binary file
|