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.
Files changed (65) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/LICENSE +21 -0
  3. package/README.md +12 -31
  4. package/assets/help/new-interface-overview.png +0 -0
  5. package/assets/main.css +6978 -1
  6. package/data/beginner-recommendations.json +5313 -0
  7. package/i18n/en-US.json +740 -50
  8. package/i18n/ja-JP.json +740 -50
  9. package/i18n/zh-CN.json +740 -50
  10. package/i18n/zh-TW.json +740 -50
  11. package/index.js +8 -1
  12. package/package.json +19 -37
  13. package/views/changelog-modal.js +100 -10
  14. package/views/changelog.js +80 -2
  15. package/views/data-transfer.js +334 -0
  16. package/views/detail-row.js +3 -1
  17. package/views/item-info-area.js +249 -73
  18. package/views/item-info-row.js +45 -77
  19. package/views/mat-row.js +29 -22
  20. package/views/new-interface/beginner-recommendation-model.js +255 -0
  21. package/views/new-interface/beginner-recommendation-page.js +366 -0
  22. package/views/new-interface/catalog-page.js +349 -0
  23. package/views/new-interface/chain-protection-modal.js +305 -0
  24. package/views/new-interface/collapsible-tools.js +92 -0
  25. package/views/new-interface/current-upgrade-cost-model.js +47 -0
  26. package/views/new-interface/current-upgrade-cost.js +191 -0
  27. package/views/new-interface/data-transfer-modal.js +318 -0
  28. package/views/new-interface/decision-chain-modal.js +91 -0
  29. package/views/new-interface/decision-chain-model.js +504 -0
  30. package/views/new-interface/decision-chain-page.js +239 -0
  31. package/views/new-interface/decision-chain-view.js +110 -0
  32. package/views/new-interface/decision-model.js +658 -0
  33. package/views/new-interface/detail-panel.js +689 -0
  34. package/views/new-interface/detail-plugin.js +148 -0
  35. package/views/new-interface/equipment-category-filter-modal.js +204 -0
  36. package/views/new-interface/equipment-category-model.js +152 -0
  37. package/views/new-interface/equipment-list.js +246 -0
  38. package/views/new-interface/new-interface-area.js +898 -0
  39. package/views/new-interface/plan-migration-modal.js +147 -0
  40. package/views/new-interface/plan-page.js +191 -0
  41. package/views/new-interface/plan-target-cost-summary.js +181 -0
  42. package/views/new-interface/poi-image.js +94 -0
  43. package/views/new-interface/quick-plan-control.js +246 -0
  44. package/views/new-interface/savings-calculator.js +504 -0
  45. package/views/new-interface/upgrade-chain-canvas.js +1358 -0
  46. package/views/new-interface/upgrade-chain-layout.js +211 -0
  47. package/views/new-interface/upgrade-chain-view.js +250 -0
  48. package/views/new-interface/upgrade-route-modal.js +138 -0
  49. package/views/new-interface/upgrade-route-model.js +895 -0
  50. package/views/new-interface/visual-flow.js +267 -0
  51. package/views/new-interface/workbench-detail-model.js +106 -0
  52. package/views/new-interface/workbench-detail.js +154 -0
  53. package/views/new-interface/workbench-page.js +129 -0
  54. package/views/plugin-meta.js +17 -0
  55. package/views/search-box.js +80 -0
  56. package/views/search.js +70 -0
  57. package/views/selectors.js +19 -2
  58. package/views/starcraft/add-new-equip-view.js +3 -1
  59. package/views/starcraft/control-panel.js +3 -1
  60. package/views/starcraft/equip-view.js +3 -1
  61. package/views/starcraft/plan-modify-control.js +3 -1
  62. package/views/starcraft/plan-view.js +3 -1
  63. package/views/starcraft/starcraft-area.js +49 -9
  64. package/views/starcraft/utils.js +94 -4
  65. 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
- # Plugin Item Improvement
1
+ # Equipment Improvement Beta for Poi
2
2
 
3
- Poi plugin for viewing KanColle equipment improvement schedules, complete recipe routes, costs, and required materials.
3
+ Beta channel of the equipment improvement assistant for Kantai Collection players using Poi.
4
4
 
5
- ## Usage
5
+ This package is intended for preview testing. Stable users should install `poi-plugin-item-improvement2`.
6
6
 
7
- Install the plugin through Poi, or place the package in Poi's plugin directory.
7
+ ## Features
8
8
 
9
- Improvement data and use-item assets are supplied by the local npm dependency `@sakura2333/kancolle-data`; the plugin does not download GitHub data at runtime.
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
- ## Development
14
+ ## Data
12
15
 
13
- ```bash
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
- The committed lockfile keeps the legacy Poi transpilation toolchain reproducible. CI tests both the locked minimum-compatible data package and the latest compatible data package.
18
+ ## License
20
19
 
21
- ## Publishing
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