flet-desktop 0.70.0.dev5835__py3-none-win32.whl → 0.70.0.dev6145__py3-none-win32.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-desktop might be problematic. Click here for more details.

flet_desktop/__init__.py CHANGED
@@ -1,220 +1,220 @@
1
- import asyncio
2
- import logging
3
- import os
4
- import signal
5
- import stat
6
- import subprocess
7
- import tarfile
8
- import tempfile
9
- import urllib.request
10
- import zipfile
11
- from pathlib import Path
12
-
13
- from flet.utils import (
14
- get_arch,
15
- is_linux,
16
- is_macos,
17
- is_windows,
18
- random_string,
19
- safe_tar_extractall,
20
- )
21
-
22
- import flet_desktop
23
- import flet_desktop.version
24
-
25
- logger = logging.getLogger(flet_desktop.__name__)
26
-
27
-
28
- def get_package_bin_dir():
29
- return str(Path(__file__).parent.joinpath("app"))
30
-
31
-
32
- def open_flet_view(page_url, assets_dir, hidden):
33
- args, flet_env, pid_file = __locate_and_unpack_flet_view(
34
- page_url, assets_dir, hidden
35
- )
36
- return subprocess.Popen(args, env=flet_env), pid_file
37
-
38
-
39
- async def open_flet_view_async(page_url, assets_dir, hidden):
40
- args, flet_env, pid_file = __locate_and_unpack_flet_view(
41
- page_url, assets_dir, hidden
42
- )
43
- return (
44
- await asyncio.create_subprocess_exec(args[0], *args[1:], env=flet_env),
45
- pid_file,
46
- )
47
-
48
-
49
- def close_flet_view(pid_file):
50
- if pid_file is not None and os.path.exists(pid_file):
51
- try:
52
- with open(pid_file, encoding="utf-8") as f:
53
- fvp_pid = int(f.read())
54
- logger.debug(f"Flet View process {fvp_pid}")
55
- os.kill(fvp_pid, signal.SIGKILL)
56
- except Exception:
57
- pass
58
- finally:
59
- os.remove(pid_file)
60
-
61
-
62
- def __locate_and_unpack_flet_view(page_url, assets_dir, hidden):
63
- logger.info("Starting Flet View app...")
64
-
65
- args = []
66
-
67
- # pid file - Flet client writes its process ID to this file
68
- pid_file = str(Path(tempfile.gettempdir()).joinpath(random_string(20)))
69
-
70
- if is_windows():
71
- flet_path = None
72
- # try loading Flet client built with the latest run of `flet build`
73
- build_windows = os.path.join(os.getcwd(), "build", "windows")
74
- if os.path.exists(build_windows):
75
- for f in os.listdir(build_windows):
76
- if f.endswith(".exe"):
77
- flet_path = os.path.join(build_windows, f)
78
-
79
- if not flet_path:
80
- flet_exe = "flet.exe"
81
- temp_flet_dir = Path.home().joinpath(
82
- ".flet", "bin", f"flet-{flet_desktop.version.version}"
83
- )
84
-
85
- # check if flet_view.exe exists in "bin" directory (user mode)
86
- flet_path = os.path.join(get_package_bin_dir(), "flet", flet_exe)
87
- logger.info(f"Looking for Flet executable at: {flet_path}")
88
- if os.path.exists(flet_path):
89
- logger.info(f"Flet View found in: {flet_path}")
90
- else:
91
- # check if flet.exe is in FLET_VIEW_PATH (flet developer mode)
92
- flet_path = os.environ.get("FLET_VIEW_PATH")
93
- if flet_path and os.path.exists(flet_path):
94
- logger.info(f"Flet View found in PATH: {flet_path}")
95
- flet_path = os.path.join(flet_path, flet_exe)
96
- else:
97
- if not temp_flet_dir.exists():
98
- zip_file = __download_flet_client("flet-windows.zip")
99
-
100
- logger.info(
101
- f"Extracting flet.exe from archive to {temp_flet_dir}"
102
- )
103
- temp_flet_dir.mkdir(parents=True, exist_ok=True)
104
- with zipfile.ZipFile(zip_file, "r") as zip_arch:
105
- zip_arch.extractall(str(temp_flet_dir))
106
- flet_path = str(temp_flet_dir.joinpath("flet", flet_exe))
107
- args = [flet_path, page_url, pid_file]
108
- elif is_macos():
109
- app_path = None
110
- # try loading Flet client built with the latest run of `flet build`
111
- build_macos = os.path.join(os.getcwd(), "build", "macos")
112
- if os.path.exists(build_macos):
113
- for f in os.listdir(build_macos):
114
- if f.endswith(".app"):
115
- app_path = os.path.join(build_macos, f)
116
-
117
- if not app_path:
118
- # build version-specific path to Flet.app
119
- temp_flet_dir = Path.home().joinpath(
120
- ".flet", "bin", f"flet-{flet_desktop.version.version}"
121
- )
122
-
123
- # check if flet.exe is in FLET_VIEW_PATH (flet developer mode)
124
- flet_path = os.environ.get("FLET_VIEW_PATH")
125
- if flet_path:
126
- logger.info(f"Flet.app is set via FLET_VIEW_PATH: {flet_path}")
127
- temp_flet_dir = Path(flet_path)
128
- else:
129
- # check if flet_view.app exists in a temp directory
130
- if not temp_flet_dir.exists():
131
- # check if flet.tar.gz exists
132
- gz_filename = "flet-macos.tar.gz"
133
- tar_file = os.path.join(get_package_bin_dir(), gz_filename)
134
- logger.info(f"Looking for Flet.app archive at: {tar_file}")
135
- if not os.path.exists(tar_file):
136
- tar_file = __download_flet_client(gz_filename)
137
-
138
- logger.info(f"Extracting Flet.app from archive to {temp_flet_dir}")
139
- temp_flet_dir.mkdir(parents=True, exist_ok=True)
140
- with tarfile.open(str(tar_file), "r:gz") as tar_arch:
141
- safe_tar_extractall(tar_arch, str(temp_flet_dir))
142
- else:
143
- logger.info(f"Flet View found in: {temp_flet_dir}")
144
-
145
- app_name = None
146
- for f in os.listdir(temp_flet_dir):
147
- if f.endswith(".app"):
148
- app_name = f
149
- assert app_name is not None, (
150
- f"Application bundle not found in {temp_flet_dir}"
151
- )
152
- app_path = temp_flet_dir.joinpath(app_name)
153
- logger.info(f"page_url: {page_url}")
154
- logger.info(f"pid_file: {pid_file}")
155
- args = ["open", str(app_path), "-n", "-W", "--args", page_url, pid_file]
156
- elif is_linux():
157
- app_path = None
158
- # try loading Flet client built with the latest run of `flet build`
159
- build_linux = os.path.join(os.getcwd(), "build", "linux")
160
- if os.path.exists(build_linux):
161
- for f in os.listdir(build_linux):
162
- ef = os.path.join(build_linux, f)
163
- if os.path.isfile(ef) and stat.S_IXUSR & os.stat(ef)[stat.ST_MODE]:
164
- app_path = ef
165
-
166
- if not app_path:
167
- # build version-specific path to flet folder
168
- temp_flet_dir = Path.home().joinpath(
169
- ".flet", "bin", f"flet-{flet_desktop.version.version}"
170
- )
171
-
172
- # check if flet.exe is in FLET_VIEW_PATH (flet developer mode)
173
- flet_path = os.environ.get("FLET_VIEW_PATH")
174
- if flet_path:
175
- logger.info(f"Flet View is set via FLET_VIEW_PATH: {flet_path}")
176
- temp_flet_dir = Path(flet_path)
177
- app_path = temp_flet_dir.joinpath("flet")
178
- else:
179
- # check if flet_view.app exists in a temp directory
180
- if not temp_flet_dir.exists():
181
- # check if flet.tar.gz exists
182
- gz_filename = f"flet-linux-{get_arch()}.tar.gz"
183
- tar_file = os.path.join(get_package_bin_dir(), gz_filename)
184
- logger.info(f"Looking for Flet bundle archive at: {tar_file}")
185
- if not os.path.exists(tar_file):
186
- tar_file = __download_flet_client(gz_filename)
187
-
188
- logger.info(f"Extracting Flet from archive to {temp_flet_dir}")
189
- temp_flet_dir.mkdir(parents=True, exist_ok=True)
190
- with tarfile.open(str(tar_file), "r:gz") as tar_arch:
191
- safe_tar_extractall(tar_arch, str(temp_flet_dir))
192
- else:
193
- logger.info(f"Flet View found in: {temp_flet_dir}")
194
-
195
- app_path = temp_flet_dir.joinpath("flet", "flet")
196
- args = [str(app_path), page_url, pid_file]
197
-
198
- flet_env = {**os.environ}
199
-
200
- if assets_dir:
201
- args.append(assets_dir)
202
-
203
- if hidden:
204
- flet_env["FLET_HIDE_WINDOW_ON_START"] = "true"
205
-
206
- return args, flet_env, pid_file
207
-
208
-
209
- def __download_flet_client(file_name):
210
- ver = flet_desktop.version.version
211
- if not ver:
212
- import flet.version
213
- from flet.version import update_version
214
-
215
- ver = flet.version.version or update_version()
216
- temp_arch = Path(tempfile.gettempdir()).joinpath(file_name)
217
- flet_url = f"https://github.com/flet-dev/flet/releases/download/v{ver}/{file_name}"
218
- logger.info(f"Downloading Flet v{ver} from {flet_url} to {temp_arch}")
219
- urllib.request.urlretrieve(flet_url, temp_arch)
220
- return str(temp_arch)
1
+ import asyncio
2
+ import logging
3
+ import os
4
+ import signal
5
+ import stat
6
+ import subprocess
7
+ import tarfile
8
+ import tempfile
9
+ import urllib.request
10
+ import zipfile
11
+ from pathlib import Path
12
+
13
+ from flet.utils import (
14
+ get_arch,
15
+ is_linux,
16
+ is_macos,
17
+ is_windows,
18
+ random_string,
19
+ safe_tar_extractall,
20
+ )
21
+
22
+ import flet_desktop
23
+ import flet_desktop.version
24
+
25
+ logger = logging.getLogger(flet_desktop.__name__)
26
+
27
+
28
+ def get_package_bin_dir():
29
+ return str(Path(__file__).parent.joinpath("app"))
30
+
31
+
32
+ def open_flet_view(page_url, assets_dir, hidden):
33
+ args, flet_env, pid_file = __locate_and_unpack_flet_view(
34
+ page_url, assets_dir, hidden
35
+ )
36
+ return subprocess.Popen(args, env=flet_env), pid_file
37
+
38
+
39
+ async def open_flet_view_async(page_url, assets_dir, hidden):
40
+ args, flet_env, pid_file = __locate_and_unpack_flet_view(
41
+ page_url, assets_dir, hidden
42
+ )
43
+ return (
44
+ await asyncio.create_subprocess_exec(args[0], *args[1:], env=flet_env),
45
+ pid_file,
46
+ )
47
+
48
+
49
+ def close_flet_view(pid_file):
50
+ if pid_file is not None and os.path.exists(pid_file):
51
+ try:
52
+ with open(pid_file, encoding="utf-8") as f:
53
+ fvp_pid = int(f.read())
54
+ logger.debug(f"Flet View process {fvp_pid}")
55
+ os.kill(fvp_pid, signal.SIGKILL)
56
+ except Exception:
57
+ pass
58
+ finally:
59
+ os.remove(pid_file)
60
+
61
+
62
+ def __locate_and_unpack_flet_view(page_url, assets_dir, hidden):
63
+ logger.info("Starting Flet View app...")
64
+
65
+ args = []
66
+
67
+ # pid file - Flet client writes its process ID to this file
68
+ pid_file = str(Path(tempfile.gettempdir()).joinpath(random_string(20)))
69
+
70
+ if is_windows():
71
+ flet_path = None
72
+ # try loading Flet client built with the latest run of `flet build`
73
+ build_windows = os.path.join(os.getcwd(), "build", "windows")
74
+ if os.path.exists(build_windows):
75
+ for f in os.listdir(build_windows):
76
+ if f.endswith(".exe"):
77
+ flet_path = os.path.join(build_windows, f)
78
+
79
+ if not flet_path:
80
+ flet_exe = "flet.exe"
81
+ temp_flet_dir = Path.home().joinpath(
82
+ ".flet", "bin", f"flet-{flet_desktop.version.version}"
83
+ )
84
+
85
+ # check if flet_view.exe exists in "bin" directory (user mode)
86
+ flet_path = os.path.join(get_package_bin_dir(), "flet", flet_exe)
87
+ logger.info(f"Looking for Flet executable at: {flet_path}")
88
+ if os.path.exists(flet_path):
89
+ logger.info(f"Flet View found in: {flet_path}")
90
+ else:
91
+ # check if flet.exe is in FLET_VIEW_PATH (flet developer mode)
92
+ flet_path = os.environ.get("FLET_VIEW_PATH")
93
+ if flet_path and os.path.exists(flet_path):
94
+ logger.info(f"Flet View found in PATH: {flet_path}")
95
+ flet_path = os.path.join(flet_path, flet_exe)
96
+ else:
97
+ if not temp_flet_dir.exists():
98
+ zip_file = __download_flet_client("flet-windows.zip")
99
+
100
+ logger.info(
101
+ f"Extracting flet.exe from archive to {temp_flet_dir}"
102
+ )
103
+ temp_flet_dir.mkdir(parents=True, exist_ok=True)
104
+ with zipfile.ZipFile(zip_file, "r") as zip_arch:
105
+ zip_arch.extractall(str(temp_flet_dir))
106
+ flet_path = str(temp_flet_dir.joinpath("flet", flet_exe))
107
+ args = [flet_path, page_url, pid_file]
108
+ elif is_macos():
109
+ app_path = None
110
+ # try loading Flet client built with the latest run of `flet build`
111
+ build_macos = os.path.join(os.getcwd(), "build", "macos")
112
+ if os.path.exists(build_macos):
113
+ for f in os.listdir(build_macos):
114
+ if f.endswith(".app"):
115
+ app_path = os.path.join(build_macos, f)
116
+
117
+ if not app_path:
118
+ # build version-specific path to Flet.app
119
+ temp_flet_dir = Path.home().joinpath(
120
+ ".flet", "bin", f"flet-{flet_desktop.version.version}"
121
+ )
122
+
123
+ # check if flet.exe is in FLET_VIEW_PATH (flet developer mode)
124
+ flet_path = os.environ.get("FLET_VIEW_PATH")
125
+ if flet_path:
126
+ logger.info(f"Flet.app is set via FLET_VIEW_PATH: {flet_path}")
127
+ temp_flet_dir = Path(flet_path)
128
+ else:
129
+ # check if flet_view.app exists in a temp directory
130
+ if not temp_flet_dir.exists():
131
+ # check if flet.tar.gz exists
132
+ gz_filename = "flet-macos.tar.gz"
133
+ tar_file = os.path.join(get_package_bin_dir(), gz_filename)
134
+ logger.info(f"Looking for Flet.app archive at: {tar_file}")
135
+ if not os.path.exists(tar_file):
136
+ tar_file = __download_flet_client(gz_filename)
137
+
138
+ logger.info(f"Extracting Flet.app from archive to {temp_flet_dir}")
139
+ temp_flet_dir.mkdir(parents=True, exist_ok=True)
140
+ with tarfile.open(str(tar_file), "r:gz") as tar_arch:
141
+ safe_tar_extractall(tar_arch, str(temp_flet_dir))
142
+ else:
143
+ logger.info(f"Flet View found in: {temp_flet_dir}")
144
+
145
+ app_name = None
146
+ for f in os.listdir(temp_flet_dir):
147
+ if f.endswith(".app"):
148
+ app_name = f
149
+ assert app_name is not None, (
150
+ f"Application bundle not found in {temp_flet_dir}"
151
+ )
152
+ app_path = temp_flet_dir.joinpath(app_name)
153
+ logger.info(f"page_url: {page_url}")
154
+ logger.info(f"pid_file: {pid_file}")
155
+ args = ["open", str(app_path), "-n", "-W", "--args", page_url, pid_file]
156
+ elif is_linux():
157
+ app_path = None
158
+ # try loading Flet client built with the latest run of `flet build`
159
+ build_linux = os.path.join(os.getcwd(), "build", "linux")
160
+ if os.path.exists(build_linux):
161
+ for f in os.listdir(build_linux):
162
+ ef = os.path.join(build_linux, f)
163
+ if os.path.isfile(ef) and stat.S_IXUSR & os.stat(ef)[stat.ST_MODE]:
164
+ app_path = ef
165
+
166
+ if not app_path:
167
+ # build version-specific path to flet folder
168
+ temp_flet_dir = Path.home().joinpath(
169
+ ".flet", "bin", f"flet-{flet_desktop.version.version}"
170
+ )
171
+
172
+ # check if flet.exe is in FLET_VIEW_PATH (flet developer mode)
173
+ flet_path = os.environ.get("FLET_VIEW_PATH")
174
+ if flet_path:
175
+ logger.info(f"Flet View is set via FLET_VIEW_PATH: {flet_path}")
176
+ temp_flet_dir = Path(flet_path)
177
+ app_path = temp_flet_dir.joinpath("flet")
178
+ else:
179
+ # check if flet_view.app exists in a temp directory
180
+ if not temp_flet_dir.exists():
181
+ # check if flet.tar.gz exists
182
+ gz_filename = f"flet-linux-{get_arch()}.tar.gz"
183
+ tar_file = os.path.join(get_package_bin_dir(), gz_filename)
184
+ logger.info(f"Looking for Flet bundle archive at: {tar_file}")
185
+ if not os.path.exists(tar_file):
186
+ tar_file = __download_flet_client(gz_filename)
187
+
188
+ logger.info(f"Extracting Flet from archive to {temp_flet_dir}")
189
+ temp_flet_dir.mkdir(parents=True, exist_ok=True)
190
+ with tarfile.open(str(tar_file), "r:gz") as tar_arch:
191
+ safe_tar_extractall(tar_arch, str(temp_flet_dir))
192
+ else:
193
+ logger.info(f"Flet View found in: {temp_flet_dir}")
194
+
195
+ app_path = temp_flet_dir.joinpath("flet", "flet")
196
+ args = [str(app_path), page_url, pid_file]
197
+
198
+ flet_env = {**os.environ}
199
+
200
+ if assets_dir:
201
+ args.append(assets_dir)
202
+
203
+ if hidden:
204
+ flet_env["FLET_HIDE_WINDOW_ON_START"] = "true"
205
+
206
+ return args, flet_env, pid_file
207
+
208
+
209
+ def __download_flet_client(file_name):
210
+ ver = flet_desktop.version.version
211
+ if not ver:
212
+ import flet.version
213
+ from flet.version import update_version
214
+
215
+ ver = flet.version.version or update_version()
216
+ temp_arch = Path(tempfile.gettempdir()).joinpath(file_name)
217
+ flet_url = f"https://github.com/flet-dev/flet/releases/download/v{ver}/{file_name}"
218
+ logger.info(f"Downloading Flet v{ver} from {flet_url} to {temp_arch}")
219
+ urllib.request.urlretrieve(flet_url, temp_arch)
220
+ return str(temp_arch)
Binary file
Binary file
flet_desktop/version.py CHANGED
@@ -1 +1 @@
1
- version = "0.70.0.dev5835"
1
+ version = "0.70.0.dev6145"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-desktop
3
- Version: 0.70.0.dev5835
3
+ Version: 0.70.0.dev6145
4
4
  Summary: Flet Desktop client in Flutter
