Skip to content

Commit f0a47e1

Browse files
Flet v0.23.0 Post Fixes (#3491)
* make window and browser_context_menu private, and expose respective getters * replace len(list(filter(...))) by any(...) * fix ParamSpec import * View.floating_action_button_location: conditionally use _set_attr * Bump Flet version to 0.23.1 --------- Co-authored-by: Feodor Fitsner <[email protected]>
1 parent e48ded0 commit f0a47e1

File tree

31 files changed

+184
-110
lines changed

31 files changed

+184
-110
lines changed

CHANGELOG.md

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

3+
# 0.23.1
4+
5+
* FIX: View.floating_action_button_location: conditionally use _set_attr.
6+
* FIX: Import `ParamSpec` from `typing` for Python >3.10.
7+
* FIX: replace `len(list(filter(...)))` by `any(...)`.
8+
* FIX: Make window and browser_context_menu private, and expose respective getters.
9+
310
# 0.23.0
411

512
* NEW: `PermissionHandler` control ([#3276](https://github.com/flet-dev/flet/issues/3276))

client/pubspec.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -239,77 +239,77 @@ packages:
239239
path: "../packages/flet"
240240
relative: true
241241
source: path
242-
version: "0.23.0"
242+
version: "0.23.1"
243243
flet_audio:
244244
dependency: "direct main"
245245
description:
246246
path: "../packages/flet_audio"
247247
relative: true
248248
source: path
249-
version: "0.23.0"
249+
version: "0.23.1"
250250
flet_audio_recorder:
251251
dependency: "direct main"
252252
description:
253253
path: "../packages/flet_audio_recorder"
254254
relative: true
255255
source: path
256-
version: "0.23.0"
256+
version: "0.23.1"
257257
flet_flashlight:
258258
dependency: "direct main"
259259
description:
260260
path: "../packages/flet_flashlight"
261261
relative: true
262262
source: path
263-
version: "0.23.0"
263+
version: "0.23.1"
264264
flet_geolocator:
265265
dependency: "direct main"
266266
description:
267267
path: "../packages/flet_geolocator"
268268
relative: true
269269
source: path
270-
version: "0.23.0"
270+
version: "0.23.1"
271271
flet_lottie:
272272
dependency: "direct main"
273273
description:
274274
path: "../packages/flet_lottie"
275275
relative: true
276276
source: path
277-
version: "0.23.0"
277+
version: "0.23.1"
278278
flet_map:
279279
dependency: "direct main"
280280
description:
281281
path: "../packages/flet_map"
282282
relative: true
283283
source: path
284-
version: "0.23.0"
284+
version: "0.23.1"
285285
flet_permission_handler:
286286
dependency: "direct main"
287287
description:
288288
path: "../packages/flet_permission_handler"
289289
relative: true
290290
source: path
291-
version: "0.23.0"
291+
version: "0.23.1"
292292
flet_rive:
293293
dependency: "direct main"
294294
description:
295295
path: "../packages/flet_rive"
296296
relative: true
297297
source: path
298-
version: "0.23.0"
298+
version: "0.23.1"
299299
flet_video:
300300
dependency: "direct main"
301301
description:
302302
path: "../packages/flet_video"
303303
relative: true
304304
source: path
305-
version: "0.23.0"
305+
version: "0.23.1"
306306
flet_webview:
307307
dependency: "direct main"
308308
description:
309309
path: "../packages/flet_webview"
310310
relative: true
311311
source: path
312-
version: "0.23.0"
312+
version: "0.23.1"
313313
flutter:
314314
dependency: "direct main"
315315
description: flutter
@@ -1434,10 +1434,10 @@ packages:
14341434
dependency: transitive
14351435
description:
14361436
name: window_manager
1437-
sha256: b3c895bdf936c77b83c5254bec2e6b3f066710c1f89c38b20b8acc382b525494
1437+
sha256: "8699323b30da4cdbe2aa2e7c9de567a6abd8a97d9a5c850a3c86dcd0b34bbfbf"
14381438
url: "https://pub.dev"
14391439
source: hosted
1440-
version: "0.3.8"
1440+
version: "0.3.9"
14411441
window_to_front:
14421442
dependency: transitive
14431443
description:

packages/flet/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.23.1
2+
3+
* FIX: View.floating_action_button_location: conditionally use _set_attr.
4+
* FIX: Import `ParamSpec` from `typing` for Python >3.10.
5+
* FIX: replace `len(list(filter(...)))` by `any(...)`.
6+
* FIX: Make window and browser_context_menu private, and expose respective getters.
7+
18
# 0.23.0
29

310
* NEW: `PermissionHandler` control ([#3276](https://github.com/flet-dev/flet/issues/3276))

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.23.0
5+
version: 0.23.1
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.23.1
2+
3+
No changes in this release. Version bumped to follow parent `flet` package.
4+
15
# 0.23.0
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.23.0
5+
version: 0.23.1
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.23.1
2+
3+
No changes in this release. Version bumped to follow parent `flet` package.
4+
15
# 0.23.0
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.23.0
5+
version: 0.23.1
66

77
environment:
88
sdk: '>=3.2.3 <4.0.0'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.23.1
2+
3+
No changes in this release. Version bumped to follow parent `flet` package.
4+
15
# 0.23.0
26

37
Initial release of the package.

packages/flet_flashlight/pubspec.yaml

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

77

88
environment:

0 commit comments

Comments
 (0)