Skip to content

Commit f5f5cb0

Browse files
committed
Update documentation
1 parent 5813e0c commit f5f5cb0

File tree

10 files changed

+74
-2
lines changed

10 files changed

+74
-2
lines changed

constant/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package constant
22

33
var (
4-
Version = "1.0-beta2"
4+
Version = "1.0-beta3"
55
Commit = ""
66
)

docs/changelog.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
#### 1.0-beta3
2+
3+
* Add [chained inbound](/configuration/shared/listen#detour) support
4+
* Add process_path rule item
5+
* Add macOS redirect support
6+
* Add ShadowTLS [Inbound](/configuration/inbound/shadowtls), [Outbound](/configuration/outbound/shadowtls) and [Examples](/examples/shadowtls)
7+
* Fix search android package in non-owner users
8+
* Fix socksaddr type condition
9+
* Fix smux session status
10+
* Refactor inbound and outbound documentation
11+
* Minor fixes
12+
113
#### 1.0-beta2
214

315
* Add strict_route option for [Tun inbound](/configuration/inbound/tun#strict_route)
@@ -111,4 +123,4 @@
111123

112124
No changelog before.
113125

114-
[#9]: https://github.com/SagerNet/sing-box/pull/9
126+
[#9]: https://github.com/SagerNet/sing-box/pull/9

docs/configuration/dns/rule.md

+11
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@
6161
"process_name": [
6262
"curl"
6363
],
64+
"process_path": [
65+
"/usr/bin/curl"
66+
],
6467
"package_name": [
6568
"com.termux"
6669
],
@@ -177,6 +180,14 @@ Match port range.
177180

178181
Match process name.
179182

183+
#### process_path
184+
185+
!!! error ""
186+
187+
Only supported on Linux, Windows, and macOS.
188+
189+
Match process path.
190+
180191
#### package_name
181192

182193
Match android package name.

docs/configuration/dns/rule.zh.md

+11
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@
6060
"process_name": [
6161
"curl"
6262
],
63+
"process_path": [
64+
"/usr/bin/curl"
65+
],
6366
"package_name": [
6467
"com.termux"
6568
],
@@ -176,6 +179,14 @@
176179

177180
匹配进程名称。
178181

182+
#### process_path
183+
184+
!!! error ""
185+
186+
仅支持 Linux、Windows 和 macOS.
187+
188+
匹配进程路径。
189+
179190
#### package_name
180191

181192
匹配 Android 应用包名。

docs/configuration/inbound/redirect.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
!!! error ""
2+
3+
Only supported on Linux and macOS.
4+
15
### Structure
26

37
```json

docs/configuration/inbound/redirect.zh.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
!!! error ""
2+
3+
仅支持 Linux 和 macOS。
4+
15
### 结构
26

37
```json

docs/configuration/inbound/tproxy.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
!!! error ""
2+
3+
Only supported on Linux.
4+
15
### Structure
26

37
```json

docs/configuration/inbound/tproxy.zh.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
!!! error ""
2+
3+
仅支持 Linux。
4+
15
### 结构
26

37
```json

docs/configuration/route/rule.md

+11
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@
6868
"process_name": [
6969
"curl"
7070
],
71+
"process_path": [
72+
"/usr/bin/curl"
73+
],
7174
"package_name": [
7275
"com.termux"
7376
],
@@ -188,6 +191,14 @@ Match port range.
188191

189192
Match process name.
190193

194+
#### process_path
195+
196+
!!! error ""
197+
198+
Only supported on Linux, Windows, and macOS.
199+
200+
Match process path.
201+
191202
#### package_name
192203

193204
Match android package name.

docs/configuration/route/rule.zh.md

+11
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@
6666
"process_name": [
6767
"curl"
6868
],
69+
"process_path": [
70+
"/usr/bin/curl"
71+
],
6972
"package_name": [
7073
"com.termux"
7174
],
@@ -186,6 +189,14 @@
186189

187190
匹配进程名称。
188191

192+
#### process_path
193+
194+
!!! error ""
195+
196+
仅支持 Linux、Windows 和 macOS.
197+
198+
匹配进程路径。
199+
189200
#### package_name
190201

191202
匹配 Android 应用包名。

0 commit comments

Comments
 (0)