Skip to content

Commit a77c84d

Browse files
Flet 0.22 release notes (#3008)
* Bump Flet version to 0.22.0 * Update comments in app.py * Fixed: `ft.app(view=None)` is not properly handled Fix #3000
1 parent 94e4fa0 commit a77c84d

File tree

18 files changed

+149
-20
lines changed

18 files changed

+149
-20
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Flet changelog
22

3+
# 0.22.0
4+
5+
* Controls enhancement (see [#2882](https://github.com/flet-dev/flet/issues/2882) for details).
6+
* `Theme` Enhancement ([#2955](https://github.com/flet-dev/flet/issues/2955)).
7+
* `Rive` Control ([#2841](https://github.com/flet-dev/flet/issues/2841)).
8+
* `Control.parent` property ([#2906](https://github.com/flet-dev/flet/issues/2906)).
9+
* `Container.on_tap_down` event.
10+
* Add `upload_endpoint_path` into `flet.fastapi.app` ([#2954](https://github.com/flet-dev/flet/issues/2954)).
11+
* Add checkbox border side state ([#2973](https://github.com/flet-dev/flet/issues/2973)).
12+
* Global context for session ([#2934](https://github.com/flet-dev/flet/issues/2934)).
13+
* Fix silent error in `page.run_task` ([#2959](https://github.com/flet-dev/flet/issues/2959)).
14+
* Web: patch html title with app_name ([#2909](https://github.com/flet-dev/flet/issues/2909)).
15+
* `Container`: fix triggered both `on_click` and `on_long_press` events ([#2914](https://github.com/flet-dev/flet/issues/2914)).
16+
317
# 0.21.2
418

519
* Add `--android-adaptive-icon-background` to `flet build` command.

client/pubspec.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -223,49 +223,49 @@ packages:
223223
path: "../packages/flet"
224224
relative: true
225225
source: path
226-
version: "0.21.2"
226+
version: "0.22.0"
227227
flet_audio:
228228
dependency: "direct main"
229229
description:
230230
path: "../packages/flet_audio"
231231
relative: true
232232
source: path
233-
version: "0.21.2"
233+
version: "0.22.0"
234234
flet_audio_recorder:
235235
dependency: "direct main"
236236
description:
237237
path: "../packages/flet_audio_recorder"
238238
relative: true
239239
source: path
240-
version: "0.21.2"
240+
version: "0.22.0"
241241
flet_lottie:
242242
dependency: "direct main"
243243
description:
244244
path: "../packages/flet_lottie"
245245
relative: true
246246
source: path
247-
version: "0.21.2"
247+
version: "0.22.0"
248248
flet_rive:
249249
dependency: "direct main"
250250
description:
251251
path: "../packages/flet_rive"
252252
relative: true
253253
source: path
254-
version: "0.21.2"
254+
version: "0.22.0"
255255
flet_video:
256256
dependency: "direct main"
257257
description:
258258
path: "../packages/flet_video"
259259
relative: true
260260
source: path
261-
version: "0.21.2"
261+
version: "0.22.0"
262262
flet_webview:
263263
dependency: "direct main"
264264
description:
265265
path: "../packages/flet_webview"
266266
relative: true
267267
source: path
268-
version: "0.21.2"
268+
version: "0.22.0"
269269
flutter:
270270
dependency: "direct main"
271271
description: flutter
Lines changed: 83 additions & 0 deletions
Loading

packages/flet/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 0.22.0
2+
3+
* Controls enhancement (see [#2882](https://github.com/flet-dev/flet/issues/2882) for details).
4+
* `Theme` Enhancement ([#2955](https://github.com/flet-dev/flet/issues/2955)).
5+
* `Rive` Control ([#2841](https://github.com/flet-dev/flet/issues/2841)).
6+
* `Control.parent` property ([#2906](https://github.com/flet-dev/flet/issues/2906)).
7+
* `Container.on_tap_down` event.
8+
* Add `upload_endpoint_path` into `flet.fastapi.app` ([#2954](https://github.com/flet-dev/flet/issues/2954)).
9+
* Add checkbox border side state ([#2973](https://github.com/flet-dev/flet/issues/2973)).
10+
* Global context for session ([#2934](https://github.com/flet-dev/flet/issues/2934)).
11+
* Fix silent error in `page.run_task` ([#2959](https://github.com/flet-dev/flet/issues/2959)).
12+
* Web: patch html title with app_name ([#2909](https://github.com/flet-dev/flet/issues/2909)).
13+
* `Container`: fix triggered both `on_click` and `on_long_press` events ([#2914](https://github.com/flet-dev/flet/issues/2914)).
14+
115
# 0.21.2
216

317
* Fix for mobile Safari: Store session ID in SessionStorage instead of window.name.

packages/flet/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flet
22
description: Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
33
homepage: https://flet.dev
44
repository: https://github.com/flet-dev/flet/packages/flet
5-
version: 0.21.2
5+
version: 0.22.0
66

77
# This package supports all platforms listed below.
88
platforms:

packages/flet_audio/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.22.0
2+
3+
No changes in this release. Version bumped to follow parent `flet` package.
4+
15
# 0.21.2
26

37
No changes in this release. Version bumped to follow parent `flet` package.

packages/flet_audio/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flet_audio
22
description: Flet Audio control
33
homepage: https://flet.dev
44
repository: https://github.com/flet-dev/flet/packages/flet_audio
5-
version: 0.21.2
5+
version: 0.22.0
66

77
environment:
88
sdk: '>=3.2.3 <4.0.0'

packages/flet_audio_recorder/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.22.0
2+
3+
No changes in this release. Version bumped to follow parent `flet` package.
4+
15
# 0.21.2
26

37
No changes in this release. Version bumped to follow parent `flet` package.

packages/flet_audio_recorder/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flet_audio_recorder
22
description: Flet AudioRecorder control
33
homepage: https://flet.dev
44
repository: https://github.com/flet-dev/flet/packages/flet_audio_recorder
5-
version: 0.21.2
5+
version: 0.22.0
66

77
environment:
88
sdk: '>=3.2.3 <4.0.0'

packages/flet_lottie/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.22.0
2+
3+
No changes in this release. Version bumped to follow parent `flet` package.
4+
15
# 0.21.2
26

37
No changes in this release. Version bumped to follow parent `flet` package.

0 commit comments

Comments
 (0)