Meneth32
Meneth32
Tested and working. :)
`curl -I http://doc.qbittorrent.org/` `HTTP/1.1 301 Moved Permanently` `Location: https://github.com/qbittorrent/qBittorrent/wiki` So the site is just a redirect nowadays. Then there's this: https://doc.qbittorrent.org/ does not respond, which may cause trouble with extensions...
I've found a hack to bypass this problem. Add this line to the end of resources/app/node_modules/fs.realpath/index.js: `fs.realpathSync.native = origRealpathSync` This modification must be reapplied after each IDE version update.
Windows 11 rounded corners can be disabled, per-window, by calling DwmSetWindowAttribute(hwnd, DWMWA_WINDOW_CORNER_PREFERENCE, DWMWCP_DONOTROUND); (paraphrased). See: https://learn.microsoft.com/en-us/windows/win32/api/dwmapi/nf-dwmapi-dwmsetwindowattribute https://learn.microsoft.com/en-us/windows/win32/api/dwmapi/ne-dwmapi-dwmwindowattribute https://learn.microsoft.com/en-us/windows/win32/api/dwmapi/ne-dwmapi-dwm_window_corner_preference The remaining trick is calling this function on every window created by...