XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

chore: update to PE+ 0.6.0 (#3896)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3896 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

47669d2a
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

3 个文件 +13 -6
Modified package-lock.json +4 -4
@@ -18,7 +18,7 @@
18 18 "morgan": "^1.10.0",
19 19 "ncp": "^2.0.0",
20 20 "undici": "^7.10.0",
21 "warframe-public-export-plus": "^0.5.106",
21 "warframe-public-export-plus": "^0.6.0",
22 22 "warframe-riven-info": "^0.1.2",
23 23 "winston": "^3.17.0",
24 24 "winston-daily-rotate-file": "^5.0.0",
@@ -4086,9 +4086,9 @@
4086 4086 }
4087 4087 },
4088 4088 "node_modules/warframe-public-export-plus": {
4089 "version": "0.5.106",
4090 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.5.106.tgz",
4091 "integrity": "sha512-sEeHu/znVquK5gNjFZScjjNiWld1BpF+1xN7E1dZY/oIQLkprFUreOYiXb18DqcHoDsiJvrnMy4m18ft5fuxaQ=="
4089 "version": "0.6.0",
4090 "resolved": "https://registry.npmjs.org/warframe-public-export-plus/-/warframe-public-export-plus-0.6.0.tgz",
4091 "integrity": "sha512-Qps98xsKMzpB1NDol+IRkqZP3X87OtNetd2SO2h+t/+eKY3SkXC47qj8pkQjmfepavXZbECzq2WWoqMbIJh5sA=="
4092 4092 },
4093 4093 "node_modules/warframe-riven-info": {
4094 4094 "version": "0.1.2",
Modified package.json +1 -1
@@ -35,7 +35,7 @@
35 35 "morgan": "^1.10.0",
36 36 "ncp": "^2.0.0",
37 37 "undici": "^7.10.0",
38 "warframe-public-export-plus": "^0.5.106",
38 "warframe-public-export-plus": "^0.6.0",
39 39 "warframe-riven-info": "^0.1.2",
40 40 "winston": "^3.17.0",
41 41 "winston-daily-rotate-file": "^5.0.0",
Modified src/services/publicExportService.ts +8 -1
@@ -91,6 +91,12 @@ export const getExportDrones = (lang: string): IExportDrones => {
91 91 ...data,
92 92 name: getString(data.name, dict),
93 93 description: getString(data.description, dict),
94 capacityMultiplier: [
95 data.capacityMultipliers.COMMON,
96 data.capacityMultipliers.UNCOMMON,
97 data.capacityMultipliers.RARE,
98 data.capacityMultipliers.LEGENDARY
99 ],
94 100 specialities: []
95 101 });
96 102 }
@@ -119,7 +125,8 @@ export const getExportFusionBundles = (lang: string): IExportFusionBundles => {
119 125 res.push({
120 126 uniqueName,
121 127 ...data,
122 description: getString(data.description, dict)
128 description: getString(data.description, dict),
129 codexSecret: false
123 130 });
124 131 }
125 132 return { ExportFusionBundles: res };