Skip to content

Commit d65468a

Browse files
committed
doc: update register addr
1 parent 7f0f622 commit d65468a

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs/guides/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ storage:
5656

5757
## Plugin Registry Address
5858

59-
`vfox` will default to retrieve plugins from [vfox-plugins.lhan.me](https://vfox-plugins.lhan.me).
59+
`vfox` will default to retrieve plugins from [vfox-plugins.lhan.me](https://plugins.vfox.dev).
6060

6161
If you want to use **your own registry or third-party mirror registry**, please configure it following:
6262

6363
```yaml
6464
registry:
65-
address: "https://vfox-plugins.lhan.me"
65+
address: "https://plugins.vfox.dev"
6666
```
6767

6868
::: tip Available Mirrors

docs/plugins/create/howto_registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ the availability of the plugin through the information in `sources` at regular i
2727
and store the obtained `manifest` information in the `plugins` directory.
2828

2929
::: tip Registry address
30-
`vfox` will default to retrieve plugins from [vfox-plugins.lhan.me](https://vfox-plugins.lhan.me).
30+
`vfox` will default to retrieve plugins from [vfox-plugins.lhan.me](https://plugins.vfox.dev).
3131

3232
If you want to use **your own registry or third-party mirror registry**, please configure it according to
3333
the [plugin registry address](../../guides/configuration.md#plugin-registry-address).

docs/plugins/library/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ assert(resp.content_length ~= 0)
3333

3434
--- Download file, vfox >= 0.4.0
3535
err = http.download_file({
36-
url = "https://vfox-plugins.lhan.me/index.json",
36+
url = "https://plugins.vfox.dev/index.json",
3737
headers = {}
3838
}, "/usr/local/file")
3939
assert(err == nil, [[must be nil]] )

docs/zh-hans/guides/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ storage:
5353

5454
## 插件注册表地址
5555

56-
`vfox`默认从[vfox-plugins.lhan.me](https://vfox-plugins.lhan.me)检索插件。
56+
`vfox`默认从[vfox-plugins.lhan.me](https://plugins.vfox.dev)检索插件。
5757

5858
如果你想要使用自己的索引仓库或第三方镜像仓库,可以按照以下方式配置:
5959

6060
```yaml
6161
registry:
62-
address: "https://vfox-plugins.lhan.me"
62+
address: "https://plugins.vfox.dev"
6363
```
6464

6565
::: tip 可用镜像

docs/zh-hans/plugins/available.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import axios from 'axios'
1212
const info = ref({})
1313
const success = ref(false)
1414

15-
axios.get('https://vfox-plugins.lhan.me/index.json').then(res => {
15+
axios.get('https://plugins.vfox.dev/index.json').then(res => {
1616
info.value = res.data
1717
success.value = true
1818
})

docs/zh-hans/plugins/create/howto_registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
::: tip 仓库地址
24-
`vfox`默认将会从[vfox-plugins.lhan.me](https://vfox-plugins.lhan.me)检索插件。
24+
`vfox`默认将会从[vfox-plugins.lhan.me](https://plugins.vfox.dev)检索插件。
2525

2626
如果你想使用**自己的索引仓库或第三方镜像仓库**, 请按照[插件注册表地址](../../guides/configuration.md#插件注册表地址)进行配置。
2727
:::

docs/zh-hans/plugins/library/http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ assert(resp.content_length ~= 0)
3232

3333
--- 下载文件, vfox >= 0.4.0
3434
err = http.download_file({
35-
url = "https://vfox-plugins.lhan.me/index.json",
35+
url = "https://plugins.vfox.dev/index.json",
3636
headers = {}
3737
}, "/usr/local/file")
3838
assert(err == nil, [[must be nil]] )

0 commit comments

Comments
 (0)