pyloid 0.26.0__tar.gz → 0.26.2__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.26.0 → pyloid-0.26.2}/PKG-INFO +1 -1
- {pyloid-0.26.0 → pyloid-0.26.2}/pyproject.toml +1 -1
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/pyloid.py +4 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/LICENSE +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/README.md +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/__init__.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/api.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/autostart.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/browser_window.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/custom/titlebar.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/filewatcher.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/js_api/base.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/js_api/event_api.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/js_api/window_api.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/monitor.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/rpc.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/serve.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/store.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/thread_pool.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/timer.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/tray.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/url_interceptor.py +0 -0
- {pyloid-0.26.0 → pyloid-0.26.2}/src/pyloid/utils.py +0 -0
|
@@ -1632,6 +1632,10 @@ class Pyloid(QObject):
|
|
|
1632
1632
|
super().__init__()
|
|
1633
1633
|
|
|
1634
1634
|
self.data = None # 나중에 데이터 필요 시 수정
|
|
1635
|
+
|
|
1636
|
+
# server 에 Pyloid 주입
|
|
1637
|
+
if server:
|
|
1638
|
+
server.pyloid = self
|
|
1635
1639
|
|
|
1636
1640
|
self.app = _Pyloid(self, app_name, single_instance, server, self.data)
|
|
1637
1641
|
|
|
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
|
|
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
|