Alexander Chernyshev
Alexander Chernyshev
> I have found the solution: Keycloak itself blocked the request coming from Streamlit (CORS error). So we should just add proper origin to Keycloak as below. You can inspect...
I've tried adding an app manifest for high dpi awareness declaration manually - by creating a file `PicView.exe.manifest` near the exe with contents: ```xml PerMonitorV2 True ``` Looks like this...
Tested on latest Windows 10 - enabling high dpi awareness looks good. Windows 11 should be fine too. - [ ] Test on older Windows versions.
Hello, @MARK-Git-N. It's cool you like it. > Currently, the software prevents the Windows timer from entering sleep mode. However, it still enters sleep mode when the screen lid is...
I've checked this on a desktop for now: ```sh powercfg -requests ``` Lists `nosleep` properly: ``` DISPLAY: [PROCESS] \Device\HarddiskVolume5\Users\CHerSun\scoop\apps\nosleep\1.2.0\NoSleep.exe SYSTEM: [PROCESS] \Device\HarddiskVolume5\Users\CHerSun\scoop\apps\nosleep\1.2.0\NoSleep.exe AWAYMODE: [PROCESS] \Device\HarddiskVolume5\Users\CHerSun\scoop\apps\nosleep\1.2.0\NoSleep.exe EXECUTION: None. PERFBOOST: None. ACTIVELOCKSCREEN:...
Disabling nosleep and repeating the same steps for forceful sleeping I can see Windows events for sleep: ``` Information 28.12.2024 3:41:50 Kernel-Power 59 (65) Information 28.12.2024 3:52:49 Kernel-Power 187 (243)...
I've found a small bug - app needed ~10 seconds to request proper execution state when you toggle it to enabled state. If you took action fast during tests -...
@MARK-Git-N just a though, what does your laptop do on lid closing? If you go to Settings -> Power & sleep -> Advanced power settings -> Choose what the power...
I was able to get a Lenovo laptop and reproduce it there. Behavior clearly differs from desktop. While NoSleep correctly claims it needs SYSTEM and AWAY mode - system still...
Ok, I've checked every possible power-related setting and tweak, as well as all docs I could find. `SetThreadExecutionState` with `ES_AWAYMODE_REQUIRED` (this is used in NoSleep actually) should prevent the sleep...