citreae535
citreae535
Hi, I've done some research on this issue: 1. curl does not auto-detect windows system proxy, see this [to-do item](https://curl.se/docs/todo.html#auto_detect_proxy) 2. The semantics of `ProxyOverride` is described [here](https://docs.microsoft.com/en-us/troubleshoot/developer/browsers/connectivity-navigation/use-proxy-servers-with-ie#more-information) 3. Python's...
I've just upgraded to v0.0.9 and the issue is resolved. Thanks! By the way, it looks like the repo does not have a ZIP file extraction example yet. Since I'm...
There's already a crate for that: [`embed-manifest`](https://docs.rs/embed-manifest/latest/embed_manifest/). #### Build Script ```rust let manifest = embed_manifest::new_manifest("appname") .max_version_tested(embed_manifest::manifest::MaxVersionTested::Windows11) .to_string(); winresource::WindowsResource::new() .set_manifest(&manifest) .compile() ``` #### Embedded Manifest ```xml UTF-8 permonitorv2 true true ```