Skip to content

Commit

Permalink
docs: update readme and home
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsuk1ko committed Aug 12, 2024
1 parent 2a65406 commit 38e24af
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 34 deletions.
31 changes: 20 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,27 @@

## 主要功能

- 公开招募计算 + 词条截图识别
- 精英材料计算 + 干员材料预设 + 仓库截图识别 + 刷图规划
- 干员升级计算
- 基建技能筛选

※ 如果公招词条识别出现遗漏现象且您愿意帮助我改进结果,请提交 issue,附上词条截图和浏览器 console 中的 OCR 输出
- **公开招募计算**
- 支持截图识别
- 快捷跳转至 Wiki
- **精英材料计算**
- 支持搜索干员,选择精英化、技能、模组,快速添加所需材料,快捷跳转至 Wiki
- 支持从森空岛导入仓库材料数量 <sup>**NEW**</sup>
- 支持仓库截图识别
- 支持刷图规划,由企鹅物流提供掉落数据
- **干员升级计算**
- 计算将干员升级至指定等级所需狗粮和龙门币,以及需要打多少次资源本
- 支持多个需求合并计算
- **基建技能筛选**
- 通过选择设施或技能类型以及文字搜索来筛选技能,并按效果排序
- 快捷跳转至 Wiki

## 内容来源及鸣谢