5
5
  Author-email: "Appveyor Systems Inc." <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
@@ -9,7 +9,7 @@ Project-URL: Repository, https://github.com/flet-dev/flet
9
9
  Project-URL: Documentation, https://flet.dev/docs
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
- Requires-Dist: flet==0.70.0.dev5835
12
+ Requires-Dist: flet==0.70.0.dev6145
13
13
 
14
14
  # Flet Desktop client in Flutter
15
15
 
@@ -1,35 +1,35 @@
1
- flet_desktop/__init__.py,sha256=2pstzQStf-glt-aV6t4RDsKgjeZUPi5iuRWUZ5L918A,8636
2
- flet_desktop/version.py,sha256=Sw5TlyTrga5T3HqQ5WRNL5tH1aw8y9pAfSoKEj6m9Zk,28
3
- flet_desktop/app/flet/audioplayers_windows_plugin.dll,sha256=GW9FZRTNbutIMmaH5M9yV4GQuIS1DHsXzPpJNEJUcxQ,198656
1
+ flet_desktop/__init__.py,sha256=k03q0wrQtR4Rh2FjwIs1bZc-0x5VT7drRwxzXTbk-LQ,8856
2
+ flet_desktop/version.py,sha256=YXVb905UiebqrqJENzsrWu7PefdddIt2LaIJQvIF0lI,27
3
+ flet_desktop/app/flet/audioplayers_windows_plugin.dll,sha256=Jzyy4k8IaDfLowCQFCIZKqIfWVBdekHQe7hlZR1UJ0A,198656
4
4
  flet_desktop/app/flet/d3dcompiler_47.dll,sha256=VlO8ew4nAVYUZO82YC_2FxyWv_6W5MNZc1nNet3LqIo,4891080
