pyloid 0.11.2__tar.gz → 0.11.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyloid-0.11.2 → pyloid-0.11.3}/PKG-INFO +1 -1
- {pyloid-0.11.2 → pyloid-0.11.3}/pyproject.toml +1 -1
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/pyloid.py +2 -4
- {pyloid-0.11.2 → pyloid-0.11.3}/LICENSE +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/README.md +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/__init__.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/api.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/autostart.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/filewatcher.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/monitor.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/timer.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/tray.py +0 -0
- {pyloid-0.11.2 → pyloid-0.11.3}/src/pyloid/utils.py +0 -0
@@ -64,9 +64,8 @@ class WindowAPI(PyloidAPI):
|
|
64
64
|
def getWindowProperties(self):
|
65
65
|
"""Returns the properties of the window."""
|
66
66
|
window = self.app.get_window_by_id(self.window_id)
|
67
|
-
|
68
|
-
|
69
|
-
return None
|
67
|
+
window_properties = window.get_window_properties()
|
68
|
+
return json.dumps(window_properties)
|
70
69
|
|
71
70
|
@Bridge()
|
72
71
|
def close(self):
|
@@ -410,7 +409,6 @@ class BrowserWindow:
|
|
410
409
|
"frame": self.frame,
|
411
410
|
"context_menu": self.context_menu,
|
412
411
|
"dev_tools": self.dev_tools,
|
413
|
-
"js_apis": self.js_apis,
|
414
412
|
}
|
415
413
|
|
416
414
|
def get_id(self):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|