flet-web 0.70.0.dev5399__py3-none-any.whl → 0.70.0.dev5453__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/version.py CHANGED
@@ -1 +1 @@
1
- version = "0.70.0.dev5399"
1
+ version = "0.70.0.dev5453"
@@ -1777,6 +1777,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1777
1777
  async
1778
1778
  cli_util
1779
1779
  collection
1780
+ mime
1780
1781
  stream_channel
1781
1782
  typed_data
1782
1783
 
@@ -3501,6 +3502,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3501
3502
 
3502
3503
  --------------------------------------------------------------------------------
3503
3504
  dbus
3505
+ geoclue
3506
+ gsettings
3504
3507
 
3505
3508
  Mozilla Public License Version 2.0
3506
3509
  ==================================
@@ -7404,6 +7407,7 @@ Software.
7404
7407
  geolocator
7405
7408
  geolocator_android
7406
7409
  geolocator_apple
7410
+ geolocator_linux
7407
7411
  geolocator_platform_interface
7408
7412
  geolocator_web
7409
7413
  geolocator_windows
@@ -31697,7 +31701,9 @@ All Tencent Modifications are Copyright (C) 2015 THL A29 Limited.
31697
31701
  --------------------------------------------------------------------------------
31698
31702
  record
31699
31703
  record_android
31704
+ record_ios
31700
31705
  record_linux
31706
+ record_macos
31701
31707
  record_platform_interface
31702
31708
  record_web
31703
31709
  record_windows
@@ -31730,37 +31736,6 @@ record_windows
31730
31736
  // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31731
31737
  // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31732
31738
  --------------------------------------------------------------------------------
31733
- record_ios
31734
- record_macos
31735
-
31736
- // Copyright 2022 openapi4j authors. All rights reserved.
31737
- //
31738
- // Redistribution and use in source and binary forms, with or without
31739
- // modification, are permitted provided that the following conditions are
31740
- // met:
31741
- //
31742
- // * Redistributions of source code must retain the above copyright
31743
- // notice, this list of conditions and the following disclaimer.
31744
- // * Redistributions in binary form must reproduce the above
31745
- // copyright notice, this list of conditions and the following disclaimer
31746
- // in the documentation and/or other materials provided with the
31747
- // distribution.
31748
- // * Neither the name of openapi4j nor the names of its
31749
- // contributors may be used to endorse or promote products derived from
31750
- // this software without specific prior written permission.
31751
- //
31752
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31753
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31754
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31755
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31756
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31757
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31758
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31759
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31760
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31761
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31762
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31763
- --------------------------------------------------------------------------------
31764
31739
  rive
31765
31740
  rive_common
31766
31741
 
@@ -12,12 +12,18 @@ class RecorderProcessor extends AudioWorkletProcessor {
12
12
  defaultValue: 48000,
13
13
  minValue: 8000,
14
14
  maxValue: 96000
15
+ },
16
+ {
17
+ name: 'streamBufferSize',
18
+ defaultValue: 2048,
19
+ minValue: 256,
20
+ maxValue: 8192
15
21
  }
16
22
  ];
17
23
  }
18
24
 
19
25
  // Buffer size compromise between size and process call frequency
20
- _bufferSize = 4096
26
+ _bufferSize = 2048
21
27
  // The current buffer fill level
22
28
  _bytesWritten = 0
23
29
  // Buffer per channel
