1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-29 00:26:09 +03:00

Compare commits

...

5 Commits

Author SHA1 Message Date
MisCusi2023
5cc6229437
Update README.md 2023-04-14 19:46:11 -07:00
MisCusi2023
705b0df116
Update README.md 2023-04-14 19:45:26 -07:00
MisCusi2023
8d1863729a
Fixed QUIC port display error 2023-04-14 19:38:44 -07:00
MisCusi2023
8ea6af4018
Fixed QUIC port display error 2023-04-14 19:37:24 -07:00
MisCusi2023
280dacabac
Fixed quic port
Fixed the problem that the firewall could not open the quic port
2023-04-14 19:33:44 -07:00
4 changed files with 12 additions and 5 deletions

View File

@ -81,11 +81,21 @@ namespace ProxySuper.Core.Models.Projects
list.Add(VLESS_KCP_Port);
}
if (Types.Contains(RayType.VLESS_QUIC))
{
list.Add(VLESS_QUIC_Port);
}
if (Types.Contains(RayType.VMESS_KCP))
{
list.Add(VMESS_KCP_Port);
}
if (Types.Contains(RayType.VMESS_QUIC))
{
list.Add(VMESS_QUIC_Port);
}
if (Types.Contains(RayType.ShadowsocksAEAD))
{
list.Add(ShadowSocksPort);

View File

@ -13,7 +13,7 @@
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
<Label Content="端口(port)" Width="140" />
<TextBox Text="{Binding Path=Settings.VLESS_KCP_Port,Mode=OneTime}" IsReadOnly="True" Width="300" />
<TextBox Text="{Binding Path=Settings.VLESS_QUIC_Port,Mode=OneTime}" IsReadOnly="True" Width="300" />
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">

View File

@ -14,7 +14,7 @@
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
<Label Content="端口(port)" Width="140" />
<TextBox Text="{Binding Path=Settings.VMESS_KCP_Port,Mode=OneTime}" IsReadOnly="True" Width="300" />
<TextBox Text="{Binding Path=Settings.VMESS_QUIC_Port,Mode=OneTime}" IsReadOnly="True" Width="300" />
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">

View File

@ -87,8 +87,6 @@ Let's Encrypt证书申请频率的限制
[(GPL-V3)](https://raw.githubusercontent.com/proxysu/windows/master/LICENSE)
## 运行文件下载
* Beta版(随代码更新新添加功能可能有bug或不完善)
[下载](https://github.com/proxysu/windows/raw/master/ProxySU/bin/Beta/Beta.zip)
* 正式版(正式发布的版本,新功能完善后发布)
[下载](https://github.com/proxysu/windows/releases)
@ -106,7 +104,6 @@ Microsoft [.NET Framework 4.8](https://dotnet.microsoft.com/download/dotnet-fram
## 程序使用问题反馈
* Telegram群组 https://t.me/proxysuissues
* Telegram频道 https://t.me/proxysu_channel
* 在线提问 https://github.com/proxysu/windows/issues
在使用遇到问题时,请先看一下[常见问题集锦](https://github.com/proxysu/windows/wiki/CommonError),如果还不能解决,可以到以上平台询问,个人精力有限,尽力解答。