5
- flet_desktop/app/flet/flet.exe,sha256=Zx3r5JpTL2DGIiXEP2SyLf9J_acJy3q4uwTSDUyZeuU,122880
5
+ flet_desktop/app/flet/flet.exe,sha256=nD7kjrIPpkqvQViwPtOc9eKMEhqZICA82Vn_YK8Xf7Q,122880
6
6
  flet_desktop/app/flet/flutter_windows.dll,sha256=Z3xSxOlqrmUI-4iLVMphcpA9nJT8y6rbVZx-zHx76Pk,19036160
7
- flet_desktop/app/flet/geolocator_windows_plugin.dll,sha256=tmEJj2NYV8qt6S_WGdiIhUp4-1HhWswh_54Ydh2zW_o,150528
7
+ flet_desktop/app/flet/geolocator_windows_plugin.dll,sha256=fp-b-L4nZpB92cn3f8i00qb4eH1XbI8ji1W7PqbA1k0,150528
8
8
  flet_desktop/app/flet/libEGL.dll,sha256=slkL0GkvA4H8RcIL8cf39xPJ6hnH6murYu_dH63E6qw,472904
9
9
  flet_desktop/app/flet/libGLESv2.dll,sha256=Ygu2441-1sdgoM9Kjrao9kslm5b_KGVRzTLO_Gw1yjk,7414088
