poi-plugin-quest-info-2 0.12.8 → 0.12.9

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # poi-plugin-quest-info-2
2
2
 
3
+ ## 0.12.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 225f7b7: Fix the problem that some task categories are not correct
8
+
3
9
  ## 0.12.8
4
10
 
5
11
  ### Patch Changes
@@ -41,6 +41,8 @@
41
41
  411,
42
42
  613,
43
43
  638,
44
+ 676,
45
+ 677,
44
46
  703
45
47
  ],
46
48
  "monthlyQuest": [
@@ -53,11 +55,15 @@
53
55
  266,
54
56
  280,
55
57
  311,
58
+ 318,
59
+ 424,
60
+ 626,
56
61
  628,
57
62
  645
58
63
  ],
59
64
  "quarterlyQuest": [
60
65
  284,
66
+ 330,
61
67
  337,
62
68
  339,
63
69
  342,
@@ -313,7 +319,6 @@
313
319
  315,
314
320
  316,
315
321
  317,
316
- 318,
317
322
  319,
318
323
  320,
319
324
  322,
@@ -324,7 +329,6 @@
324
329
  327,
325
330
  328,
326
331
  329,
327
- 330,
328
332
  331,
329
333
  332,
330
334
  333,
@@ -359,7 +363,6 @@
359
363
  420,
360
364
  422,
361
365
  423,
362
- 424,
363
366
  425,
364
367
  427,
365
368
  429,
@@ -392,7 +395,6 @@
392
395
  623,
393
396
  624,
394
397
  625,
395
- 626,
396
398
  627,
397
399
  629,
398
400
  630,
@@ -429,8 +431,6 @@
429
431
  670,
430
432
  671,
431
433
  672,
432
- 676,
433
- 677,
434
434
  679,
435
435
  682,
436
436
  683,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poi-plugin-quest-info-2",
3
- "version": "0.12.8",
3
+ "version": "0.12.9",
4
4
  "private": false,
5
5
  "description": "show quest info",
6
6
  "homepage": "https://github.com/lawvs/poi-plugin-quest-2/",
@@ -165,6 +165,21 @@ exports[`should questCategory correct snapshot 1`] = `
165
165
  "gameId": 311,
166
166
  "name": "精锐舰队演习",
167
167
  },
168
+ {
169
+ "code": "Cm2",
170
+ "gameId": 318,
171
+ "name": "给粮舰 “伊良湖” 的支援",
172
+ },
173
+ {
174
+ "code": "Dm1",
175
+ "gameId": 424,
176
+ "name": "强化输送船队护卫!",
177
+ },
178
+ {
179
+ "code": "Fm1",
180
+ "gameId": 626,
181
+ "name": "精锐 “舰战” 队新编成",
182
+ },
168
183
  {
169
184
  "code": "Fm2",
170
185
  "gameId": 628,
@@ -182,6 +197,11 @@ exports[`should questCategory correct snapshot 1`] = `
182
197
  "gameId": 284,
183
198
  "name": "南西诸岛方面 “海上警备行动” 发令!",
184
199
  },
200
+ {
201
+ "code": "Cq1",
202
+ "gameId": 330,
203
+ "name": "航母机动部队,开始演习!",
204
+ },
185
205
  {
186
206
  "code": "Cq2",
187
207
  "gameId": 337,
@@ -395,6 +415,16 @@ exports[`should questCategory correct snapshot 1`] = `
395
415
  "gameId": 638,
396
416
  "name": "对空机枪量产",
397
417
  },
418
+ {
419
+ "code": "Fw3",
420
+ "gameId": 676,
421
+ "name": "装备开发力的集中整备",
422
+ },
423
+ {
424
+ "code": "Fw4",
425
+ "gameId": 677,
426
+ "name": "续战支援能力的整备",
427
+ },
398
428
  {
399
429
  "code": "Gw1",
400
430
  "gameId": 703,
@@ -5,11 +5,11 @@ import { QuestData as KcaQuestData } from '../../build/kcanotifyGamedata'
5
5
  describe('should questCategory correct', () => {
6
6
  test('length', () => {
7
7
  expect(questCategory.dailyQuest.length).toMatchInlineSnapshot(`23`)
8
- expect(questCategory.weeklyQuest.length).toMatchInlineSnapshot(`17`)
9
- expect(questCategory.monthlyQuest.length).toMatchInlineSnapshot(`11`)
10
- expect(questCategory.quarterlyQuest.length).toMatchInlineSnapshot(`27`)
8
+ expect(questCategory.weeklyQuest.length).toMatchInlineSnapshot(`19`)
9
+ expect(questCategory.monthlyQuest.length).toMatchInlineSnapshot(`14`)
10
+ expect(questCategory.quarterlyQuest.length).toMatchInlineSnapshot(`28`)
11
11
  expect(questCategory.yearlyQuest.length).toMatchInlineSnapshot(`46`)
12
- expect(questCategory.singleQuest.length).toMatchInlineSnapshot(`473`)
12
+ expect(questCategory.singleQuest.length).toMatchInlineSnapshot(`467`)
13
13
  })
14
14
 
15
15
  test('snapshot', () => {