Skip to content

Commit f0d0436

Browse files
committed
Fix missing FLET_APP_WEB declaration in flet-pyodide
1 parent e42e64f commit f0d0436

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

CHANGELOG.md

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

3+
## 0.7.3
4+
5+
* Fix missing `FLET_APP_WEB` declaration in `flet-pyodide`.
6+
37
## 0.7.2
48

59
* Fix: Route change by url is not working if `page.theme` specified ([#1406](https://github.com/flet-dev/flet/issues/1406)).

client/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ packages:
175175
path: "../package"
176176
relative: true
177177
source: path
178-
version: "0.7.2"
178+
version: "0.7.3"
179179
flutter:
180180
dependency: "direct main"
181181
description: flutter

package/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.3
2+
3+
* Fix missing `FLET_APP_WEB` declaration in `flet-pyodide`.
4+
15
## 0.7.2
26

37
* Fix: Route change by url is not working if `page.theme` specified ([#1406](https://github.com/flet-dev/flet/issues/1406)).

package/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
5-
version: 0.7.2
5+
version: 0.7.3
66

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

sdk/python/packages/flet-pyodide/src/flet/flet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
WEB_BROWSER = "web_browser"
1717
FLET_APP = "flet_app"
1818
FLET_APP_HIDDEN = "flet_app_hidden"
19-
19+
FLET_APP_WEB = "flet_app_web"
2020

2121
logger = logging.getLogger(flet.__name__)
2222

studio/client/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ packages:
167167
path: "../../package"
168168
relative: true
169169
source: path
170-
version: "0.7.2"
170+
version: "0.7.3"
171171
flutter:
172172
dependency: "direct main"
173173
description: flutter

0 commit comments

Comments
 (0)