10
10
  flet_desktop/app/flet/libmpv-2.dll,sha256=1fBpSwjBJOeF2FjQAILz47FY3ZE4v8SMA4K_HrRDpfw,29764622
11
- flet_desktop/app/flet/media_kit_libs_windows_video_plugin.dll,sha256=XiKagkW4oahGsbHKDZy2lbUQfEZRWswVv_G1MNEr_t0,12800
12
- flet_desktop/app/flet/media_kit_video_plugin.dll,sha256=UAx-fH2nON4pMZxlzh-RMTs5c9BbJ7V6v356FGNGsnI,147968
11
+ flet_desktop/app/flet/media_kit_libs_windows_video_plugin.dll,sha256=vVilf7HHbbqKjnJu3ut7d76jcShzP4sK9weImSvd2Qk,12800
12
+ flet_desktop/app/flet/media_kit_video_plugin.dll,sha256=GO0mZWNo6XuLJIkyFg5-6uMbHhVrk88RHPgqHEC_e3U,147968
13
13
  flet_desktop/app/flet/msvcp140.dll,sha256=D4hbUJpoXSu_plL-0mtfsx2I-9qwqXjGQdHHuKpGCqk,557728
14
- flet_desktop/app/flet/permission_handler_windows_plugin.dll,sha256=9WxDB1MArCAuEdcuOFelx9GXqihYFPoPAhEcLnBa-g0,119808
15
- flet_desktop/app/flet/record_windows_plugin.dll,sha256=02LK5jBAuW58B_lLsH9ggP-X7Q_l9tjq5rllLGkPTQk,143360
16
- flet_desktop/app/flet/rive_common_plugin.dll,sha256=P3FkDjwsP1U01PnhLHno0TIoSDoLTLeObR3GmyAR0KE,1311232
17
- flet_desktop/app/flet/screen_retriever_windows_plugin.dll,sha256=8sTmHafaF-K4n_0nnbOd_hhJ7oDbGa538oFwewzabco,119808
18
- flet_desktop/app/flet/url_launcher_windows_plugin.dll,sha256=G08goE_sZgiWtRyDUWpdMpKWAUzfBJlzSSMwBYESkmM,98304
14
+ flet_desktop/app/flet/permission_handler_windows_plugin.dll,sha256=WHiJFrlcXM522NcW6vg4_Q373rSUdB_dHfVBbE8vRsk,119808
15
+ flet_desktop/app/flet/record_windows_plugin.dll,sha256=kOw03pLVyt0gmSrlT0J-shgbenP29LpQjT7F7P5pQnk,143360
16
+ flet_desktop/app/flet/rive_common_plugin.dll,sha256=vnvbrOS7e89vIjVQYdWj-GrzfELmP7uaxIfoxAWE2_g,1311232
17
+ flet_desktop/app/flet/screen_retriever_windows_plugin.dll,sha256=DFBgJ2gfUeHfsav8tORfWJuUTkt4zYr-4LJoCpqKD7s,119808
18
+ flet_desktop/app/flet/url_launcher_windows_plugin.dll,sha256=nuxuF1xPyCUYEkK2-vmk0jT0kA5DCRduy5yMQPUkmbU,98304
19
19
  flet_desktop/app/flet/vcruntime140.dll,sha256=1eTZo-g1-meUUBRdan2U42VzpQkxcRGQTZs3EsMNkGY,124544
