Skip to content

Commit f5e7dd5

Browse files
committed
update
1 parent 7b16d9e commit f5e7dd5

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

app/src/main/java/io/nekohasekai/sagernet/database/ProxyEntity.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,15 @@ data class ProxyEntity(
173173
}
174174
}
175175

176-
fun displayType() = when (type) {
176+
fun displayType(): String = when (type) {
177177
TYPE_SOCKS -> socksBean!!.protocolName()
178178
TYPE_HTTP -> if (httpBean!!.isTLS()) "HTTPS" else "HTTP"
179179
TYPE_SS -> "Shadowsocks"
180180
TYPE_VMESS -> if (vmessBean!!.isVLESS) "VLESS" else "VMess"
181181
TYPE_TROJAN -> "Trojan"
182182
TYPE_TROJAN_GO -> "Trojan-Go"
183183
TYPE_NAIVE -> "Naïve"
184-
TYPE_HYSTERIA -> "Hysteria"
184+
TYPE_HYSTERIA -> "Hysteria" + hysteriaBean!!.protocolVersion
185185
TYPE_SSH -> "SSH"
186186
TYPE_WG -> "WireGuard"
187187
TYPE_TUIC -> "TUIC"

app/src/main/java/io/nekohasekai/sagernet/fmt/v2ray/V2RayFmt.kt

+8-6
Original file line numberDiff line numberDiff line change
@@ -583,18 +583,20 @@ fun buildSingBoxOutboundTLS(bean: StandardV2RayBean): OutboundTLSOptions? {
583583
if (bean.sni.isNotBlank()) server_name = bean.sni
584584
if (bean.alpn.isNotBlank()) alpn = bean.alpn.listByLineOrComma()
585585
if (bean.certificates.isNotBlank()) certificate = bean.certificates
586-
if (bean.utlsFingerprint.isNotBlank()) {
587-
utls = OutboundUTLSOptions().apply {
588-
enabled = true
589-
fingerprint = bean.utlsFingerprint
590-
}
591-
}
586+
var fp = bean.utlsFingerprint
592587
if (bean.realityPubKey.isNotBlank()) {
593588
reality = OutboundRealityOptions().apply {
594589
enabled = true
595590
public_key = bean.realityPubKey
596591
short_id = bean.realityShortId
597592
}
593+
if (fp.isNullOrBlank()) fp = "chrome"
594+
}
595+
if (fp.isNotBlank()) {
596+
utls = OutboundUTLSOptions().apply {
597+
enabled = true
598+
fingerprint = fp
599+
}
598600
}
599601
}
600602
}

app/src/main/java/io/nekohasekai/sagernet/ktx/Nets.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
package io.nekohasekai.sagernet.ktx
44

5+
import io.nekohasekai.sagernet.BuildConfig
56
import io.nekohasekai.sagernet.fmt.AbstractBean
67
import moe.matsuri.nb4a.utils.NGUtil
78
import okhttp3.HttpUrl
@@ -62,4 +63,4 @@ fun mkPort(): Int {
6263
return port
6364
}
6465

65-
const val USER_AGENT = "NekoBox/Android/1.0 (Prefer ClashMeta Format)"
66+
const val USER_AGENT = "NekoBox/Android/" + BuildConfig.VERSION_NAME + " (Prefer ClashMeta Format)"

0 commit comments

Comments
 (0)