Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
* Fix `FilePicker.pick_files()` on web for slow network shares or slow machines: pass `cancel_upload_on_window_blur=False` to prevent valid file selections from being reported as cancelled when the browser window loses focus during file picking ([#771](https://github.com/flet-dev/flet/issues/771), [#6573](https://github.com/flet-dev/flet/pull/6573)) by @ndonkoHenri.
* Support `PagePlatform.ANDROID_TV` in `Page.get_device_info()` retrieval ([#6604](https://github.com/flet-dev/flet/pull/6604)) by @bl1nch.
* Fix `ProgressRing.year_2023` being ignored, so the control correctly switches between the latest and 2023 Material Design appearances ([#6614](https://github.com/flet-dev/flet/issues/6614)) by @ndonkoHenri.
* `flet build ipa` / `ios` apps that ship ctypes packages with plain `.dylib` shared libraries (e.g. `llama-cpp-python`) now load them on the **iOS simulator** instead of failing at launch with a `dlopen` platform mismatch (`have 'iOS', need 'iOS-simulator'`); the iOS runtime also now bundles the `_multiprocessing` extension (importable, not spawnable). Bumps the pinned bundle to `serious_python` 4.2.1 / python-build `20260701` ([serious_python#223](https://github.com/flet-dev/serious-python/pull/223)) by @ndonkoHenri, @FeodorFitsner.

### Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# python-build release this flet pins. Keep in sync with serious_python's
# `pythonReleaseDate` (lib/src/python_versions.dart) — both should track the
# same python-build release.
PYTHON_BUILD_RELEASE_DATE = "20260630"
PYTHON_BUILD_RELEASE_DATE = "20260701"

RELEASE_DATE_ENV = "FLET_PYTHON_BUILD_RELEASE_DATE"
MANIFEST_PATH_ENV = "FLET_PYTHON_BUILD_MANIFEST"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
flet:
path: ../../../../../packages/flet

serious_python: 4.2.0
serious_python: 4.2.1

# MsgPack codec used by the dart_bridge FletBackendChannel implementation
# in lib/main.dart — matches the wire format flet's existing socket
Expand Down
Loading