File tree Expand file tree Collapse file tree 18 files changed +149
-20
lines changed
flet-runtime/src/flet_runtime Expand file tree Collapse file tree 18 files changed +149
-20
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: flet
22description : Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
33homepage : https://flet.dev
44repository : 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.
88platforms :
Original file line number Diff line number Diff line change 1+ # 0.22.0
2+
3+ No changes in this release. Version bumped to follow parent ` flet ` package.
4+
15# 0.21.2
26
37No changes in this release. Version bumped to follow parent ` flet ` package.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: flet_audio
22description : Flet Audio control
33homepage : https://flet.dev
44repository : https://github.com/flet-dev/flet/packages/flet_audio
5- version : 0.21.2
5+ version : 0.22.0
66
77environment :
88 sdk : ' >=3.2.3 <4.0.0'
Original file line number Diff line number Diff line change 1+ # 0.22.0
2+
3+ No changes in this release. Version bumped to follow parent ` flet ` package.
4+
15# 0.21.2
26
37No changes in this release. Version bumped to follow parent ` flet ` package.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: flet_audio_recorder
22description : Flet AudioRecorder control
33homepage : https://flet.dev
44repository : https://github.com/flet-dev/flet/packages/flet_audio_recorder
5- version : 0.21.2
5+ version : 0.22.0
66
77environment :
88 sdk : ' >=3.2.3 <4.0.0'
Original file line number Diff line number Diff line change 1+ # 0.22.0
2+
3+ No changes in this release. Version bumped to follow parent ` flet ` package.
4+
15# 0.21.2
26
37No changes in this release. Version bumped to follow parent ` flet ` package.
You can’t perform that action at this time.
0 commit comments