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

feat(webui): guild view (#2752)

Also moves guild-specific cheats to a switch for each guild Closes #1403 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2752 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>

d64531f4
AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
提交于

代码差异

31 个文件 +1511 -187
Modified config-vanilla.json +0 -6
Modified src/controllers/api/confirmGuildInvitationController.ts +1 -4
Modified src/controllers/api/createGuildController.ts +1 -1
Modified src/controllers/api/guildTechController.ts +3 -4
Modified src/controllers/api/placeDecoInComponentController.ts +1 -2
Modified src/controllers/api/queueDojoComponentDestructionController.ts +1 -2
Modified src/controllers/api/startDojoRecipeController.ts +1 -2
Modified src/controllers/custom/addCurrencyController.ts +22 -3
Added src/controllers/custom/addVaultDecoRecipeController.ts +36 -0
Added src/controllers/custom/getAllianceController.ts +16 -0
Added src/controllers/custom/getGuildController.ts +40 -0
Modified src/controllers/custom/getItemListsController.ts +67 -1
Added src/controllers/custom/setGuildCheatController.ts +29 -0
Added src/controllers/custom/techProjectController.ts +128 -0
Modified src/models/guildModel.ts +8 -0
Modified src/routes/custom.ts +18 -0
Modified src/routes/webui.ts +3 -0
Modified src/services/configService.ts +8 -8
Modified src/services/guildService.ts +6 -9
Modified src/services/itemDataService.ts +14 -0
Modified src/types/guildTypes.ts +10 -1
Deleted static/fixed_responses/allDecoRecipes.json +0 -104
Modified static/webui/index.html +138 -28
Modified static/webui/translations/de.js +35 -1
Modified static/webui/translations/en.js +35 -1
Modified static/webui/translations/es.js +35 -1
Modified static/webui/translations/fr.js +35 -1
Modified static/webui/translations/ru.js +35 -1
Modified static/webui/translations/uk.js +35 -1
Modified static/webui/translations/zh.js +35 -1