From 9cd7cd9671020472d8430eb1f5355e32b933e9fe Mon Sep 17 00:00:00 2001 From: Feodor Fitsner Date: Tue, 16 Jun 2026 12:00:54 -0700 Subject: [PATCH] Bump dart_bridge_version to 1.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit libdart_bridge 1.3.0 adds: * dart_bridge_is_python_initialized / dart_bridge_signal_dart_session C exports for Android process-reuse (Dart VM restart while the OS keeps the process + Python alive). * Native sys.stdout / sys.stderr redirection to logcat (Android), os_log (iOS/macOS), stderr (desktop) installed right after Py_Initialize. * dart_bridge.add_session_restart_handler Python API for the running program to subscribe to new-VM signals. Release notes: https://github.com/flet-dev/dart-bridge/releases/tag/v1.3.0 Consumer-side changes (serious-python FFI bindings + flet build template + flet.app runtime) are wired with soft symbol lookups so pre-1.3.0 binaries still load — but with this bump, real process-reuse behaviour activates end-to-end. --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 4b2117b..9f4b041 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "default_python_version": "3.14", - "dart_bridge_version": "1.2.3", + "dart_bridge_version": "1.3.0", "pythons": { "3.12": { "full_version": "3.12.13",