pyloid 0.26.6__tar.gz → 0.26.7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyloid
3
- Version: 0.26.6
3
+ Version: 0.26.7
4
4
  Summary:
5
5
  Author: aesthetics-of-record
6
6
  Author-email: 111675679+aesthetics-of-record@users.noreply.github.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyloid"
3
- version = "0.26.6"
3
+ version = "0.26.7"
4
4
  description = ""
5
5
  authors = ["aesthetics-of-record <111675679+aesthetics-of-record@users.noreply.github.com>"]
6
6
  readme = "README.md"
@@ -322,6 +322,7 @@ class _Pyloid(QApplication):
322
322
  context_menu: bool = False,
323
323
  dev_tools: bool = False,
324
324
  transparent: bool = False,
325
+ IPCs: List[PyloidIPC] = [],
325
326
  ) -> BrowserWindow:
326
327
  """
327
328
  Creates a new browser window.
@@ -346,6 +347,8 @@ class _Pyloid(QApplication):
346
347
  Whether to use developer tools (default is False)
347
348
  transparent : bool, optional
348
349
  Whether the window is transparent (default is False)
350
+ IPCs : List[PyloidIPC], optional
351
+ List of IPCs to be used in the window (default is [])
349
352
 
350
353
  Returns
351
354
  -------
@@ -373,6 +376,7 @@ class _Pyloid(QApplication):
373
376
  context_menu,
374
377
  dev_tools,
375
378
  transparent,
379
+ IPCs,
376
380
  )
377
381
  self.windows_dict[window._window.id] = window
378
382
  # latest_window_id = list(self.windows_dict.keys())[-1]
@@ -2337,6 +2341,7 @@ class Pyloid(QObject):
2337
2341
  'context_menu': context_menu,
2338
2342
  'dev_tools': dev_tools,
2339
2343
  'transparent': transparent,
2344
+ 'IPCs': IPCs,
2340
2345
  }
2341
2346
  return self.execute_command(
2342
2347
  'create_window',
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