20
20
  flet_desktop/app/flet/vcruntime140_1.dll,sha256=Hy1BxKpdsLwz6_e2bXKUOoF9fObL6IBQKpQDgjYzCT8,49792
21
21
  flet_desktop/app/flet/vk_swiftshader.dll,sha256=TzPupxZJGXLLGtEjp4rO9IX4UlgRMNPzqYoZgQCQBPI,4808008
22
- flet_desktop/app/flet/volume_controller_plugin.dll,sha256=c5hId2PFIMiH5uvNgPUCCkQYXtKZrMh3j4iJQFegW68,96768
22
+ flet_desktop/app/flet/volume_controller_plugin.dll,sha256=gV8HRPUSgkttAYOqKi7tKLhbQeFxA16xktsWzLoSHzI,96768
23
23
  flet_desktop/app/flet/vulkan-1.dll,sha256=O-mpXdkBmqGspHreJvXBx8AEfzz29jPVhsnsDTtFlWY,872776
24
- flet_desktop/app/flet/window_manager_plugin.dll,sha256=Hmw4aA1q4fFAdU1LPHFmutLhMXjiPC459JFPhzphD8g,130048
25
- flet_desktop/app/flet/window_to_front_plugin.dll,sha256=WKHKNaYUbtgygRj2Tmmpc6BAKC-jFP_1i0-Jm5zElbY,80384
24
+ flet_desktop/app/flet/window_manager_plugin.dll,sha256=BvZDc0jecLGBrXpF6Gx3cdZ64R6cvx4DmQx_SwybgLA,130048
25
+ flet_desktop/app/flet/window_to_front_plugin.dll,sha256=4RXVvEoN17I8Bl0KGgTs7Jrq_uKE1LeJWkVMhK_cfSg,80384
26
26
  flet_desktop/app/flet/zlib.dll,sha256=gtW_F1z4gqya_BVYtBbmdGBtBVlmvAlSkHayikmPwOQ,203264
27
- flet_desktop/app/flet/data/app.so,sha256=1Y66ONAh765fZq6FbPQioborXoCTp64AidosyCKIRk0,18056112
27
+ flet_desktop/app/flet/data/app.so,sha256=eqIzOUrtARaDDMaDuZR569FiztnedUx2OcJz_ASqwj4,18056112
28
28
  flet_desktop/app/flet/data/icudtl.dat,sha256=wSU3Ai74GJkae_7UGnbY1q6WL_vA5lEax2Kl0IRef3w,778864
29
29
  flet_desktop/app/flet/data/flutter_assets/AssetManifest.bin,sha256=Q4sJXhFAZx8wv3K0TWA-ljDQf7oE2dP8FHjE07QJYdo,666
30
30
  flet_desktop/app/flet/data/flutter_assets/AssetManifest.json,sha256=zaDhetvObV0uhQRUjT1QEpicnQ-0DtdveW3NT1WKaho,623
31
31
  flet_desktop/app/flet/data/flutter_assets/FontManifest.json,sha256=zX4DZFvESy3Ue3y2JvUcTsv1Whl6t3JBYotHrBZfviE,208
32
- flet_desktop/app/flet/data/flutter_assets/NOTICES.Z,sha256=PYsQ2GMYsUb80dKEmDVTwgTkbqsIkwodtVHFCt3w_d8,100450
32
+ flet_desktop/app/flet/data/flutter_assets/NOTICES.Z,sha256=3L4vF6q3f5w_xzVzdlfm356rXQCMtvtDMCQvUuwDz98,100841
33
33
  flet_desktop/app/flet/data/flutter_assets/NativeAssetsManifest.json,sha256=lUijHkoEgTXB2U-Rkyi_tirix7s8q5ZVfHlB2ql3dss,45
34
34
  flet_desktop/app/flet/data/flutter_assets/fonts/MaterialIcons-Regular.otf,sha256=2YZbZxoJ1oPROoYwidiCXg9ho3aWzl19RIvIAjqmJFM,1645184
35
35
  flet_desktop/app/flet/data/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf,sha256=Z8RP6Rg7AC553ef2l34piGYcmj5KPF_OloeH79vtgjw,257628
@@ -39,7 +39,7 @@ flet_desktop/app/flet/data/flutter_assets/packages/record_web/assets/js/record.f
39
39
  flet_desktop/app/flet/data/flutter_assets/packages/record_web/assets/js/record.worklet.js,sha256=un4PTIQUgO54wLVOfq3URFW5Fv79sHQQ7kYVnYLcwI4,11803
40
40
  flet_desktop/app/flet/data/flutter_assets/packages/wakelock_plus/assets/no_sleep.js,sha256=3OTu8LGXtkCtaqqyIo7h7n3M-L1ta13lSE3RvRZDCng,13344
41
41
  flet_desktop/app/flet/data/flutter_assets/shaders/ink_sparkle.frag,sha256=5eYdUMlUm8NTgru9HJVI1GxPud30DDpphBWsfgBVFsg,21320
42
- flet_desktop-0.70.0.dev5835.dist-info/METADATA,sha256=xhyA_kk_ytI9PZkupuoXzCdXtyBCI50eqIQHy1xQnrc,552
43
- flet_desktop-0.70.0.dev5835.dist-info/WHEEL,sha256=WoMU9H0h7V4qscn0rQQi34TTfVIKY3pnxFw5603uGrU,98
44
- flet_desktop-0.70.0.dev5835.dist-info/top_level.txt,sha256=ugIkH3TGoxP2-XUffs2tqRF1Qi9icFhrR1d1SSzgktc,13
45
- flet_desktop-0.70.0.dev5835.dist-info/RECORD,,
42
+ flet_desktop-0.70.0.dev6145.dist-info/METADATA,sha256=JXgZN05ks1dTAKdLfryyaTnMxNGk5Q1nQe7tFY9C5BA,552
43
+ flet_desktop-0.70.0.dev6145.dist-info/WHEEL,sha256=WoMU9H0h7V4qscn0rQQi34TTfVIKY3pnxFw5603uGrU,98
44
+ flet_desktop-0.70.0.dev6145.dist-info/top_level.txt,sha256=ugIkH3TGoxP2-XUffs2tqRF1Qi9icFhrR1d1SSzgktc,13
45
+ flet_desktop-0.70.0.dev6145.dist-info/RECORD,,