-
-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v055 #903
v055 #903
Conversation
Previously, the expected behavior of starting the VPN upon receiving the REBOOT intent was not consistent across various Android device manufacturers. In certain instances, the VPN initiation process would occur twice instead of once, resulting in failure notification. This fix will listen to the reboot and initiate the VPN start once.
Now, there is no way to display the app list in the network log if there are more than one app. When you click on the app name in the bottom sheet of the network log, it will navigate to the app info screen. The 'i' icon on the screen will now show the list of app names.
New: support for wireguard as a proxy. Default WARP wireguard support. Include individual apps to the wireguard conf list. Additional support for importing the conf file and QR code scanner. multiple peers support.
OnQuery will send the system-suggested ID for all cases, except for the query that needs to be blocked.
@@ -133,7 +133,7 @@ class DnsLogFragment : Fragment(R.layout.fragment_dns_logs), SearchView.OnQueryT | |||
override fun onScrolled(recyclerView: RecyclerView, dx: Int, dy: Int) { | |||
super.onScrolled(recyclerView, dx, dy) | |||
|
|||
if (recyclerView.getChildAt(0).tag == null) return | |||
if (recyclerView.getChildAt(0)?.tag == null) return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean "horizontal?"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey man, I really want that release, lets fix typos later :)
@@ -396,7 +534,10 @@ class ProxySettingsActivity : AppCompatActivity(R.layout.fragment_proxy_configur | |||
proxyEndpoint?.userName.toString(), | |||
TextView.BufferType.EDITABLE | |||
) | |||
if ( | |||
if (VpnController.isVpnLockdown()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#892, do not allow user to set app when in VPN lockdown mode.
No description provided.