driverclient 0.2.10__tar.gz → 0.2.11__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.
Files changed (23) hide show
  1. {driverclient-0.2.10 → driverclient-0.2.11}/PKG-INFO +1 -1
  2. {driverclient-0.2.10 → driverclient-0.2.11}/pyproject.toml +1 -1
  3. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/__init__.py +1 -1
  4. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/capture.py +5 -6
  5. {driverclient-0.2.10 → driverclient-0.2.11}/.gitignore +0 -0
  6. {driverclient-0.2.10 → driverclient-0.2.11}/README.md +0 -0
  7. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/__main__.py +0 -0
  8. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/config.json +0 -0
  9. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/config.py +0 -0
  10. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/core/__init__.py +0 -0
  11. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/core/hardware.py +0 -0
  12. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/core/http.py +0 -0
  13. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/core/hwid.py +0 -0
  14. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/core/proc.py +0 -0
  15. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/events.py +0 -0
  16. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/main.py +0 -0
  17. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/__init__.py +0 -0
  18. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/automate.py +0 -0
  19. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/diagnose.py +0 -0
  20. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/install.py +0 -0
  21. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/resolve.py +0 -0
  22. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/ops/scan.py +0 -0
  23. {driverclient-0.2.10 → driverclient-0.2.11}/src/driverclient/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: driverclient
3
- Version: 0.2.10
3
+ Version: 0.2.11
4
4
  Summary: Driver Server client with an embeddable connector for config injection at runtime.
5
5
  Project-URL: Homepage, https://example.com/driverclient
6
6
  Author-email: Raja Sanaullah <sanaullah@99technologies.com>
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "driverclient"
7
- version = "0.2.10"
7
+ version = "0.2.11"
8
8
  description = "Driver Server client with an embeddable connector for config injection at runtime."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -25,7 +25,7 @@ from driverclient.main import run as _run
25
25
 
26
26
  __all__ = ["DriverClient", "ClientEvent"]
27
27
 
28
- __version__ = "0.2.10"
28
+ __version__ = "0.2.11"
29
29
 
30
30
 
31
31
  class DriverClient:
@@ -710,12 +710,11 @@ def _do_export(pkg: dict, cfg: dict) -> dict | None:
710
710
  return None
711
711
 
712
712
  try:
713
- # Pack EVERY file pnputil /export-driver produced — it already isolates
714
- # exactly this package's files into `dest`. The old extension filter
715
- # ([.inf,.sys,.cat]) dropped INF-referenced payloads that aren't those
716
- # types e.g. a camera's Media-Foundation DLLs (SPITDevMft.dll)
717
- # yielding packages that fail install with "cannot find the file
718
- # specified" (broken link D). Completeness is the repo's contract.
713
+ # Pack EVERY file pnputil /export-driver produced — the driver's INF
714
+ # references them all (verified even for large packages), so this is
715
+ # the complete, installable set. The old extension filter dropped
716
+ # INF-referenced payloads (e.g. a camera's SPITDevMft.dll) → install
717
+ # failed with "cannot find the file specified" (broken link D).
719
718
  archive_bytes, archive_name, encoding = pack_driver_archive(
720
719
  dest, Path(original).stem, ["*"]
721
720
  )
File without changes
File without changes