From 0119f703cd9234e34452d770a53698eaaa918fb1 Mon Sep 17 00:00:00 2001 From: Kalmat Date: Thu, 18 Apr 2024 21:14:19 +0200 Subject: [PATCH] ALL: Added saveSetup() and restoreSetup(). Fixed / Improved watchdog (especially in Linux). Fixed / improved setPosition() method LINUX: Added ewmhlib as separate module. Fixed watchdog (freezing randomly invoking screen_resources and get_output_info), fixed workarea crash (some apps/environments do not set it), improved to work almost fine in Manjaro/KDE, avoid crashing in Wayland for "fake" :1 display (though module won't likely work) WIN32: Fixed dev.StateFlags returning weird values for multi-monitor. Fixed GetAwarenessFromDpiAwarenessContext not supported on Windows Server MACOS: Replaced display-manager-lib by other alternatives which seem to work in several macOS versions (brightness only) Added setScale() method (using a workaround). Added wakeup feature to turnOn() method --- typings/objc.pyi | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/typings/objc.pyi b/typings/objc.pyi index afa4bf8..1344751 100644 --- a/typings/objc.pyi +++ b/typings/objc.pyi @@ -1,9 +1,18 @@ -from typing import Any +from collections.abc import Buffer +from typing import Any, overload class loadBundleFunctions(str): def __getattr__(self, name: str) -> Any: ... + @overload + def __new__(cls, object: object = ...) -> loadBundleFunctions: ... + def __new__(cls, object: Buffer, encoding: str = ..., errors: str = ...) -> loadBundleFunctions: ... + class loadBundleVariables(str): def __getattr__(self, name: str) -> Any: ... + @overload + def __new__(cls, object: object = ...) -> loadBundleVariables: ... + def __new__(cls, object: Buffer, encoding: str = ..., errors: str = ...) -> loadBundleVariables: ... +