Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
update url
Browse files Browse the repository at this point in the history
  • Loading branch information
pompurin404 committed Sep 18, 2024
1 parent c6cc455 commit 384f859
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report_zh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ body:
options:
- label: 我已在标题简短的描述了我所遇到的问题
- label: 我未在[Issue Tracker](./?q=is%3Aissue)中找到我要提出的问题
- label: 我未在[常见问题](https://mihomo.party/guides/issue/general/)中找到我要提出的问题
- label: 我未在[常见问题](https://mihomo.party/docs/issues/common)中找到我要提出的问题
- label: 这是GUI程序的问题,而不是内核程序的问题
- label: 我已经使用最新的测试版本测试过,问题依旧存在

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ blank_issues_enabled: false
contact_links:
- name: '常见问题'
about: '提出问题前请先查看常见问题'
url: 'https://mihomo.party/guides/issue/general/'
url: 'https://mihomo.party/docs/issues/common'
2 changes: 1 addition & 1 deletion src/renderer/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ export const firstDriver = driver({
popover: {
title: '覆写',
description:
'Mihomo Party 提供强大的覆写功能,可以对您导入的订阅配置进行个性化修改,如添加规则、自定义代理组等,您可以直接导入别人写好的覆写文件,也可以自己动手编写,<b>编辑好覆写文件一定要记得在需要覆写的订阅上启用</b>,覆写文件的语法请参考 <a href="https://mihomo.party/guides/function/override/overview" target="_blank">官方文档</a>',
'Mihomo Party 提供强大的覆写功能,可以对您导入的订阅配置进行个性化修改,如添加规则、自定义代理组等,您可以直接导入别人写好的覆写文件,也可以自己动手编写,<b>编辑好覆写文件一定要记得在需要覆写的订阅上启用</b>,覆写文件的语法请参考 <a href="https://mihomo.party/docs/guide/override" target="_blank">官方文档</a>',
side: 'right',
align: 'center'
}
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/src/pages/override.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const Override: React.FC = () => {
isIconOnly
className="app-nodrag"
onPress={() => {
open('https://mihomo.party/guides/function/override/yaml/')
open('https://mihomo.party/docs/guide/override')
}}
>
<HiOutlineDocumentText className="text-lg" />
Expand Down Expand Up @@ -210,14 +210,14 @@ const Override: React.FC = () => {
await addOverrideItem({
name: '新建YAML',
type: 'local',
file: '# https://mihomo.party/guides/function/override/yaml/',
file: '# https://mihomo.party/docs/guide/override/yaml',
ext: 'yaml'
})
} else if (key === 'new-js') {
await addOverrideItem({
name: '新建JS',
type: 'local',
file: '// https://mihomo.party/guides/function/override/js/\nfunction main(config) {\n return config\n}',
file: '// https://mihomo.party/docs/guide/override/javascript\nfunction main(config) {\n return config\n}',
ext: 'js'
})
}
Expand Down

0 comments on commit 384f859

Please sign in to comment.