flet-web 0.70.0.dev6348__py3-none-any.whl → 0.70.0.dev6370__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flet-web might be problematic. Click here for more details.
- flet_web/fastapi/flet_app.py +2 -3
- flet_web/version.py +1 -1
- flet_web/web/flutter_bootstrap.js +1 -1
- flet_web/web/flutter_service_worker.js +3 -3
- flet_web/web/main.dart.js +1198 -1193
- flet_web/web/main.dart.wasm +0 -0
- flet_web/web/pyodide/micropip-0.8.0-py3-none-any.whl +2 -2
- {flet_web-0.70.0.dev6348.dist-info → flet_web-0.70.0.dev6370.dist-info}/METADATA +1 -1
- {flet_web-0.70.0.dev6348.dist-info → flet_web-0.70.0.dev6370.dist-info}/RECORD +11 -11
- {flet_web-0.70.0.dev6348.dist-info → flet_web-0.70.0.dev6370.dist-info}/WHEEL +0 -0
- {flet_web-0.70.0.dev6348.dist-info → flet_web-0.70.0.dev6370.dist-info}/top_level.txt +0 -0
flet_web/fastapi/flet_app.py
CHANGED
|
@@ -340,9 +340,8 @@ class FletApp(Connection):
|
|
|
340
340
|
self.__send_queue.put_nowait(m)
|
|
341
341
|
|
|
342
342
|
def get_upload_url(self, file_name: str, expires: int) -> str:
|
|
343
|
-
|
|
344
|
-
"upload_path should be specified to enable uploads"
|
|
345
|
-
)
|
|
343
|
+
if not self.__upload_endpoint_path:
|
|
344
|
+
raise RuntimeError("upload_path should be specified to enable uploads")
|
|
346
345
|
return build_upload_url(
|
|
347
346
|
self.__upload_endpoint_path,
|
|
348
347
|
file_name,
|
flet_web/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "0.70.0.
|
|
1
|
+
version = "0.70.0.dev6370"
|
|
@@ -55,7 +55,7 @@ if (flet.noCdn) {
|
|
|
55
55
|
_flutter.loader.load({
|
|
56
56
|
config: flutterConfig,
|
|
57
57
|
serviceWorkerSettings: {
|
|
58
|
-
serviceWorkerVersion: "
|
|
58
|
+
serviceWorkerVersion: "3678675361",
|
|
59
59
|
},
|
|
60
60
|
onEntrypointLoaded: async function (engineInitializer) {
|
|
61
61
|
loading.classList.add('main_done');
|
|
@@ -5,7 +5,7 @@ const CACHE_NAME = 'flutter-app-cache';
|
|
|
5
5
|
|
|
6
6
|
const RESOURCES = {"version.json": "3fea9d9c7b4ca6955aa03e762e0d2e13",
|
|
7
7
|
"favicon.png": "302ac04c14db027d016d1fe74c6a80a0",
|
|
8
|
-
"main.dart.wasm": "
|
|
8
|
+
"main.dart.wasm": "aafce292728b2d5224f5b0e9f9cad6b0",
|
|
9
9
|
"manifest.json": "58765f937ba0d0c40a3a714c5c1adb87",
|
|
10
10
|
"assets/fonts/roboto.woff2": "e507bd45228483ae2f864d36f26bb43e",
|
|
11
11
|
"assets/fonts/MaterialIcons-Regular.otf": "f34ace52ea74c95e26949fab4870ac22",
|
|
@@ -21,11 +21,11 @@ const RESOURCES = {"version.json": "3fea9d9c7b4ca6955aa03e762e0d2e13",
|
|
|
21
21
|
"assets/NOTICES": "1941a849c82ba030733ad8a763dfc8db",
|
|
22
22
|
"assets/shaders/ink_sparkle.frag": "ecc85a2e95f5e9f53123dcaf8cb9b6ce",
|
|
23
23
|
"assets/AssetManifest.bin.json": "15a667376456bdf082d25c5b97a6577e",
|
|
24
|
-
"main.dart.js": "
|
|
24
|
+
"main.dart.js": "fd95a832cbd8183ef02c613de8e89137",
|
|
25
25
|
"python.js": "3b891fa2b956f791f9670494f43b9042",
|
|
26
26
|
"index.html": "84e533de8947134d3c820fd45081899a",
|
|
27
27
|
"/": "84e533de8947134d3c820fd45081899a",
|
|
28
|
-
"flutter_bootstrap.js": "
|
|
28
|
+
"flutter_bootstrap.js": "b0bce508fc9f8e708d81212ffa7a5680",
|
|
29
29
|
"canvaskit/chromium/canvaskit.js": "5e27aae346eee469027c80af0751d53d",
|
|
30
30
|
"canvaskit/chromium/canvaskit.wasm": "24c77e750a7fa6d474198905249ff506",
|
|
31
31
|
"canvaskit/chromium/canvaskit.js.symbols": "193deaca1a1424049326d4a91ad1d88d",
|