poi-plugin-quest-info-2 0.6.2 → 0.6.5
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/README.md +15 -1
- package/build/kcQuestsData/DATA_VERSION +1 -1
- package/build/kcQuestsData/index.ts +1 -1
- package/build/kcQuestsData/quests-scn-new.json +3 -0
- package/build/kcQuestsData/quests-scn.json +1147 -519
- package/build/kcanotifyGamedata/DATA_VERSION +1 -1
- package/build/kcanotifyGamedata/index.ts +1 -1
- package/build/kcanotifyGamedata/quests-en.json +20 -32
- package/build/kcanotifyGamedata/quests-jp.json +19 -31
- package/build/kcanotifyGamedata/quests-ko.json +20 -32
- package/build/kcanotifyGamedata/quests-scn.json +20 -32
- package/build/kcanotifyGamedata/quests-tcn.json +20 -32
- package/build/questCategory.json +3 -1
- package/i18n/en-US.json +1 -0
- package/i18n/ja-JP.json +1 -0
- package/i18n/zh-CN.json +1 -0
- package/i18n/zh-TW.json +1 -0
- package/package.json +2 -2
- package/scripts/downloadKcQuestsData.ts +47 -25
- package/scripts/genQuestCategory.ts +7 -7
- package/src/Toolbar.tsx +13 -10
- package/src/__tests__/__snapshots__/questCategory.spec.ts.snap +1 -1
- package/src/__tests__/kcanotifyData.spec.ts +1 -1
- package/src/__tests__/kcwikiData.spec.ts +23 -10
- package/src/__tests__/questCategory.spec.ts +3 -3
- package/src/components/QuestCard/MinimalQuestCard.tsx +2 -2
- package/src/components/QuestCard/index.tsx +7 -4
- package/src/components/QuestList.tsx +3 -2
- package/src/patch.ts +14 -7
- package/src/questHelper.ts +14 -0
- package/src/tags.ts +6 -0
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A [poi](https://github.com/poooi/poi) plugin that helps you view quest info. Dat
|
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+

|
|
13
13
|
|
|
14
14
|
## Features
|
|
15
15
|
|
|
@@ -19,6 +19,20 @@ Paste `poi-plugin-quest-info-2` in the plugins tab and click the install button.
|
|
|
19
19
|
- Sync with game quest data.
|
|
20
20
|
- Auto switch to quest tab when enter quest views.
|
|
21
21
|
|
|
22
|
+
## Development
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
# Install dependencies
|
|
26
|
+
npm install
|
|
27
|
+
|
|
28
|
+
# Download game data from github and convert assets to base64
|
|
29
|
+
# try set `http_proxy` or `https_proxy` as environment when download fail
|
|
30
|
+
npm run build
|
|
31
|
+
|
|
32
|
+
# Run the plugin in web environment
|
|
33
|
+
npm run storybook
|
|
34
|
+
```
|
|
35
|
+
|
|
22
36
|
## Thanks
|
|
23
37
|
|
|
24
38
|
- [poi](https://github.com/poooi/poi)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
0333ac2f07ac4d4831cbe1896472004fe456ac79
|