-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[Feature] Proxy support #574
Comments
This project is built on tauri, which does not support proxy, so this functionality is not possible. |
will nofwl get proxy support or its also made on tauri? |
The WindowBuilder (https://docs.rs/tauri/latest/tauri/window/struct.WindowBuilder.html) has/will have a additional_browser_args() method may be , you can use it. if can use, add |
不幸的是,我的帐户没有任何积分,我不能用我的卡来支付它,所以它应该是一个网络应用程序 |
When I'm gonna get home, I'll try this |
change file at build, you can use proxy change default port 7890 with open("ChatGPT.exe", "rb+") as f:
data = f.read()
data = data.replace(b"127.0.0.1:7890", b"127.0.0.1:1080")
f.seek(0)
f.write(data)
f.truncate() |
It is recommended to submit a PR. This method works. |
Does this works?
|
The latest version of Tauri supports setting proxies, and if dependencies can be updated, users can choose to configure proxies themselves. |
I couldn't find any information about it. I updated the packages, what's next? |
You can refer to this commit tauri-apps/tauri@3dc38b1 https://github.com/lencx/ChatGPT/blob/main/src-tauri/src/app/setup.rs#L70 |
I created a topic in the Discord chat about this feature, but I couldn't solve it myself. |
Seems that latest v1.3.0 has merged the commit: https://github.com/tauri-apps/tauri/releases/tag/tauri-v1.3.0 |
Waiting for MacOS. |
Is this issue been solved or not? |
|
this feature still unsupported, uninstalled! |
Feature description
Add a support to set a proxy server
Motivation
If you try to enter a website from other country, it shows that I don't have access to the website
Alternatives
Use a VPN
Additional context
No response
The text was updated successfully, but these errors were encountered: