meta-json-schema 1.19.20 → 1.19.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## v1.19.22
|
|
2
|
+
|
|
3
|
+
### Changes
|
|
4
|
+
|
|
5
|
+
- 新增: vmess `grpc-opts` 新增配置项 `ping-interval`
|
|
6
|
+
- 新增: vless 支持 `xhttp` 传输协议,并新增配置项 `xhttp-opts`
|
|
7
|
+
- 新增: listener vless 支持 `xhttp` 传输协议,并新增配置项 `xhttp-config`
|
|
8
|
+
- 新增: 兼容安卓端 `clash-for-android` 配置项 [#11](https://github.com/dongchengjie/meta-json-schema/issues/11)
|
|
9
|
+
- 新增: 兼容 [Smart](https://github.com/vernesong/mihomo/blob/Alpha/adapter/outboundgroup/smart.go) 代理组相关配置项
|
|
10
|
+
- 新增: sudoku `table-type` 支持 `up_ascii_down_entropy`、`up_entropy_down_ascii`
|
|
11
|
+
|
|
12
|
+
### Bugs Fixes
|
|
13
|
+
|
|
14
|
+
- 修复: 补充 vless 缺失 `udp` 配置项
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## v1.19.21
|
|
19
|
+
|
|
20
|
+
### Changes
|
|
21
|
+
|
|
22
|
+
- 调整: listener vmess 配置项 `alterId` 为可选项
|
|
23
|
+
- 新增: proxy 新增 `trusttunnel` 协议
|
|
24
|
+
- 新增: inbound 新增 trusttunnel `listeners` 配置项
|
|
25
|
+
- 新增: mieru 新增配置项 `traffic-pattern`
|
|
26
|
+
- 新增: sudoku HTTP掩码支持 `ws` 模式
|
|
27
|
+
- 调整: sudoku HTTP掩码相关配置 迁移至 `httpmask` 配置项
|
|
28
|
+
- 新增: sudoku `listeners` 新增配置项 `fallback`
|
|
29
|
+
|
|
30
|
+
### Bugs Fixes
|
|
31
|
+
|
|
32
|
+
- 修复: `proxy-server-nameserver` 在未显式配置 `respect-rules` 或 `proxy-server-nameserver-policy` 时变为必填项
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
1
36
|
## v1.19.20
|
|
2
37
|
|
|
3
38
|
### Changes
|
|
@@ -88,6 +123,7 @@
|
|
|
88
123
|
- 新增: listener anytls/http/hy2/mixed/socks/trojan/tuic/vless/vmess 新增 `client-auth-type`、`client-auth-cert` 配置项
|
|
89
124
|
- 新增: ss 新增 `kcptun` 插件相关配置项支持
|
|
90
125
|
- 调整: mieru 弃用 `port-range` 字段(功能合并到 `port`)
|
|
126
|
+
- 移除: vless 移除配置项 `ws-path`
|
|
91
127
|
|
|
92
128
|
---
|
|
93
129
|
|
package/README.md
CHANGED
|
@@ -9,6 +9,9 @@ VS Code 扩展商店搜索 `Meta JSON Schema` 或 `ClashMeta.meta-json-schema`
|
|
|
9
9
|
|
|
10
10
|
1. 安装YAML语法支持插件 `redhat.vscode-yaml` 。
|
|
11
11
|
2. 在 `.vscode` 目录下的 `settings.json` 文件中(如不存在则手动创建),填入以下内容。其中,key为schema文件的地址(url或本地文件),value为路径通配符,请根据需求自行修改。
|
|
12
|
+
|
|
13
|
+
使用最新版本:
|
|
14
|
+
|
|
12
15
|
```json
|
|
13
16
|
{
|
|
14
17
|
"yaml.schemas": {
|
|
@@ -17,6 +20,16 @@ VS Code 扩展商店搜索 `Meta JSON Schema` 或 `ClashMeta.meta-json-schema`
|
|
|
17
20
|
}
|
|
18
21
|
```
|
|
19
22
|
|
|
23
|
+
使用特定版本:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"yaml.schemas": {
|
|
28
|
+
"https://unpkg.com/meta-json-schema@1.19.21/schemas/meta-json-schema.json": "**/*.yaml"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
20
33
|
</details>
|
|
21
34
|
<details>
|
|
22
35
|
<summary>Monaco Editor中使用</summary>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-json-schema",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.22",
|
|
4
4
|
"description": "JSON Schema for Clash Meta",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"clash",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"preview": "npm publish --dry-run"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@commitlint/cli": "^20.
|
|
34
|
-
"@commitlint/config-conventional": "^20.
|
|
35
|
-
"dprint": "^0.
|
|
33
|
+
"@commitlint/cli": "^20.5.0",
|
|
34
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
35
|
+
"dprint": "^0.53.1",
|
|
36
36
|
"json-schema-artifact": "^2.0.3",
|
|
37
|
-
"lefthook": "^2.
|
|
37
|
+
"lefthook": "^2.1.4"
|
|
38
38
|
},
|
|
39
39
|
"commitlint": {
|
|
40
40
|
"extends": [
|