logiguard fork v3: full patch set on verified 8c74db0 tree
Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
+++
|
||||
repository_url = "https://github.com/pallets/flask"
|
||||
revision = "2fec0b206c6e83ea813ab26597e15c96fab08be7"
|
||||
+++
|
||||
|
||||
## Edit History
|
||||
|
||||
```diff
|
||||
--- a/src/flask/logging.py
|
||||
+++ b/src/flask/logging.py
|
||||
@@ -4,7 +4,7 @@
|
||||
import sys
|
||||
import typing as t
|
||||
|
||||
-from werkzeug.local import LocalProxy
|
||||
+imfrom werkzeug.local import LocalProxy
|
||||
|
||||
from .globals import request
|
||||
|
||||
```
|
||||
|
||||
## Cursor Position
|
||||
|
||||
```src/flask/logging.py
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
import sys
|
||||
import typing as t
|
||||
|
||||
imfrom werkzeug.local import LocalProxy
|
||||
# ^[CURSOR_POSITION]
|
||||
|
||||
from .globals import request
|
||||
|
||||
if t.TYPE_CHECKING: # pragma: no cover
|
||||
from .sansio.app import App
|
||||
```
|
||||
|
||||
## Expected Patch
|
||||
|
||||
```diff
|
||||
--- a/src/flask/logging.py
|
||||
+++ b/src/flask/logging.py
|
||||
@@ -1,21 +1,21 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
import sys
|
||||
import typing as t
|
||||
|
||||
-imfrom werkzeug.local import LocalProxy
|
||||
+import
|
||||
# ^[CURSOR_POSITION]
|
||||
+from werkzeug.local import LocalProxy
|
||||
|
||||
from .globals import request
|
||||
```
|
||||
|
||||
```diff
|
||||
--- a/src/flask/logging.py
|
||||
+++ b/src/flask/logging.py
|
||||
@@ -1,21 +1,21 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
import sys
|
||||
import typing as t
|
||||
-
|
||||
-imfrom werkzeug.local import LocalProxy
|
||||
+import werkzeug
|
||||
# ^[CURSOR_POSITION]
|
||||
+from werkzeug.local import LocalProxy
|
||||
|
||||
from .globals import request
|
||||
```
|
||||
Reference in New Issue
Block a user