You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 28, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
<h1align="center">
2
-
CDP-Patches v1.0
2
+
CDP-Patches v1.1
3
3
</h1>
4
4
5
5
@@ -34,6 +34,14 @@
34
34
</a>
35
35
</p>
36
36
37
+
---
38
+
39
+
> [!CAUTION]
40
+
> The [crbug#1477537](https://bugs.chromium.org/p/chromium/issues/detail?id=1477537) causing the Input Leak has been fixed in [#6917162](https://chromium-review.googlesource.com/c/chromium/src/+/6917162). It will probably be implemented in Chrome-Stable v142+. <br>
41
+
> CoalescedEvents are now also emitted by Input Events. There is no reason to use this package anymore, except for Select Elements ([crbug#40943840](https://issues.chromium.org/issues/40943840)).
Copy file name to clipboardExpand all lines: cdp_patches/__init__.py
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,24 @@
3
3
4
4
VERSION="1.1"
5
5
6
+
warnings.warn(
7
+
"""
8
+
The [crbug#1477537](https://bugs.chromium.org/p/chromium/issues/detail?id=1477537) causing the Input Leak has been fixed in [#6917162](https://chromium-review.googlesource.com/c/chromium/src/+/6917162). It will probably be implemented in Chrome-Stable v142+. <br>
9
+
CoalescedEvents are now also emitted by Input Events. There is no reason to use this package anymore, except for Select Elements ([crbug#40943840](https://issues.chromium.org/issues/40943840)).
10
+
""",
11
+
DeprecationWarning,
12
+
)
13
+
6
14
system_name=platform.system()
7
15
ifsystem_name=="Windows":
8
16
is_windows=True
9
17
elifsystem_name=="Linux":
10
18
is_windows=False
11
19
else:
12
20
is_windows=False
13
-
warnings.warn("Unknown system (You´re probably using MacOS, which is currently not supported).", RuntimeWarning)
21
+
warnings.warn(
22
+
"Unknown system (You´re probably using MacOS, which is currently not supported).",
0 commit comments