AbeniMatteo
AbeniMatteo
@FranciscoPombal (can i continue to tag you?) Seems to be already entirely collapsible. Source [here](https://github.com/qbittorrent/qBittorrent/blob/5c0378a6845e3484023f4c76893ff9f0e5178460/src/gui/mainwindow.cpp#L242-L243). 
It is even more limited to the right, it really shows when the window is small: https://user-images.githubusercontent.com/634710/124548010-6091e200-de2d-11eb-8114-605de9af8b26.mp4
Hi Joel, just saw the new label. This is what i'm currently doing: ```cs var socksPort = 10_001; var httpToSocksPort = 10_002; // Replaces privoxy http port var settings =...
> Hey @AbeniMatteo, this is really awesome! Just so I understand, HttpToSocks5Proxy is code you wrote and included in the project? No, not my code. [HttpToSocks5Proxy](https://www.nuget.org/packages/HttpToSocks5Proxy/) it's one of your...
FYI: .NET 6 will natively support SOCKS proxies. https://github.com/dotnet/runtime/pull/48883 https://devblogs.microsoft.com/dotnet/announcing-net-6-preview-5/#libraries-socks-proxy-support
I can implement the new filter but ATM there is no distinction between "queued for moving" and "moving" (the status is `Moving` which is a subset of "Active"). We should...
```cs context.Response.SetCookie(new Cookie("name", "value") { Secure = true }); ```
Not my case but one thing to take into consideration: HTTP.sys allows you to handle and configure HTTPS and SSL certs externally through `netsh http sslcert` and optionally combined with...
Took me sometimes but i figured it out. It seems that sometimes `/login` doesn't return the SID cookie. To work around the problem they now use the last valid SID...
@glassez found the problem, if you login passing an already valid SID, no SID will be returned.