@@ -33,6 +39,7 @@ class RecorderProcessor extends AudioWorkletProcessor {
33
39
 
34
40
  this._numChannels = options.parameterData.numChannels
35
41
  this._sampleRate = options.parameterData.sampleRate
42
+ this._bufferSize = options.parameterData.streamBufferSize
36
43
 
37
44
  // Resampler(current context sample rate, desired sample rate, num channels, buffer size)
38
45
  // num channels is always 1 since we resample after interleaving channels
@@ -83,7 +90,7 @@ class RecorderProcessor extends AudioWorkletProcessor {
83
90
  for (let channel = 0; channel < this._numChannels; channel++) {
84
91
  // Push a copy of the array.
85
92
  // The underlying implementation may reuse it which will break the recording.
86
- this._buffers[channel].push([...input[channel]])
93
+ this._buffers[channel].push([...input[channel % input.length]])
87
94
  }
88
95
 
89
96
  this._bytesWritten += input[0].length
@@ -54,7 +54,7 @@ if (flet.noCdn) {
54
54
  _flutter.loader.load({
55
55
  config: flutterConfig,
56
56
  serviceWorkerSettings: {
57
- serviceWorkerVersion: "2678820520",
57
+ serviceWorkerVersion: "3034289791",
58
58
  },
59
59
  onEntrypointLoaded: async function (engineInitializer) {
60
60
  loading.classList.add('main_done');
@@ -3,7 +3,7 @@ const MANIFEST = 'flutter-app-manifest';
3
3
  const TEMP = 'flutter-temp-cache';
4
4
  const CACHE_NAME = 'flutter-app-cache';
5
5
 
6
- const RESOURCES = {"main.dart.js": "9124a0753f364dd1c56c25b99f1858e5",
6
+ const RESOURCES = {"main.dart.js": "f9f98a4e54dcec42a134c0486898e7c7",
7
7
  "manifest.json": "58765f937ba0d0c40a3a714c5c1adb87",
8
8
  "python-worker.js": "26eb131f3acb5ce232fea72da957e8ce",
9
9
  "canvaskit/skwasm.wasm": "39dd80367a4e71582d234948adc521c0",
@@ -15,8 +15,8 @@ const RESOURCES = {"main.dart.js": "9124a0753f364dd1c56c25b99f1858e5",
15
15
  "canvaskit/skwasm.js.symbols": "e72c79950c8a8483d826a7f0560573a1",
16
16
  "canvaskit/canvaskit.js": "728b2d477d9b8c14593d4f9b82b484f3",
17
17
  "canvaskit/canvaskit.wasm": "7a3f4ae7d65fc1de6a6e7ddd3224bc93",
18
- "flutter_bootstrap.js": "348274d87078daf763bf2cea2c14d00f",
19
- "main.dart.wasm": "c5171795a7d5724e44f823873fb82c5c",
18
+ "flutter_bootstrap.js": "fe97f9222856143e3608a15909ae571d",
19
+ "main.dart.wasm": "6d3e4592f9f570483d81a308ffabb781",
20
20
  "favicon.png": "302ac04c14db027d016d1fe74c6a80a0",
21
21
  "flutter.js": "83d881c1dbb6d6bcd6b42e274605b69c",
22
22
  "index.html": "55e4a5140b3c5f98b694331a15299630",
@@ -25,11 +25,11 @@ const RESOURCES = {"main.dart.js": "9124a0753f364dd1c56c25b99f1858e5",
25
25
  "assets/packages/wakelock_plus/assets/no_sleep.js": "7748a45cd593f33280669b29c2c8919a",
26
26
  "assets/packages/flutter_map/lib/assets/flutter_map_logo.png": "208d63cc917af9713fc9572bd5c09362",
27
27
  "assets/packages/cupertino_icons/assets/CupertinoIcons.ttf": "6323a28c4d27ae6070923bcb643dc985",
28
- "assets/packages/record_web/assets/js/record.worklet.js": "356bcfeddb8a625e3e2ba43ddf1cc13e",
28
+ "assets/packages/record_web/assets/js/record.worklet.js": "6d247986689d283b7e45ccdf7214c2ff",
29
29
  "assets/packages/record_web/assets/js/record.fixwebmduration.js": "1f0108ea80c8951ba702ced40cf8cdce",
30
30
  "assets/packages/media_kit/assets/web/hls1.4.10.js": "bd60e2701c42b6bf2c339dcf5d495865",
31
31
  "assets/FontManifest.json": "dc3d03800ccca4601324923c0b1d6d57",
32
- "assets/NOTICES": "ca4e895284220b684e61b44e67491dfb",
32
+ "assets/NOTICES": "3948ac4b9816f1ed045e9a734e5bbe79",
33
33
  "assets/AssetManifest.json": "a38a816646dff320fc78b32cc727925e",
34
34
  "assets/fonts/roboto.woff2": "e507bd45228483ae2f864d36f26bb43e",
35
35
  "assets/fonts/MaterialIcons-Regular.otf": "f34ace52ea74c95e26949fab4870ac22",
@@ -41,7 +41,7 @@ const RESOURCES = {"main.dart.js": "9124a0753f364dd1c56c25b99f1858e5",
41
41
  "icons/icon-maskable-192.png": "c1c2210feeb444cf800a5ce0d06eff16",
42
42
  "icons/loading-animation.png": "41a96047dbd2463a50c46ad3bf6ff158",
43
43
  "icons/icon-maskable-512.png": "aa798e6d780ff109da17c3a98d5f2619",
44
- "main.dart.mjs": "44b4c76f7cb2aea74da37ee8aa60446c",
44
+ "main.dart.mjs": "0514176282ab7534ecca48502f0e9776",
45
45
  "python.js": "352c5261eadd3cc73ac082984266c0fc",
46
46
  "version.json": "3fea9d9c7b4ca6955aa03e762e0d2e13"};
47
47
  // The application shell files that are downloaded before a service worker can