poi-plugin-item-improvement2-beta 1.3.43 → 1.3.58
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 +25 -0
- package/README.md +1 -1
- package/assets/main.css +375 -0
- package/i18n/en-US.json +31 -1
- package/i18n/ja-JP.json +31 -1
- package/i18n/zh-CN.json +31 -1
- package/i18n/zh-TW.json +31 -1
- package/package.json +3 -5
- package/views/changelog.js +3 -0
- package/views/data-transfer.js +30 -4
- package/views/new-interface/beta-inventory.js +48 -0
- package/views/new-interface/data-transfer-modal.js +20 -2
- package/views/new-interface/decision-chain-modal.js +15 -12
- package/views/new-interface/decision-chain-model.js +199 -269
- package/views/new-interface/decision-chain-page.js +18 -12
- package/views/new-interface/decision-chain-view.js +244 -29
- package/views/new-interface/decision-model.js +2 -11
- package/views/new-interface/modal-resize-handle.js +209 -0
- package/views/new-interface/new-interface-area.js +53 -14
- package/views/new-interface/route-plan-protection.js +59 -0
- package/views/new-interface/savings-calculator.js +18 -58
- package/views/new-interface/upgrade-chain-canvas.js +150 -34
- package/views/new-interface/upgrade-chain-layout.js +16 -5
- package/views/new-interface/upgrade-route-modal.js +18 -2
- package/views/new-interface/upgrade-route-model.js +45 -8
- package/views/new-interface/upgrade-stage-model.js +118 -0
- package/views/starcraft/plan-modify-control.js +9 -9
- package/views/ui-preferences.js +21 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## 1.3.58
|
|
2
|
+
|
|
3
|
+
- Simplified routine local updates while preserving explicit path overrides for troubleshooting.
|
|
4
|
+
- Reduced repeated validation when the source and development tools are unchanged.
|
|
5
|
+
- Improved consistency between local updates, development pushes, and Beta preparation.
|
|
6
|
+
- Fixed local updates preserving repository remote and branch-tracking settings.
|
|
7
|
+
- Fixed development pushes establishing and verifying branch tracking before reporting success.
|
|
8
|
+
- Fixed Beta validation relying on the canonical remote commit rather than fragile local tracking metadata.
|
|
9
|
+
- No gameplay or equipment-data behavior changes.
|
|
10
|
+
|
|
11
|
+
## 1.3.57
|
|
12
|
+
|
|
13
|
+
- Improved mouse navigation, node sizing, and whole-chain zoom in the complete upgrade-chain view.
|
|
14
|
+
- Material-route and complete-chain dialogs can be resized and remember their last size.
|
|
15
|
+
|
|
16
|
+
## 1.3.45
|
|
17
|
+
|
|
18
|
+
- No gameplay or equipment-data behavior changes.
|
|
19
|
+
- Fixed cleanup of obsolete local update state after project updates.
|
|
20
|
+
|
|
21
|
+
## 1.3.44
|
|
22
|
+
|
|
23
|
+
- No gameplay or equipment-data behavior changes.
|
|
24
|
+
- Improved local update, recovery-package, and release validation reliability.
|
|
25
|
+
|
|
1
26
|
## 1.3.43
|
|
2
27
|
|
|
3
28
|
- 修正完整升级链在 Poi 11 中的空白区域拖动和材料内容高度适配。
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ This package is intended for preview testing. Stable users should install `poi-p
|
|
|
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
|
|
package/assets/main.css
CHANGED
|
@@ -7243,3 +7243,378 @@
|
|
|
7243
7243
|
overflow-x: auto;
|
|
7244
7244
|
overflow-y: visible;
|
|
7245
7245
|
}
|
|
7246
|
+
|
|
7247
|
+
/* 1.3.56: route decisions compare atomic materials and keep unsupported chains read-only. */
|
|
7248
|
+
.decision-route-choice-dialog.is-resizable {
|
|
7249
|
+
width: min(1180px, calc(100vw - 36px));
|
|
7250
|
+
height: min(820px, calc(100vh - 36px));
|
|
7251
|
+
min-width: min(760px, calc(100vw - 20px));
|
|
7252
|
+
min-height: 500px;
|
|
7253
|
+
max-width: calc(100vw - 12px);
|
|
7254
|
+
max-height: calc(100vh - 12px);
|
|
7255
|
+
resize: both;
|
|
7256
|
+
overflow: hidden;
|
|
7257
|
+
}
|
|
7258
|
+
|
|
7259
|
+
.decision-route-choice-dialog.is-resizable .modal-content {
|
|
7260
|
+
display: flex;
|
|
7261
|
+
height: 100%;
|
|
7262
|
+
min-height: 0;
|
|
7263
|
+
flex-direction: column;
|
|
7264
|
+
}
|
|
7265
|
+
|
|
7266
|
+
.decision-route-choice-dialog.is-resizable .modal-body {
|
|
7267
|
+
min-height: 0;
|
|
7268
|
+
max-height: none;
|
|
7269
|
+
flex: 1 1 auto;
|
|
7270
|
+
overflow: auto;
|
|
7271
|
+
}
|
|
7272
|
+
|
|
7273
|
+
.decision-route-result-preview,
|
|
7274
|
+
.decision-route-comparison-equipment {
|
|
7275
|
+
display: flex;
|
|
7276
|
+
align-items: center;
|
|
7277
|
+
justify-content: center;
|
|
7278
|
+
gap: 8px;
|
|
7279
|
+
}
|
|
7280
|
+
|
|
7281
|
+
.decision-route-result-preview {
|
|
7282
|
+
margin: 8px 0;
|
|
7283
|
+
}
|
|
7284
|
+
|
|
7285
|
+
.decision-chain-cost-grid.is-route-summary {
|
|
7286
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
7287
|
+
margin-top: 8px;
|
|
7288
|
+
}
|
|
7289
|
+
|
|
7290
|
+
.decision-route-comparison-scroll {
|
|
7291
|
+
max-width: 100%;
|
|
7292
|
+
overflow: auto;
|
|
7293
|
+
padding: 1px 1px 12px;
|
|
7294
|
+
}
|
|
7295
|
+
|
|
7296
|
+
.decision-route-comparison-grid {
|
|
7297
|
+
display: grid;
|
|
7298
|
+
min-width: max-content;
|
|
7299
|
+
border: 1px solid rgba(127, 127, 127, 0.28);
|
|
7300
|
+
border-radius: 8px;
|
|
7301
|
+
overflow: hidden;
|
|
7302
|
+
background: rgba(127, 127, 127, 0.025);
|
|
7303
|
+
}
|
|
7304
|
+
|
|
7305
|
+
.decision-route-comparison-corner,
|
|
7306
|
+
.decision-route-comparison-header,
|
|
7307
|
+
.decision-route-comparison-row-label,
|
|
7308
|
+
.decision-route-comparison-cell {
|
|
7309
|
+
min-width: 0;
|
|
7310
|
+
padding: 10px;
|
|
7311
|
+
border-right: 1px solid rgba(127, 127, 127, 0.2);
|
|
7312
|
+
border-bottom: 1px solid rgba(127, 127, 127, 0.2);
|
|
7313
|
+
}
|
|
7314
|
+
|
|
7315
|
+
.decision-route-comparison-corner {
|
|
7316
|
+
display: flex;
|
|
7317
|
+
flex-direction: column;
|
|
7318
|
+
justify-content: center;
|
|
7319
|
+
gap: 4px;
|
|
7320
|
+
background: rgba(69, 169, 165, 0.08);
|
|
7321
|
+
}
|
|
7322
|
+
|
|
7323
|
+
.decision-route-comparison-corner small {
|
|
7324
|
+
color: #888;
|
|
7325
|
+
line-height: 1.45;
|
|
7326
|
+
}
|
|
7327
|
+
|
|
7328
|
+
.decision-route-comparison-header {
|
|
7329
|
+
display: flex;
|
|
7330
|
+
flex-direction: column;
|
|
7331
|
+
gap: 8px;
|
|
7332
|
+
background: rgba(127, 127, 127, 0.04);
|
|
7333
|
+
}
|
|
7334
|
+
|
|
7335
|
+
.decision-route-comparison-header.is-dominant {
|
|
7336
|
+
background: rgba(87, 176, 108, 0.12);
|
|
7337
|
+
}
|
|
7338
|
+
|
|
7339
|
+
.decision-route-comparison-header.is-dominated {
|
|
7340
|
+
background: rgba(192, 74, 74, 0.1);
|
|
7341
|
+
}
|
|
7342
|
+
|
|
7343
|
+
.decision-route-comparison-header.is-choice,
|
|
7344
|
+
.decision-route-comparison-header.is-tradeoff,
|
|
7345
|
+
.decision-route-comparison-header.is-unknown {
|
|
7346
|
+
background: rgba(217, 155, 66, 0.1);
|
|
7347
|
+
}
|
|
7348
|
+
|
|
7349
|
+
.decision-route-comparison-header.is-selected {
|
|
7350
|
+
box-shadow: inset 0 0 0 2px rgba(52, 122, 183, 0.82);
|
|
7351
|
+
}
|
|
7352
|
+
|
|
7353
|
+
.decision-route-comparison-header .label {
|
|
7354
|
+
align-self: center;
|
|
7355
|
+
white-space: normal;
|
|
7356
|
+
text-align: center;
|
|
7357
|
+
line-height: 1.35;
|
|
7358
|
+
}
|
|
7359
|
+
|
|
7360
|
+
.decision-route-comparison-row-label {
|
|
7361
|
+
display: flex;
|
|
7362
|
+
align-items: center;
|
|
7363
|
+
gap: 9px;
|
|
7364
|
+
background: rgba(127, 127, 127, 0.045);
|
|
7365
|
+
}
|
|
7366
|
+
|
|
7367
|
+
.decision-route-comparison-row-label > .equip-icon,
|
|
7368
|
+
.decision-route-comparison-row-label > .useitem,
|
|
7369
|
+
.decision-route-comparison-row-label > .material-icon,
|
|
7370
|
+
.decision-route-comparison-row-label > img,
|
|
7371
|
+
.decision-route-comparison-row-label > svg {
|
|
7372
|
+
width: 34px;
|
|
7373
|
+
height: 34px;
|
|
7374
|
+
flex: 0 0 34px;
|
|
7375
|
+
object-fit: contain;
|
|
7376
|
+
}
|
|
7377
|
+
|
|
7378
|
+
.decision-route-comparison-row-label > span {
|
|
7379
|
+
display: flex;
|
|
7380
|
+
min-width: 0;
|
|
7381
|
+
flex-direction: column;
|
|
7382
|
+
gap: 2px;
|
|
7383
|
+
}
|
|
7384
|
+
|
|
7385
|
+
.decision-route-comparison-row-label strong {
|
|
7386
|
+
overflow: hidden;
|
|
7387
|
+
text-overflow: ellipsis;
|
|
7388
|
+
white-space: nowrap;
|
|
7389
|
+
}
|
|
7390
|
+
|
|
7391
|
+
.decision-route-comparison-row-label small,
|
|
7392
|
+
.decision-route-comparison-cell small {
|
|
7393
|
+
color: #888;
|
|
7394
|
+
}
|
|
7395
|
+
|
|
7396
|
+
.decision-route-comparison-cell {
|
|
7397
|
+
display: flex;
|
|
7398
|
+
align-items: center;
|
|
7399
|
+
justify-content: center;
|
|
7400
|
+
flex-direction: column;
|
|
7401
|
+
gap: 3px;
|
|
7402
|
+
text-align: center;
|
|
7403
|
+
}
|
|
7404
|
+
|
|
7405
|
+
.decision-route-comparison-cell.is-better {
|
|
7406
|
+
color: #2f7d43;
|
|
7407
|
+
background: rgba(87, 176, 108, 0.13);
|
|
7408
|
+
}
|
|
7409
|
+
|
|
7410
|
+
.decision-route-comparison-cell.is-worse {
|
|
7411
|
+
color: #a94442;
|
|
7412
|
+
background: rgba(192, 74, 74, 0.11);
|
|
7413
|
+
}
|
|
7414
|
+
|
|
7415
|
+
.decision-route-comparison-cell.is-neutral,
|
|
7416
|
+
.decision-route-comparison-cell.is-unknown {
|
|
7417
|
+
color: #9a661c;
|
|
7418
|
+
background: rgba(217, 155, 66, 0.1);
|
|
7419
|
+
}
|
|
7420
|
+
|
|
7421
|
+
.decision-route-comparison-cell.is-same {
|
|
7422
|
+
background: rgba(127, 127, 127, 0.035);
|
|
7423
|
+
}
|
|
7424
|
+
|
|
7425
|
+
#item-improvement .decision-chain-option.is-comparison-tradeoff,
|
|
7426
|
+
#item-improvement .decision-chain-option.is-comparison-unknown {
|
|
7427
|
+
border-color: rgba(185, 111, 18, 0.82);
|
|
7428
|
+
box-shadow: inset 4px 0 rgba(185, 111, 18, 0.78);
|
|
7429
|
+
background: rgba(185, 111, 18, 0.08);
|
|
7430
|
+
}
|
|
7431
|
+
|
|
7432
|
+
#item-improvement .decision-comparison-badge.is-tradeoff,
|
|
7433
|
+
#item-improvement .decision-comparison-badge.is-unknown {
|
|
7434
|
+
color: #fff;
|
|
7435
|
+
background: #d58512;
|
|
7436
|
+
}
|
|
7437
|
+
|
|
7438
|
+
#item-improvement .decision-chain-display-only-notice {
|
|
7439
|
+
display: flex;
|
|
7440
|
+
align-items: flex-start;
|
|
7441
|
+
gap: 8px;
|
|
7442
|
+
margin: 10px 12px 0;
|
|
7443
|
+
padding: 9px 10px;
|
|
7444
|
+
border: 1px solid rgba(217, 155, 66, 0.46);
|
|
7445
|
+
border-radius: 6px;
|
|
7446
|
+
color: #8a5b18;
|
|
7447
|
+
background: rgba(217, 155, 66, 0.1);
|
|
7448
|
+
line-height: 1.5;
|
|
7449
|
+
}
|
|
7450
|
+
|
|
7451
|
+
#item-improvement .decision-chain-point.is-display-only {
|
|
7452
|
+
border-color: rgba(217, 155, 66, 0.38);
|
|
7453
|
+
background: rgba(217, 155, 66, 0.045);
|
|
7454
|
+
}
|
|
7455
|
+
|
|
7456
|
+
#item-improvement .decision-route-status.is-display-only {
|
|
7457
|
+
color: #8a5b18 !important;
|
|
7458
|
+
background: rgba(217, 155, 66, 0.14);
|
|
7459
|
+
}
|
|
7460
|
+
|
|
7461
|
+
@media (max-width: 780px) {
|
|
7462
|
+
.decision-route-choice-dialog.is-resizable {
|
|
7463
|
+
width: calc(100vw - 12px);
|
|
7464
|
+
height: calc(100vh - 12px);
|
|
7465
|
+
min-width: 0;
|
|
7466
|
+
min-height: 0;
|
|
7467
|
+
margin: 6px auto;
|
|
7468
|
+
resize: none;
|
|
7469
|
+
}
|
|
7470
|
+
|
|
7471
|
+
.decision-chain-cost-grid.is-route-summary {
|
|
7472
|
+
grid-template-columns: 1fr;
|
|
7473
|
+
}
|
|
7474
|
+
}
|
|
7475
|
+
|
|
7476
|
+
/* 1.3.57: one-piece chain nodes, reliable mouse panning, explicit modal resize, and full-chain zoom. */
|
|
7477
|
+
.decision-route-choice-dialog.is-resizable,
|
|
7478
|
+
.decision-full-route-dialog {
|
|
7479
|
+
resize: none;
|
|
7480
|
+
}
|
|
7481
|
+
|
|
7482
|
+
.decision-route-choice-dialog.is-resizable > .modal-content,
|
|
7483
|
+
.decision-full-route-dialog > .modal-content {
|
|
7484
|
+
position: relative;
|
|
7485
|
+
}
|
|
7486
|
+
|
|
7487
|
+
.decision-modal-resize-handle {
|
|
7488
|
+
position: absolute;
|
|
7489
|
+
z-index: 30;
|
|
7490
|
+
right: 3px;
|
|
7491
|
+
bottom: 3px;
|
|
7492
|
+
width: 24px;
|
|
7493
|
+
height: 24px;
|
|
7494
|
+
cursor: nwse-resize;
|
|
7495
|
+
touch-action: none;
|
|
7496
|
+
user-select: none;
|
|
7497
|
+
background:
|
|
7498
|
+
linear-gradient(135deg, transparent 0 48%, rgba(127, 127, 127, 0.68) 49% 55%, transparent 56%),
|
|
7499
|
+
linear-gradient(135deg, transparent 0 66%, rgba(127, 127, 127, 0.68) 67% 73%, transparent 74%),
|
|
7500
|
+
linear-gradient(135deg, transparent 0 83%, rgba(127, 127, 127, 0.68) 84% 90%, transparent 91%);
|
|
7501
|
+
}
|
|
7502
|
+
|
|
7503
|
+
.decision-modal-resize-handle:hover {
|
|
7504
|
+
background-color: rgba(69, 169, 165, 0.12);
|
|
7505
|
+
}
|
|
7506
|
+
|
|
7507
|
+
body.decision-modal-is-resizing,
|
|
7508
|
+
body.decision-modal-is-resizing * {
|
|
7509
|
+
cursor: nwse-resize !important;
|
|
7510
|
+
user-select: none !important;
|
|
7511
|
+
}
|
|
7512
|
+
|
|
7513
|
+
#item-improvement .decision-chain-flow-toolbar,
|
|
7514
|
+
.decision-full-route-dialog .decision-chain-flow-toolbar {
|
|
7515
|
+
flex-wrap: wrap;
|
|
7516
|
+
}
|
|
7517
|
+
|
|
7518
|
+
#item-improvement .decision-chain-zoom-controls,
|
|
7519
|
+
.decision-full-route-dialog .decision-chain-zoom-controls {
|
|
7520
|
+
display: inline-flex;
|
|
7521
|
+
}
|
|
7522
|
+
|
|
7523
|
+
#item-improvement .decision-chain-zoom-value,
|
|
7524
|
+
.decision-full-route-dialog .decision-chain-zoom-value {
|
|
7525
|
+
min-width: 58px;
|
|
7526
|
+
opacity: 1;
|
|
7527
|
+
color: #aebbc3;
|
|
7528
|
+
}
|
|
7529
|
+
|
|
7530
|
+
#item-improvement .decision-chain-flow-world,
|
|
7531
|
+
.decision-full-route-dialog .decision-chain-flow-world {
|
|
7532
|
+
transform-origin: 0 0;
|
|
7533
|
+
will-change: transform;
|
|
7534
|
+
}
|
|
7535
|
+
|
|
7536
|
+
#item-improvement .decision-chain-flow-viewport,
|
|
7537
|
+
.decision-full-route-dialog .decision-chain-flow-viewport,
|
|
7538
|
+
#item-improvement .decision-chain-flow-viewport .decision-upgrade-state-node,
|
|
7539
|
+
.decision-full-route-dialog .decision-chain-flow-viewport .decision-upgrade-state-node,
|
|
7540
|
+
#item-improvement .decision-chain-flow-viewport .decision-upgrade-state-node-header,
|
|
7541
|
+
.decision-full-route-dialog .decision-chain-flow-viewport .decision-upgrade-state-node-header,
|
|
7542
|
+
#item-improvement .decision-chain-flow-viewport .decision-upgrade-state-node-body,
|
|
7543
|
+
.decision-full-route-dialog .decision-chain-flow-viewport .decision-upgrade-state-node-body,
|
|
7544
|
+
#item-improvement .decision-chain-flow-viewport .decision-chain-node-matrix-scroll,
|
|
7545
|
+
.decision-full-route-dialog .decision-chain-flow-viewport .decision-chain-node-matrix-scroll {
|
|
7546
|
+
cursor: grab;
|
|
7547
|
+
user-select: none;
|
|
7548
|
+
-webkit-user-select: none;
|
|
7549
|
+
}
|
|
7550
|
+
|
|
7551
|
+
#item-improvement .decision-chain-node-matrix-scroll,
|
|
7552
|
+
.decision-full-route-dialog .decision-chain-node-matrix-scroll,
|
|
7553
|
+
#item-improvement .decision-chain-node-flat-list,
|
|
7554
|
+
.decision-full-route-dialog .decision-chain-node-flat-list {
|
|
7555
|
+
width: 100%;
|
|
7556
|
+
min-width: 100%;
|
|
7557
|
+
max-width: none;
|
|
7558
|
+
overflow: visible;
|
|
7559
|
+
overscroll-behavior: auto;
|
|
7560
|
+
touch-action: none;
|
|
7561
|
+
}
|
|
7562
|
+
|
|
7563
|
+
#item-improvement .decision-chain-node-matrix,
|
|
7564
|
+
.decision-full-route-dialog .decision-chain-node-matrix {
|
|
7565
|
+
width: 100%;
|
|
7566
|
+
min-width: 100%;
|
|
7567
|
+
table-layout: fixed;
|
|
7568
|
+
}
|
|
7569
|
+
|
|
7570
|
+
#item-improvement .decision-chain-node-matrix thead th,
|
|
7571
|
+
.decision-full-route-dialog .decision-chain-node-matrix thead th,
|
|
7572
|
+
#item-improvement .decision-chain-node-matrix .decision-chain-node-route-column,
|
|
7573
|
+
.decision-full-route-dialog .decision-chain-node-matrix .decision-chain-node-route-column,
|
|
7574
|
+
#item-improvement .decision-chain-node-matrix tbody th,
|
|
7575
|
+
.decision-full-route-dialog .decision-chain-node-matrix tbody th {
|
|
7576
|
+
position: static;
|
|
7577
|
+
}
|
|
7578
|
+
|
|
7579
|
+
#item-improvement .decision-chain-node-matrix .decision-chain-node-route-column,
|
|
7580
|
+
.decision-full-route-dialog .decision-chain-node-matrix .decision-chain-node-route-column,
|
|
7581
|
+
#item-improvement .decision-chain-node-matrix tbody th,
|
|
7582
|
+
.decision-full-route-dialog .decision-chain-node-matrix tbody th {
|
|
7583
|
+
width: 142px;
|
|
7584
|
+
min-width: 142px;
|
|
7585
|
+
max-width: 142px;
|
|
7586
|
+
}
|
|
7587
|
+
|
|
7588
|
+
#item-improvement .decision-chain-material-heading,
|
|
7589
|
+
.decision-full-route-dialog .decision-chain-material-heading {
|
|
7590
|
+
width: 100%;
|
|
7591
|
+
min-width: 62px;
|
|
7592
|
+
}
|
|
7593
|
+
|
|
7594
|
+
#item-improvement .decision-chain-material-heading b,
|
|
7595
|
+
.decision-full-route-dialog .decision-chain-material-heading b {
|
|
7596
|
+
display: block;
|
|
7597
|
+
overflow: visible;
|
|
7598
|
+
max-width: 100%;
|
|
7599
|
+
line-height: 1.25;
|
|
7600
|
+
text-overflow: clip;
|
|
7601
|
+
white-space: normal;
|
|
7602
|
+
overflow-wrap: anywhere;
|
|
7603
|
+
}
|
|
7604
|
+
|
|
7605
|
+
#item-improvement .decision-upgrade-state-node-body,
|
|
7606
|
+
.decision-full-route-dialog .decision-upgrade-state-node-body,
|
|
7607
|
+
#item-improvement .decision-chain-node-material-section,
|
|
7608
|
+
.decision-full-route-dialog .decision-chain-node-material-section {
|
|
7609
|
+
overflow: visible;
|
|
7610
|
+
}
|
|
7611
|
+
|
|
7612
|
+
.decision-modal-resize-handle,
|
|
7613
|
+
.decision-modal-resize-handle:focus,
|
|
7614
|
+
.decision-modal-resize-handle:active {
|
|
7615
|
+
padding: 0;
|
|
7616
|
+
border: 0;
|
|
7617
|
+
outline: 0;
|
|
7618
|
+
box-shadow: none;
|
|
7619
|
+
appearance: none;
|
|
7620
|
+
}
|
package/i18n/en-US.json
CHANGED
|
@@ -752,5 +752,35 @@
|
|
|
752
752
|
"plugin_description": "View equipment improvement information using packaged local data.",
|
|
753
753
|
"standard font": "Standard font",
|
|
754
754
|
"upgrade": "upgrade",
|
|
755
|
-
"upgrade to": "upgrade to"
|
|
755
|
+
"upgrade to": "upgrade to",
|
|
756
|
+
"Rich inventory test": "Rich inventory test",
|
|
757
|
+
"Test profiles add the same tracked-only and material-route plans without deleting unrelated plans": "Test profiles add the same tracked-only and material-route plans without deleting unrelated plans",
|
|
758
|
+
"General uses real inventory; all-ship mode changes assistants only; rich inventory temporarily simulates half the relevant ships and most improvable equipment": "General uses real inventory; all-ship mode changes assistants only; rich inventory temporarily simulates half the relevant ships and most improvable equipment",
|
|
759
|
+
"Load rich-inventory test data": "Load rich-inventory test data",
|
|
760
|
+
"Restore real inventory view": "Restore real inventory view",
|
|
761
|
+
"Advantage": "Advantage",
|
|
762
|
+
"Disadvantage": "Disadvantage",
|
|
763
|
+
"Same": "Same",
|
|
764
|
+
"Neutral": "Neutral",
|
|
765
|
+
"Compare every material before choosing; the window can be resized from its lower-right corner": "Compare every material before choosing; resize the window from its lower-right corner.",
|
|
766
|
+
"Compare route materials": "Compare route materials",
|
|
767
|
+
"Green is better, red is worse, and yellow means the system cannot decide": "Green is better, red is worse, and yellow means the system cannot decide.",
|
|
768
|
+
"Display only": "Display only",
|
|
769
|
+
"Cycle detected · display only": "Cycle detected · display only",
|
|
770
|
+
"Multiple decision nodes · display only": "Multiple decision nodes · display only",
|
|
771
|
+
"This chain contains a cycle. It is shown completely but is not managed or optimized in this version.": "This chain contains a cycle. It is shown completely but is not managed or optimized in this version.",
|
|
772
|
+
"This chain contains two or more decision nodes. It is shown completely but is not managed or optimized in this version.": "This chain contains two or more decision nodes. It is shown completely but is not managed or optimized in this version.",
|
|
773
|
+
"System-recognized better route": "System-recognized better route",
|
|
774
|
+
"System-recognized worse route": "System-recognized worse route",
|
|
775
|
+
"System cannot compare different equipment routes": "System cannot compare different equipment routes",
|
|
776
|
+
"System cannot decide between these routes": "System cannot decide between these routes",
|
|
777
|
+
"Result star": "Result star",
|
|
778
|
+
"Material equipment": "Material equipment",
|
|
779
|
+
"Consumable material": "Consumable material",
|
|
780
|
+
"Unknown": "Unknown",
|
|
781
|
+
"changelog_1_3_56_route_compare": "Route choices now show a resizable, side-by-side comparison of every material and the final improvement level.",
|
|
782
|
+
"changelog_1_3_56_atomic_stars": "Improvement costs are calculated one star at a time, including rules recorded separately for ★6, ★7, ★8, and ★9.",
|
|
783
|
+
"changelog_1_3_56_display_only_chains": "Chains with multiple decision points or cycles remain fully visible but are not managed in this version.",
|
|
784
|
+
"Fit window": "Fit window",
|
|
785
|
+
"Drag the canvas with the mouse or trackpad; each node moves as one complete card": "Drag the canvas with the mouse or trackpad; each node moves as one complete card"
|
|
756
786
|
}
|
package/i18n/ja-JP.json
CHANGED
|
@@ -752,5 +752,35 @@
|
|
|
752
752
|
"plugin_description": "同梱されたローカルデータを使用して装備改修情報を表示します。",
|
|
753
753
|
"standard font": "標準文字",
|
|
754
754
|
"upgrade": "更新",
|
|
755
|
-
"upgrade to": "上位の装備へ更新"
|
|
755
|
+
"upgrade to": "上位の装備へ更新",
|
|
756
|
+
"Rich inventory test": "豊富な所持品テスト",
|
|
757
|
+
"Test profiles add the same tracked-only and material-route plans without deleting unrelated plans": "テストプロファイルは同じ追跡専用計画と素材ルート計画を追加し、無関係な計画は削除しません",
|
|
758
|
+
"General uses real inventory; all-ship mode changes assistants only; rich inventory temporarily simulates half the relevant ships and most improvable equipment": "一般モードは実際の所持品を使用し、全艦娘モードは補助艦だけを変更し、豊富な所持品モードは関連艦娘の半数と改修可能装備の大半を一時的に再現します",
|
|
759
|
+
"Load rich-inventory test data": "豊富な所持品テストデータを読み込む",
|
|
760
|
+
"Restore real inventory view": "実際の所持品表示に戻す",
|
|
761
|
+
"Advantage": "優位",
|
|
762
|
+
"Disadvantage": "不利",
|
|
763
|
+
"Same": "同じ",
|
|
764
|
+
"Neutral": "中立",
|
|
765
|
+
"Compare every material before choosing; the window can be resized from its lower-right corner": "選択前に素材を項目ごとに比較してください。ウィンドウ右下からサイズを変更できます。",
|
|
766
|
+
"Compare route materials": "ルート素材比較",
|
|
767
|
+
"Green is better, red is worse, and yellow means the system cannot decide": "緑は優位、赤は劣位、黄はシステムで判断できないことを示します",
|
|
768
|
+
"Display only": "表示のみ",
|
|
769
|
+
"Cycle detected · display only": "循環ルートを検出 · 表示のみ",
|
|
770
|
+
"Multiple decision nodes · display only": "複数の分岐点 · 表示のみ",
|
|
771
|
+
"This chain contains a cycle. It is shown completely but is not managed or optimized in this version.": "このチェーンには循環があります。本バージョンでは全体を表示しますが、管理・最適化は行いません。",
|
|
772
|
+
"This chain contains two or more decision nodes. It is shown completely but is not managed or optimized in this version.": "このチェーンには2つ以上の分岐点があります。本バージョンでは全体を表示しますが、管理・最適化は行いません。",
|
|
773
|
+
"System-recognized better route": "システムが優位と判定",
|
|
774
|
+
"System-recognized worse route": "システムが劣位と判定",
|
|
775
|
+
"System cannot compare different equipment routes": "異なる装備ルートは比較できません",
|
|
776
|
+
"System cannot decide between these routes": "各ルートに取捨があり判断できません",
|
|
777
|
+
"Result star": "最終改修値",
|
|
778
|
+
"Material equipment": "素材装備",
|
|
779
|
+
"Consumable material": "通常素材",
|
|
780
|
+
"Unknown": "不明",
|
|
781
|
+
"changelog_1_3_56_route_compare": "ルート選択にサイズ変更可能な横並び比較を追加し、各素材と最終改修値を個別に表示します。",
|
|
782
|
+
"changelog_1_3_56_atomic_stars": "改修コストを星ごとに計算し、★6・★7・★8・★9 が個別記録されたルールにも対応しました。",
|
|
783
|
+
"changelog_1_3_56_display_only_chains": "複数の分岐点や循環を含むチェーンは完全表示しますが、本バージョンでは管理しません。",
|
|
784
|
+
"Fit window": "ウィンドウに合わせる",
|
|
785
|
+
"Drag the canvas with the mouse or trackpad; each node moves as one complete card": "マウスまたはトラックパッドでキャンバスをドラッグします。各ノードは一枚のカードとして移動します。"
|
|
756
786
|
}
|
package/i18n/zh-CN.json
CHANGED
|
@@ -752,5 +752,35 @@
|
|
|
752
752
|
"plugin_description": "使用随插件安装的本地数据查看装备改修信息。",
|
|
753
753
|
"standard font": "标准字体",
|
|
754
754
|
"upgrade": "升级",
|
|
755
|
-
"upgrade to": "升级为"
|
|
755
|
+
"upgrade to": "升级为",
|
|
756
|
+
"Rich inventory test": "富库存测试",
|
|
757
|
+
"Test profiles add the same tracked-only and material-route plans without deleting unrelated plans": "测试档案会添加相同的仅关注计划和材料路线计划,不会删除无关计划",
|
|
758
|
+
"General uses real inventory; all-ship mode changes assistants only; rich inventory temporarily simulates half the relevant ships and most improvable equipment": "普通模式使用真实库存;全舰娘模式只改变秘书舰;富库存模式会临时模拟半数相关舰娘和大部分可改修装备",
|
|
759
|
+
"Load rich-inventory test data": "载入富库存测试数据",
|
|
760
|
+
"Restore real inventory view": "恢复真实库存视图",
|
|
761
|
+
"Advantage": "优势",
|
|
762
|
+
"Disadvantage": "劣势",
|
|
763
|
+
"Same": "相同",
|
|
764
|
+
"Neutral": "中立",
|
|
765
|
+
"Compare every material before choosing; the window can be resized from its lower-right corner": "选择前请逐项对比材料;可从窗口右下角调整大小",
|
|
766
|
+
"Compare route materials": "路线材料对照",
|
|
767
|
+
"Green is better, red is worse, and yellow means the system cannot decide": "绿色表示更优,红色表示较差,黄色表示系统无法抉择",
|
|
768
|
+
"Display only": "仅展示",
|
|
769
|
+
"Cycle detected · display only": "检测到环形链路 · 仅展示",
|
|
770
|
+
"Multiple decision nodes · display only": "多个分歧节点 · 仅展示",
|
|
771
|
+
"This chain contains a cycle. It is shown completely but is not managed or optimized in this version.": "该链路存在环形关系。本版本完整展示,但不参与管理或优化。",
|
|
772
|
+
"This chain contains two or more decision nodes. It is shown completely but is not managed or optimized in this version.": "该链路包含两个或以上分歧节点。本版本完整展示,但不参与管理或优化。",
|
|
773
|
+
"System-recognized better route": "系统可判断为更优",
|
|
774
|
+
"System-recognized worse route": "系统可判断为较差",
|
|
775
|
+
"System cannot compare different equipment routes": "不同装备路线,系统无法比较",
|
|
776
|
+
"System cannot decide between these routes": "路线各有取舍,系统无法抉择",
|
|
777
|
+
"Result star": "最终星级",
|
|
778
|
+
"Material equipment": "素材装备",
|
|
779
|
+
"Consumable material": "普通材料",
|
|
780
|
+
"Unknown": "不明",
|
|
781
|
+
"changelog_1_3_56_route_compare": "路线选择新增可调大小的横向对照,逐项展示所有材料和最终星级。",
|
|
782
|
+
"changelog_1_3_56_atomic_stars": "改修消耗改为逐星级计算,也能正确处理分别记录的 ★6、★7、★8、★9 规则。",
|
|
783
|
+
"changelog_1_3_56_display_only_chains": "包含多个分歧点或环形关系的链路仍完整展示,但本版本不参与管理。",
|
|
784
|
+
"Fit window": "适配窗口",
|
|
785
|
+
"Drag the canvas with the mouse or trackpad; each node moves as one complete card": "使用鼠标或触摸板拖动画布;每个节点都作为完整卡片整体移动"
|
|
756
786
|
}
|
package/i18n/zh-TW.json
CHANGED
|
@@ -752,5 +752,35 @@
|
|
|
752
752
|
"plugin_description": "使用隨插件安裝的本機資料檢視裝備改修信息。",
|
|
753
753
|
"standard font": "標準字體",
|
|
754
754
|
"upgrade": "升級",
|
|
755
|
-
"upgrade to": "升級爲"
|
|
755
|
+
"upgrade to": "升級爲",
|
|
756
|
+
"Rich inventory test": "富庫存測試",
|
|
757
|
+
"Test profiles add the same tracked-only and material-route plans without deleting unrelated plans": "測試設定檔會加入相同的僅關注計畫與材料路線計畫,不會刪除無關計畫",
|
|
758
|
+
"General uses real inventory; all-ship mode changes assistants only; rich inventory temporarily simulates half the relevant ships and most improvable equipment": "一般模式使用真實庫存;全艦娘模式只改變秘書艦;富庫存模式會暫時模擬半數相關艦娘與大部分可改修裝備",
|
|
759
|
+
"Load rich-inventory test data": "載入富庫存測試資料",
|
|
760
|
+
"Restore real inventory view": "恢復真實庫存檢視",
|
|
761
|
+
"Advantage": "優勢",
|
|
762
|
+
"Disadvantage": "劣勢",
|
|
763
|
+
"Same": "相同",
|
|
764
|
+
"Neutral": "中立",
|
|
765
|
+
"Compare every material before choosing; the window can be resized from its lower-right corner": "選擇前請逐項對比材料;可從視窗右下角調整大小",
|
|
766
|
+
"Compare route materials": "路線材料對照",
|
|
767
|
+
"Green is better, red is worse, and yellow means the system cannot decide": "綠色表示較優,紅色表示較差,黃色表示系統無法判斷",
|
|
768
|
+
"Display only": "僅顯示",
|
|
769
|
+
"Cycle detected · display only": "偵測到環形鏈路 · 僅顯示",
|
|
770
|
+
"Multiple decision nodes · display only": "多個分歧節點 · 僅顯示",
|
|
771
|
+
"This chain contains a cycle. It is shown completely but is not managed or optimized in this version.": "此鏈路存在環形關係。本版本完整顯示,但不參與管理或最佳化。",
|
|
772
|
+
"This chain contains two or more decision nodes. It is shown completely but is not managed or optimized in this version.": "此鏈路包含兩個或以上分歧節點。本版本完整顯示,但不參與管理或最佳化。",
|
|
773
|
+
"System-recognized better route": "系統可判斷為較優",
|
|
774
|
+
"System-recognized worse route": "系統可判斷為較差",
|
|
775
|
+
"System cannot compare different equipment routes": "不同裝備路線,系統無法比較",
|
|
776
|
+
"System cannot decide between these routes": "路線各有取捨,系統無法判斷",
|
|
777
|
+
"Result star": "最終星級",
|
|
778
|
+
"Material equipment": "素材裝備",
|
|
779
|
+
"Consumable material": "普通材料",
|
|
780
|
+
"Unknown": "不明",
|
|
781
|
+
"changelog_1_3_56_route_compare": "路線選擇新增可調整大小的橫向對照,逐項顯示所有材料與最終星級。",
|
|
782
|
+
"changelog_1_3_56_atomic_stars": "改修消耗改為逐星級計算,也能正確處理分別記錄的 ★6、★7、★8、★9 規則。",
|
|
783
|
+
"changelog_1_3_56_display_only_chains": "包含多個分歧點或環形關係的鏈路仍完整顯示,但本版本不參與管理。",
|
|
784
|
+
"Fit window": "適配視窗",
|
|
785
|
+
"Drag the canvas with the mouse or trackpad; each node moves as one complete card": "使用滑鼠或觸控板拖動畫布;每個節點都作為完整卡片整體移動"
|
|
756
786
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poi-plugin-item-improvement2-beta",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.58",
|
|
4
4
|
"description": "Beta preview of the decision-first KanColle equipment improvement assistant for Poi",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": {
|
|
@@ -14,10 +14,8 @@
|
|
|
14
14
|
],
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@sakura2333/kancolle-data": "
|
|
18
|
-
"dom-to-image": "^2.6.0"
|
|
19
|
-
"lodash": "^4.18.1",
|
|
20
|
-
"react-numeric-input": "^2.2.3"
|
|
17
|
+
"@sakura2333/kancolle-data": "0.1.0",
|
|
18
|
+
"dom-to-image": "^2.6.0"
|
|
21
19
|
},
|
|
22
20
|
"poiPlugin": {
|
|
23
21
|
"title": "Equipment Improvement Beta",
|
package/views/changelog.js
CHANGED
|
@@ -19,6 +19,9 @@ const CHANGELOG_BASELINE_VERSION = '1.0.20'; // Keep in-app notes focused on use
|
|
|
19
19
|
|
|
20
20
|
exports.CHANGELOG_BASELINE_VERSION = CHANGELOG_BASELINE_VERSION;
|
|
21
21
|
const CHANGELOG = [{
|
|
22
|
+
version: '1.3.56',
|
|
23
|
+
items: ['changelog_1_3_56_route_compare', 'changelog_1_3_56_atomic_stars', 'changelog_1_3_56_display_only_chains']
|
|
24
|
+
}, {
|
|
22
25
|
version: '1.3.42',
|
|
23
26
|
items: ['changelog_1_3_42_blank_canvas_drag', 'changelog_1_3_42_material_expand']
|
|
24
27
|
}, {
|