- [Kengxxiao/ArknightsGameData](https://github.com/Kengxxiao/ArknightsGameData)(数据)
- [yuanyan3060/Arknights-Bot-Resource](https://github.com/yuanyan3060/Arknights-Bot-Resource)(数据、图片)
- [灰格猫](https://github.com/gneko)(起源)
- ~~[Kengxxiao/ArknightsGameData](https://github.com/Kengxxiao/ArknightsGameData)(数据)~~
- ~~[yuanyan3060/Arknights-Bot-Resource](https://github.com/yuanyan3060/Arknights-Bot-Resource)(数据、图片)~~
- [MooncellWiki/OpenArknightsFBS](https://github.com/MooncellWiki/OpenArknightsFBS)(数据FBS)
- [企鹅物流数据统计](https://penguin-stats.io/)(掉落数据)
- [明日方舟一图流](https://ark.yituliu.cn/)(材料价值数据)
- [材料获取最优策略](https://bbs.nga.cn/read.php?tid=17507710)(思路)
Expand All @@ -50,21 +59,21 @@

## 版权声明

[组织](https://github.com/arkntools)头像及本项目[应用图标](public/assets/icons)[冬夏](https://www.pixiv.net/users/8745555)绘制并授权使用,未经许可不得在本项目外使用
[本组织](https://github.com/arkntools)头像及本项目[应用图标](/public/assets/icons)[冬夏](https://www.pixiv.net/users/8745555)绘制并授权使用,未经许可不得在本项目外使用

本项目所使用的游戏资源(包括但不限于:游戏图片、文本原文或其转译版本等)仅用于更好地表现游戏资料、增强用户体验,其版权属于上海鹰角网络科技有限公司和(或)其关联公司

## Help Us Translate

If you know about English / Japanese / Korean, and are willing to help us to translate some interface text, or improving translation, you can fork this project and then create a pull request after your translation completed. I will show all contributors on the home page.

All locale files are in `src/locales`. You can refer to locale files of other languages for translation.
All locale files are in [`src/locales`](/src/locales). You can refer to locale files of other languages for translation.

----------

如果您对繁中/英语/日语/韩语有所了解,有意向帮助本项目翻译界面文字,或者改进原有翻译(英语和日语是我一手机翻……),可 fork 本项目进行翻译,完成后向本项目发起 pull request,我会将所有贡献者展示在工具箱首页

语言文件位于 `src/locales`,可参照已有的语言文件来翻译
语言文件位于 [`src/locales`](/src/locales),可参照已有的语言文件来翻译

## Contributors

Expand Down
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@ new Vue({
case 'cn':
case 'tw':
return `https://prts.wiki/w/${this.getLocalCharacterName(name, 'cn')}`;
case 'jp':
// eslint-disable-next-line no-case-declarations
case 'jp': {
const jpName = this.getLocalCharacterName(name);
return `https://arknights.wikiru.jp/index.php?${await encodeURIComponentEUCJP(
jpName === 'W' ? `${jpName}(プレイアブル)` : jpName,
)}`;
}
case 'kr':
return `https://namu.wiki/w/${this.getLocalCharacterName(name)}(명일방주)`;
default:
Expand Down
70 changes: 49 additions & 21 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,29 +72,50 @@
</div>
</div>
<AddToHomeScreen />
<template v-if="$root.localeCN">
<template v-if="$root.localeCN || $root.localeTW">
<h2>主要功能</h2>
<ul>
<li>公开招募计算 + 词条截图识别</li>
<li>精英材料计算 + 干员材料预设 + 仓库截图识别 + 刷图规划</li>
<li>干员升级计算</li>
<li>基建技能筛选</li>
</ul>
</template>
<template v-else-if="$root.localeTW">
<h2>主要功能</h2>
<ul>
<li>公開招募計算 + 詞條截圖識別</li>
<li>精英材料計算 + 幹員材料預設 + 倉庫截圖識別 + 材料獲取最優策略規劃</li>
<li>幹員陞級計算</li>
<li>基建技能篩選</li>
<li>
<b>公开招募计算</b>
<ul>
<li>支持截图识别</li>
<li>快捷跳转至 Wiki</li>
</ul>
</li>
<li>
<b>精英材料计算</b>
<ul>
<li>支持搜索干员,选择精英化、技能、模组,快速添加所需材料,快捷跳转至 Wiki</li>
<li
>支持从森空岛导入仓库材料数量
<sup class="mdui-text-color-pink-accent"><b>NEW</b></sup></li
>
<li>支持仓库截图识别</li>
<li>支持刷图规划,由企鹅物流提供掉落数据</li>
</ul>
</li>
<li>
<b>干员升级计算</b>
<ul>
<li>计算将干员升级至指定等级所需狗粮和龙门币,以及需要打多少次资源本</li>
<li>支持多个需求合并计算</li>
</ul>
</li>
<li>
<b>基建技能筛选</b>
<ul>
<li>通过选择设施或技能类型以及文字搜索来筛选技能,并按效果排序</li>
<li>快捷跳转至 Wiki</li>
</ul>
</li>
</ul>
</template>
<h2>{{ $t('home.credits') }}</h2>
<ul>
<li v-for="({ name, type, url }, i) in creditsList" :key="i">
<a :href="url" target="_blank">{{ name }}</a
>({{ type }})
<li v-for="({ name, type, url, deprecated }, i) in creditsList" :key="i">
<a :href="url" target="_blank"
><component :is="deprecated ? 'del' : 'span'">{{ name }}</component></a
><component :is="deprecated ? 'del' : 'span'">({{ type }})</component>
</li>
<li>
Wiki
Expand All @@ -112,7 +133,7 @@
</li>
</ul>
<p
><a href="https://github.com/arkntools" target="_blank">组织</a>头像及本项目<a
><a href="https://github.com/arkntools" target="_blank">本组织</a>头像及本项目<a
:href="`${$root.githubRepo}/tree/master/public/assets/icons`"
target="_blank"
>应用图标</a
Expand Down Expand Up @@ -177,20 +198,27 @@ export default defineComponent({
setting: this.$root.setting,
...contributors,
creditsList: [
{
name: '灰格猫',
type: '起源',
url: 'https://github.com/gneko',
},
{
name: 'Kengxxiao/ArknightsGameData',
type: '数据',
url: 'https://github.com/Kengxxiao/ArknightsGameData',
deprecated: true,
},
{
name: 'yuanyan3060/Arknights-Bot-Resource',
type: '数据、图片',
url: 'https://github.com/yuanyan3060/Arknights-Bot-Resource',
deprecated: true,
},
{
name: '灰格猫',
type: '起源',
url: 'https://github.com/gneko',
name: 'MooncellWiki/OpenArknightsFBS',
type: '数据FBS',
url: 'https://github.com/MooncellWiki/OpenArknightsFBS',
},
{
name: '企鹅物流数据统计',
Expand Down

0 comments on commit 38e24af

Please sign in to comment.