Skip to content

Commit

Permalink
docs: fix lip links
Browse files Browse the repository at this point in the history
  • Loading branch information
futrime committed Jan 5, 2025
1 parent 5822ea9 commit 6dd80b7
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/main/developer_guides/create_your_first_mod.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This tutorial covers the following topics:
- Calling Minecraft functions

!!! info
All the source code for this tutorial can be found at [futrime/better-suicide](https://github.com/futrime/better-suicide). We recommend that you look at the source code while reading the tutorial. If you have installed [lip](https://lip.futrime.com), you can also run the following code to install the mod implemented in this tutorial in the LeviLamina instance environment.
All the source code for this tutorial can be found at [futrime/better-suicide](https://github.com/futrime/better-suicide). We recommend that you look at the source code while reading the tutorial. If you have installed [lip](https://futrime.github.io/lip), you can also run the following code to install the mod implemented in this tutorial in the LeviLamina instance environment.

```shell
lip install github.com/futrime/better-suicide
Expand Down
2 changes: 1 addition & 1 deletion docs/main/developer_guides/create_your_first_mod.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
- 调用Minecraft函数

!!! info
本教程的所有源码可以在[futrime/better-suicide](https://github.com/futrime/better-suicide)找到。我们建议你一边看源码一边看教程。如果你已经安装了[lip](https://lip.futrime.com),你还可以直接运行以下代码在LeviLamina实例环境中安装本教程中实现的模组。
本教程的所有源码可以在[futrime/better-suicide](https://github.com/futrime/better-suicide)找到。我们建议你一边看源码一边看教程。如果你已经安装了[lip](https://futrime.github.io/lip),你还可以直接运行以下代码在LeviLamina实例环境中安装本教程中实现的模组。

```shell
lip install github.com/futrime/better-suicide
Expand Down
4 changes: 2 additions & 2 deletions docs/main/developer_guides/publish_your_first_mod.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ In the tutorial [Create Your First Mod](create_your_first_mod.md), we created a

### Prerequisites

First, make sure you have installed [lip](https://github.com/lippkg/lip).
First, make sure you have installed [lip](https://github.com/futrime/lip).

You should also have followed the steps in [Create Your First Mod](create_your_first_mod.md) to create a mod, where the exported mod directory has a structure similar to the following:

Expand Down Expand Up @@ -65,7 +65,7 @@ Replace the value of the `tooth` field with the GitHub repository address of you
!!! note
The `dependencies` section automatically installs the required mods when installing the mod and uninstalls them when uninstalling the mod. However, the `prerequisites` section does not automatically install the required mods; instead, it throws an error if the dependencies are missing. Generally, the mods listed in the `prerequisites` section should be fundamental and framework-level packages, such as `github.com/LiteLDev/LeviLamina`, to avoid accidentally uninstalling them during the mod uninstallation process.

For more information about `tooth.json`, please refer to <https://lip.futrime.com/reference/tooth_json_file_reference/>.
For more information about `tooth.json`, please refer to <https://futrime.github.io/lip/reference/tooth_json_file_reference/>.

### Try Packing and Installing the Mod

Expand Down
4 changes: 2 additions & 2 deletions docs/main/developer_guides/publish_your_first_mod.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### 前置条件

首先,你应当确保你安装了[lip](https://github.com/lippkg/lip)
首先,你应当确保你安装了[lip](https://github.com/futrime/lip)

你还应当按照[创建你的第一个模组](create_your_first_mod.md)中的步骤创建了一个模组,其中模组导出目录有类似如下的结构:

Expand Down Expand Up @@ -65,7 +65,7 @@
!!! note
`dependencies`在安装模组时,会自动安装依赖的模组,在卸载模组时,会自动卸载依赖的模组。但是`prerequisites`不会自动安装,而是在缺少依赖时报错。一般来说,`prerequisites`中的模组应当是一些基础性的、框架级别的包,例如`github.com/LiteLDev/LeviLamina`,以避免模组的卸载过程中误卸载了这些包。

更多关于`tooth.json`的信息,请参考<https://lip.futrime.com/zh/reference/tooth_json_file_reference/>
更多关于`tooth.json`的信息,请参考<https://futrime.github.io/lip/zh/reference/tooth_json_file_reference/>

### 尝试打包和安装模组

Expand Down
4 changes: 2 additions & 2 deletions docs/main/developer_guides/publish_your_first_pack.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Publishing your first pack

First, you should ensure that you have installed [lip](https://github.com/lippkg/lip).
First, you should ensure that you have installed [lip](https://github.com/futrime/lip).

## Creating a Repository

Expand Down Expand Up @@ -36,7 +36,7 @@ Replace the value of the `tooth` field with the GitHub repository address, repla

In the `dependencies` section, specify LeviLamina and any other packages to be integrated.

For more information about `tooth.json`, please refer to <https://lip.futrime.com/reference/tooth_json_file_reference/>.
For more information about `tooth.json`, please refer to <https://futrime.github.io/lip/reference/tooth_json_file_reference/>.

### Trying to Pack and Install the Pack

Expand Down
4 changes: 2 additions & 2 deletions docs/main/developer_guides/publish_your_first_pack.zh.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 发布你的第一个整合包

首先,你应当确保你安装了[lip](https://github.com/lippkg/lip)
首先,你应当确保你安装了[lip](https://github.com/futrime/lip)

## 创建一个仓库

Expand Down Expand Up @@ -35,7 +35,7 @@

`dependencies`中填写LeviLamina和要整合的一切包。

更多关于`tooth.json`的信息,请参考<https://lip.futrime.com/zh/reference/tooth_json_file_reference/>
更多关于`tooth.json`的信息,请参考<https://futrime.github.io/lip/zh/reference/tooth_json_file_reference/>

### 尝试打包和安装整合包

Expand Down
4 changes: 2 additions & 2 deletions docs/main/player_guides/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ You can install LeviLamina in different ways, depending on your needs:

### Install via LipUI

Simply download and run [LipUI](https://github.com/lippkg/LipUI), and then install LeviLamina from the package index.
Simply download and run [LipUI](https://github.com/futrime/lipui), and then install LeviLamina from the package index.

### Install via lip

If you have not installed lip, you can install it following the instructions in [lip installation guide](https://lip.futrime.com/install/).
If you have not installed lip, you can install it following the instructions in [lip installation guide](https://futrime.github.io/lip/install/).

After installing lip, you can install LeviLamina by running the following command:

Expand Down
4 changes: 2 additions & 2 deletions docs/main/player_guides/install.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

### 通过 lipUI 安装

只需要下载并运行[LipUI](https://github.com/lippkg/LipUI)并在包市场中选择LeviLamina安装即可。
只需要下载并运行[LipUI](https://github.com/futrime/lipui)并在包市场中选择LeviLamina安装即可。

### 通过 lip 安装

如果你还没有安装 lip,你可以按照[lip 安装指南](https://lip.futrime.com/zh/install/)中的说明进行安装。
如果你还没有安装 lip,你可以按照[lip 安装指南](https://futrime.github.io/lip/zh/install/)中的说明进行安装。

安装 lip 后,你可以通过运行以下命令来安装 LeviLamina:

Expand Down
4 changes: 2 additions & 2 deletions docs/main/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

## Before You Begin

We strongly recommend using [lip](https://lip.futrime.com/install/) for mod installation. If you have not installed it locally yet, please go ahead and check it out.
We strongly recommend using [lip](https://futrime.github.io/lip/install/) for mod installation. If you have not installed it locally yet, please go ahead and check it out.

The following content is for a quick start with using lip.

!!! tip
Not accustomed to using command-line tools? You can use [LipUI](https://github.com/lippkg/LipUI).
Not accustomed to using command-line tools? You can use [LipUI](https://github.com/futrime/lipui).

## Installing LeviLamina

Expand Down
4 changes: 2 additions & 2 deletions docs/main/quickstart.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

## 开始之前

我们强烈推荐你使用 [lip](https://lip.futrime.com/zh/install/) 来进行模组安装。如果您尚未在本地安装,请前往查看。
我们强烈推荐你使用 [lip](https://futrime.github.io/lip/zh/install/) 来进行模组安装。如果您尚未在本地安装,请前往查看。

以下内容针对使用 lip 的情况下进行快速入门。

!!! tip
不习惯使用命令行工具?你可以使用[LipUI](https://github.com/lippkg/LipUI)
不习惯使用命令行工具?你可以使用[LipUI](https://github.com/futrime/lipui)

## 配置代理或镜像

Expand Down

0 comments on commit 6dd80b7

Please sign in to comment.