poi-plugin-item-improvement2-beta 1.3.43 → 1.3.60

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 (39) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/README.md +5 -5
  3. package/assets/main.css +604 -186
  4. package/i18n/en-US.json +57 -1
  5. package/i18n/ja-JP.json +57 -1
  6. package/i18n/zh-CN.json +57 -1
  7. package/i18n/zh-TW.json +57 -1
  8. package/package.json +3 -5
  9. package/views/changelog.js +3 -0
  10. package/views/data-transfer.js +42 -69
  11. package/views/new-interface/beta-inventory.js +48 -0
  12. package/views/new-interface/current-upgrade-cost.js +70 -11
  13. package/views/new-interface/data-transfer-modal.js +20 -2
  14. package/views/new-interface/decision-chain-modal.js +15 -12
  15. package/views/new-interface/decision-chain-model.js +202 -266
  16. package/views/new-interface/decision-chain-page.js +41 -32
  17. package/views/new-interface/decision-chain-view.js +244 -29
  18. package/views/new-interface/decision-model.js +147 -26
  19. package/views/new-interface/detail-panel.js +49 -572
  20. package/views/new-interface/equipment-chain-overview.js +283 -0
  21. package/views/new-interface/equipment-detail.js +265 -0
  22. package/views/new-interface/equipment-workspace-model.js +133 -0
  23. package/views/new-interface/equipment-workspace.js +198 -0
  24. package/views/new-interface/modal-resize-handle.js +209 -0
  25. package/views/new-interface/new-interface-area.js +180 -152
  26. package/views/new-interface/plan-target-cost-summary.js +74 -9
  27. package/views/new-interface/quick-plan-control.js +50 -34
  28. package/views/new-interface/route-plan-protection.js +59 -0
  29. package/views/new-interface/savings-calculator.js +18 -58
  30. package/views/new-interface/upgrade-chain-canvas.js +153 -119
  31. package/views/new-interface/upgrade-chain-layout.js +16 -5
  32. package/views/new-interface/upgrade-route-modal.js +18 -2
  33. package/views/new-interface/upgrade-route-model.js +45 -8
  34. package/views/new-interface/upgrade-stage-model.js +118 -0
  35. package/views/new-interface/workbench-detail.js +35 -6
  36. package/views/starcraft/plan-modify-control.js +9 -9
  37. package/views/ui-preferences.js +21 -177
  38. package/views/new-interface/catalog-page.js +0 -349
  39. package/views/new-interface/plan-page.js +0 -191
package/CHANGELOG.md CHANGED
@@ -1,3 +1,46 @@
1
+ ## 1.3.60
2
+
3
+ - 收缩新版 UI 主链:单次构建决策快照,避免同一渲染重复派生装备、路线和强制选择。
4
+ - 装备筛选与排序迁入唯一纯模型,组件只维护筛选输入和渲染。
5
+ - 右侧详情删除旧插件排序、显隐、折叠与设置弹窗状态机,固定为今天与装备两种组合。
6
+ - 删除旧详情显隐、页面布局和插件顺序的配置 API 与备份字段;旧备份中的这些失效字段导入时忽略,不再迁移或写回。
7
+ - 装备详情拆为独立领域组件,路线、计划、秘书舰、阶段、缺口和进化链保持同一顺序。
8
+ - 本版为 UI 架构收缩 RC,不主动改变 1.3.59 的产品需求和视觉规则。
9
+
10
+ ## 1.3.59
11
+
12
+ - Consolidated the Beta interface into three top-level workspaces: Today, Equipment, and Upgrade Routes.
13
+ - Merged equipment browsing and improvement-plan management into one resizable 2:5 workspace.
14
+ - Added plan support for non-improvable terminal evolution equipment at star level 0 only.
15
+ - Improved assistant-ship ordering, per-material route comparison, total material-gap visuals, and current-position chain overviews.
16
+ - Reused the forced route-comparison interface in the global route workspace and simplified chain canvases to equipment-only overviews.
17
+ - Standardized mouse, pen, and touch panning on the Poi 11 PointerEvent runtime path.
18
+
19
+ ## 1.3.58
20
+
21
+ - Simplified routine local updates while preserving explicit path overrides for troubleshooting.
22
+ - Reduced repeated validation when the source and development tools are unchanged.
23
+ - Improved consistency between local updates, development pushes, and Beta preparation.
24
+ - Fixed local updates preserving repository remote and branch-tracking settings.
25
+ - Fixed development pushes establishing and verifying branch tracking before reporting success.
26
+ - Fixed Beta validation relying on the canonical remote commit rather than fragile local tracking metadata.
27
+ - No gameplay or equipment-data behavior changes.
28
+
29
+ ## 1.3.57
30
+
31
+ - Improved mouse navigation, node sizing, and whole-chain zoom in the complete upgrade-chain view.
32
+ - Material-route and complete-chain dialogs can be resized and remember their last size.
33
+
34
+ ## 1.3.45
35
+
36
+ - No gameplay or equipment-data behavior changes.
37
+ - Fixed cleanup of obsolete local update state after project updates.
38
+
39
+ ## 1.3.44
40
+
41
+ - No gameplay or equipment-data behavior changes.
42
+ - Improved local update, recovery-package, and release validation reliability.
43
+
1
44
  ## 1.3.43
2
45
 
3
46
  - 修正完整升级链在 Poi 11 中的空白区域拖动和材料内容高度适配。
package/README.md CHANGED
@@ -6,14 +6,14 @@ This package is intended for preview testing. Stable users should install `poi-p
6
6
 
7
7
  ## Features
8
8
 
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.
9
+ - Use a focused Today workspace for actionable upgrades.
10
+ - Browse equipment and maintain multi-target plans in one workspace.
11
+ - Compare material routes and review equipment-only upgrade chains.
12
+ - Review normal, guaranteed, and inventory-gap material costs.
13
13
 
14
14
  ## Data
15
15
 
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.
16
+ Improvement data is provided by the packaged `@sakura2333/kancolle-data@0.1.0` dependency. The plugin does not fetch improvement data from a Git repository at runtime.
17
17
 
18
18
  ## License
19
19