Skip to content

Commit

Permalink
Merge pull request #71 from chenjunyu19/chore
Browse files Browse the repository at this point in the history
🐳 chore: update outdated information
  • Loading branch information
xytoki committed Jan 28, 2024
2 parents 9a55a9f + 186a165 commit d4973e2
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -27,11 +27,11 @@
- 支持查看成就的触发条件,如是任务触发可以显示任务名

## 遇到问题?
如您的问题未在此处列出或遇到不明卡死等情况,您可以[搜索或提交 issue](issues) 或者[加入交流群:933468075](https://jq.qq.com/?_wv=1027&k=Pl2MFHcA) 反馈
如您的问题未在此处列出或遇到不明卡死等情况,您可以[搜索或提交 issue](issues)

**常见问题:**
- Q: 有没有离线版?
A: 有,可以到 Actions 里下载或加群获取
A: 有,可以到 Actions 里下载
- Q: 为什么有些功能需要客户端?
A: 由于浏览器限制,这些需要模拟操作键盘鼠标的功能没办法直接实现。
- Q: 为什么不只做客户端?
Expand All @@ -43,7 +43,7 @@
- Q: 会发送我的游戏数据到服务器吗?
A: 不会。所有需要发送到服务器的数据都会在发送前提示你(比如反馈),即使是崩溃报告也可以在设置里关闭。
- Q: 能否导出数据到⋯⋯
A: 未来可期,只需要带着需要的导入格式提交 PR / issue / 加群反馈⋯⋯
A: 未来可期,只需要带着需要的导入格式提交 PR / issue ⋯⋯

## 更新
- 如果您发现有些新功能没有出现,请直接按 <kbd>Ctrl</kbd> + <kbd>F5</kbd> 刷新。
Expand All @@ -54,4 +54,4 @@
- 本地运行: `pnpm serve`(Vite)
- 本地打包: `pnpm build`(webpack)
- 单文件打包: `pnpm build:singlefile`(Vite)
- 以上命令都可以手动通过 `:vite``:webpack` 切换工具链。我们推荐使用 `Vite` 进行开发,在 `webpack` 下测试后部署。
- 以上命令都可以手动通过 `:vite``:webpack` 切换工具链。我们推荐使用 `Vite` 进行开发,在 `webpack` 下测试后部署。
3 changes: 1 addition & 2 deletions README_en.md
Expand Up @@ -29,7 +29,6 @@ A 100% browser-based toolbox for Genshin Impact with every line of code made by

## Contact or Feedback
- Any issues/feedback is welcome. Don't be scared by all the Chinese text, we'll answer you in English!
- For Chinese-reading users, our QQ group is [933468075](https://jq.qq.com/?_wv=1027&k=Pl2MFHcA).

**FAQs**
- Q: Can I use this locally?
Expand All @@ -45,7 +44,7 @@ A 100% browser-based toolbox for Genshin Impact with every line of code made by
- Q: Will my data be sent to the server?
A: No. Amy data that needs to be sent (such as feedback) will prompt you before it is sent. Even crash reports can be turned off in the settings.
- Q: Can I export data to...?
A: Eventually, we just need a PR/issue/group feedback to be submitted with the required import format!
A: Eventually, we just need a PR/issue to be submitted with the required import format!

## Upadting
- Just reload the page by pressing <kbd>Ctrl</kbd> + <kbd>F5</kbd>
Expand Down
34 changes: 25 additions & 9 deletions src/views/Home.vue
Expand Up @@ -108,15 +108,20 @@
>
<fa-icon icon="folder-tree" />
<h4>本地使用</h4>
<div>如需离线使用,请点这里下载本地专用版</div>
<div>如需离线使用,请点这里下载本地专用版</div>
</a>
<a :class="$style.card" href="https://github.com/YuehaiTeam/cocogoat/issues" target="_blank">
<fa-icon :icon="['far', 'circle-dot']" />
<h4>功能反馈</h4>
<div>无论遇到问题还是请求新功能,都可以前往 Github Issues 反馈</div>
</a>
<a :class="$style.card" href="https://github.com/YuehaiTeam/cocogoat/discussions" target="_blank">
<fa-icon icon="message" />
<h4>反馈问题</h4>
<div>无论功能反馈还是聊天吹水,都可以前往 Github Issues 反馈。</div>
<h4>社区交流</h4>
<div>前往 Github Discussions 进行聊天吹水和其他非正式讨论</div>
</a>
</div>
<div :class="$style.copyright">&copy;2022-2023 YuehaiTeam cocogoat.work <build-info /></div>
<div :class="$style.copyright">&copy;2022-2024 YuehaiTeam cocogoat.work <build-info /></div>
</div>
</Layout>
</template>
Expand All @@ -125,16 +130,27 @@
import { ref, defineComponent, watch } from 'vue'
import { library } from '@fortawesome/fontawesome-svg-core'
import {
faInfinity,
faFolderTree,
faTerminal,
faBoxOpen,
faMapLocationDot,
faFileZipper,
faFolderTree,
faInfinity,
faMapLocationDot,
faMessage,
faTerminal,
} from '@fortawesome/free-solid-svg-icons'
import { faCircleDot } from '@fortawesome/free-regular-svg-icons'
import { faGithubAlt } from '@fortawesome/free-brands-svg-icons'
library.add(faGithubAlt, faMessage, faInfinity, faFolderTree, faTerminal, faBoxOpen, faMapLocationDot, faFileZipper)
library.add(
faBoxOpen,
faCircleDot,
faFileZipper,
faFolderTree,
faGithubAlt,
faInfinity,
faMapLocationDot,
faMessage,
faTerminal,
)
import IconCocogoat from '@/components/Icons/cocogoat.vue'
import BuildInfo from '@/components/BuildInfo.vue'
Expand Down

0 comments on commit d4973e2

Please sign in to comment.