fastled 1.4.6__py3-none-any.whl → 1.4.8__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.
- fastled/__init__.py +2 -4
- fastled/__version__.py +1 -1
- fastled/args.py +3 -5
- fastled/client_server.py +4 -14
- fastled/live_client.py +0 -3
- fastled/open_browser.py +11 -14
- fastled/parse_args.py +2 -2
- fastled/playwright_browser.py +73 -74
- {fastled-1.4.6.dist-info → fastled-1.4.8.dist-info}/METADATA +9 -28
- {fastled-1.4.6.dist-info → fastled-1.4.8.dist-info}/RECORD +14 -14
- {fastled-1.4.6.dist-info → fastled-1.4.8.dist-info}/WHEEL +0 -0
- {fastled-1.4.6.dist-info → fastled-1.4.8.dist-info}/entry_points.txt +0 -0
- {fastled-1.4.6.dist-info → fastled-1.4.8.dist-info}/licenses/LICENSE +0 -0
- {fastled-1.4.6.dist-info → fastled-1.4.8.dist-info}/top_level.txt +0 -0
fastled/__init__.py
CHANGED
@@ -81,7 +81,6 @@ class Api:
|
|
81
81
|
int | None
|
82
82
|
) = None, # None means auto select a free port. -1 means no server.
|
83
83
|
no_platformio: bool = False,
|
84
|
-
no_playwright: bool = False,
|
85
84
|
) -> LiveClient:
|
86
85
|
return LiveClient(
|
87
86
|
sketch_directory=sketch_directory,
|
@@ -94,7 +93,6 @@ class Api:
|
|
94
93
|
profile=profile,
|
95
94
|
http_port=http_port,
|
96
95
|
no_platformio=no_platformio,
|
97
|
-
no_playwright=no_playwright,
|
98
96
|
)
|
99
97
|
|
100
98
|
@staticmethod
|
@@ -219,7 +217,7 @@ class Test:
|
|
219
217
|
port: int | None = None,
|
220
218
|
compile_server_port: int | None = None,
|
221
219
|
open_browser: bool = True,
|
222
|
-
|
220
|
+
app: bool = False,
|
223
221
|
) -> Process:
|
224
222
|
from fastled.open_browser import spawn_http_server
|
225
223
|
|
@@ -231,7 +229,7 @@ class Test:
|
|
231
229
|
port=port,
|
232
230
|
compile_server_port=compile_server_port,
|
233
231
|
open_browser=open_browser,
|
234
|
-
|
232
|
+
app=app,
|
235
233
|
)
|
236
234
|
return proc
|
237
235
|
|
fastled/__version__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# IMPORTANT! There's a bug in github which will REJECT any version update
|
2
2
|
# that has any other change in the repo. Please bump the version as the
|
3
3
|
# ONLY change in a commit, or else the pypi update and the release will fail.
|
4
|
-
__version__ = "1.4.
|
4
|
+
__version__ = "1.4.8"
|
5
5
|
|
6
6
|
__version_url_latest__ = "https://raw.githubusercontent.com/zackees/fastled-wasm/refs/heads/main/src/fastled/__version__.py"
|
fastled/args.py
CHANGED
@@ -13,7 +13,7 @@ class Args:
|
|
13
13
|
profile: bool
|
14
14
|
force_compile: bool
|
15
15
|
no_platformio: bool
|
16
|
-
|
16
|
+
app: bool # New flag to trigger Playwright browser with browser download if needed
|
17
17
|
auto_update: bool | None
|
18
18
|
update: bool
|
19
19
|
localhost: bool
|
@@ -52,9 +52,7 @@ class Args:
|
|
52
52
|
assert isinstance(
|
53
53
|
args.no_platformio, bool
|
54
54
|
), f"expected bool, got {type(args.no_platformio)}"
|
55
|
-
assert isinstance(
|
56
|
-
args.no_playwright, bool
|
57
|
-
), f"expected bool, got {type(args.no_playwright)}"
|
55
|
+
assert isinstance(args.app, bool), f"expected bool, got {type(args.app)}"
|
58
56
|
assert isinstance(
|
59
57
|
args.no_auto_updates, bool | None
|
60
58
|
), f"expected bool | None, got {type(args.no_auto_updates)}"
|
@@ -87,7 +85,7 @@ class Args:
|
|
87
85
|
profile=args.profile,
|
88
86
|
force_compile=args.force_compile,
|
89
87
|
no_platformio=args.no_platformio,
|
90
|
-
|
88
|
+
app=args.app,
|
91
89
|
auto_update=not args.no_auto_updates,
|
92
90
|
update=args.update,
|
93
91
|
localhost=args.localhost,
|
fastled/client_server.py
CHANGED
@@ -25,16 +25,6 @@ from fastled.web_compile import (
|
|
25
25
|
)
|
26
26
|
|
27
27
|
|
28
|
-
def _always_false() -> bool:
|
29
|
-
return False
|
30
|
-
|
31
|
-
|
32
|
-
try:
|
33
|
-
from fastled.playwright_browser import is_playwright_available
|
34
|
-
except ImportError:
|
35
|
-
is_playwright_available = _always_false
|
36
|
-
|
37
|
-
|
38
28
|
def _create_error_html(error_message: str) -> str:
|
39
29
|
return f"""<!DOCTYPE html>
|
40
30
|
<html>
|
@@ -277,7 +267,7 @@ def run_client(
|
|
277
267
|
) = None, # None means auto select a free port, http_port < 0 means no server.
|
278
268
|
clear: bool = False,
|
279
269
|
no_platformio: bool = False,
|
280
|
-
|
270
|
+
app: bool = False, # Use app-like browser experience
|
281
271
|
) -> int:
|
282
272
|
has_checked_newer_version_yet = False
|
283
273
|
compile_server: CompileServer | None = None
|
@@ -365,7 +355,7 @@ def run_client(
|
|
365
355
|
port=http_port,
|
366
356
|
compile_server_port=port,
|
367
357
|
open_browser=open_web_browser,
|
368
|
-
|
358
|
+
app=app,
|
369
359
|
)
|
370
360
|
else:
|
371
361
|
print("\nCompilation successful.")
|
@@ -531,7 +521,7 @@ def run_client_server(args: Args) -> int:
|
|
531
521
|
open_web_browser = not just_compile and not interactive
|
532
522
|
build_mode: BuildMode = BuildMode.from_args(args)
|
533
523
|
no_platformio = bool(args.no_platformio)
|
534
|
-
|
524
|
+
app = bool(args.app)
|
535
525
|
|
536
526
|
if not force_compile and not looks_like_sketch_directory(directory):
|
537
527
|
# if there is only one directory in the sketch directory, use that
|
@@ -594,7 +584,7 @@ def run_client_server(args: Args) -> int:
|
|
594
584
|
profile=profile,
|
595
585
|
clear=args.clear,
|
596
586
|
no_platformio=no_platformio,
|
597
|
-
|
587
|
+
app=app,
|
598
588
|
)
|
599
589
|
except KeyboardInterrupt:
|
600
590
|
return 1
|
fastled/live_client.py
CHANGED
@@ -23,7 +23,6 @@ class LiveClient:
|
|
23
23
|
build_mode: BuildMode = BuildMode.QUICK,
|
24
24
|
profile: bool = False,
|
25
25
|
no_platformio: bool = False,
|
26
|
-
no_playwright: bool = False,
|
27
26
|
) -> None:
|
28
27
|
self.sketch_directory = sketch_directory
|
29
28
|
self.host = host
|
@@ -37,7 +36,6 @@ class LiveClient:
|
|
37
36
|
self.thread: threading.Thread | None = None
|
38
37
|
self.auto_updates = auto_updates
|
39
38
|
self.no_platformio = no_platformio
|
40
|
-
self.no_playwright = no_playwright
|
41
39
|
if auto_start:
|
42
40
|
self.start()
|
43
41
|
if self.auto_updates is False:
|
@@ -57,7 +55,6 @@ class LiveClient:
|
|
57
55
|
shutdown=self.shutdown,
|
58
56
|
http_port=self.http_port,
|
59
57
|
no_platformio=self.no_platformio,
|
60
|
-
no_playwright=self.no_playwright,
|
61
58
|
)
|
62
59
|
return rtn
|
63
60
|
|
fastled/open_browser.py
CHANGED
@@ -6,16 +6,9 @@ import weakref
|
|
6
6
|
from multiprocessing import Process
|
7
7
|
from pathlib import Path
|
8
8
|
|
9
|
+
from fastled.playwright_browser import open_with_playwright
|
9
10
|
from fastled.server_flask import run_flask_in_thread
|
10
11
|
|
11
|
-
try:
|
12
|
-
from fastled.playwright_browser import is_playwright_available, open_with_playwright
|
13
|
-
|
14
|
-
PLAYWRIGHT_AVAILABLE = is_playwright_available()
|
15
|
-
except ImportError:
|
16
|
-
PLAYWRIGHT_AVAILABLE = False
|
17
|
-
open_with_playwright = None
|
18
|
-
|
19
12
|
# Global reference to keep Playwright browser alive
|
20
13
|
_playwright_browser_proxy = None
|
21
14
|
|
@@ -101,7 +94,7 @@ def spawn_http_server(
|
|
101
94
|
compile_server_port: int,
|
102
95
|
port: int | None = None,
|
103
96
|
open_browser: bool = True,
|
104
|
-
|
97
|
+
app: bool = False,
|
105
98
|
) -> Process:
|
106
99
|
|
107
100
|
if port is not None and not is_port_free(port):
|
@@ -130,11 +123,15 @@ def spawn_http_server(
|
|
130
123
|
wait_for_server(port)
|
131
124
|
if open_browser:
|
132
125
|
url = f"http://localhost:{port}"
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
126
|
+
should_use_playwright = app
|
127
|
+
|
128
|
+
if should_use_playwright:
|
129
|
+
if app:
|
130
|
+
# For --app mode, try to install browsers if needed
|
131
|
+
from fastled.playwright_browser import install_playwright_browsers
|
132
|
+
|
133
|
+
install_playwright_browsers()
|
134
|
+
|
138
135
|
print(f"Opening FastLED sketch in Playwright browser: {url}")
|
139
136
|
print(
|
140
137
|
"Auto-resize enabled: Browser window will automatically adjust to content size"
|
fastled/parse_args.py
CHANGED
@@ -121,9 +121,9 @@ def parse_args() -> Args:
|
|
121
121
|
help="Bypass PlatformIO constraints by using local Docker compilation with custom build environment",
|
122
122
|
)
|
123
123
|
parser.add_argument(
|
124
|
-
"--
|
124
|
+
"--app",
|
125
125
|
action="store_true",
|
126
|
-
help="
|
126
|
+
help="Use Playwright app-like browser experience (will download browsers if needed)",
|
127
127
|
)
|
128
128
|
parser.add_argument(
|
129
129
|
"-u",
|
fastled/playwright_browser.py
CHANGED
@@ -17,23 +17,36 @@ from typing import Any
|
|
17
17
|
# Set custom Playwright browser installation path
|
18
18
|
PLAYWRIGHT_DIR = Path.home() / ".fastled" / "playwright"
|
19
19
|
PLAYWRIGHT_DIR.mkdir(parents=True, exist_ok=True)
|
20
|
-
# Use absolute path and normalize for Windows compatibility
|
21
|
-
os.environ["PLAYWRIGHT_BROWSERS_PATH"] = str(PLAYWRIGHT_DIR.resolve())
|
22
20
|
|
23
|
-
try:
|
24
|
-
from playwright.async_api import Browser, Page, async_playwright
|
25
21
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
Browser = None
|
31
|
-
Page = None
|
22
|
+
def get_chromium_executable_path() -> str | None:
|
23
|
+
"""Get the path to the custom Chromium executable if it exists."""
|
24
|
+
import glob
|
25
|
+
import platform
|
32
26
|
|
27
|
+
playwright_dir = PLAYWRIGHT_DIR
|
33
28
|
|
34
|
-
|
35
|
-
|
36
|
-
|
29
|
+
if platform.system() == "Windows":
|
30
|
+
chromium_pattern = str(
|
31
|
+
playwright_dir / "chromium-*" / "chrome-win" / "chrome.exe"
|
32
|
+
)
|
33
|
+
elif platform.system() == "Darwin": # macOS
|
34
|
+
chromium_pattern = str(
|
35
|
+
playwright_dir
|
36
|
+
/ "chromium-*"
|
37
|
+
/ "chrome-mac"
|
38
|
+
/ "Chromium.app"
|
39
|
+
/ "Contents"
|
40
|
+
/ "MacOS"
|
41
|
+
/ "Chromium"
|
42
|
+
)
|
43
|
+
else: # Linux
|
44
|
+
chromium_pattern = str(
|
45
|
+
playwright_dir / "chromium-*" / "chrome-linux" / "chrome"
|
46
|
+
)
|
47
|
+
|
48
|
+
matches = glob.glob(chromium_pattern)
|
49
|
+
return matches[0] if matches else None
|
37
50
|
|
38
51
|
|
39
52
|
class PlaywrightBrowser:
|
@@ -45,10 +58,6 @@ class PlaywrightBrowser:
|
|
45
58
|
Args:
|
46
59
|
headless: Whether to run the browser in headless mode
|
47
60
|
"""
|
48
|
-
if not is_playwright_available():
|
49
|
-
raise ImportError(
|
50
|
-
"Playwright is not installed. Install with: pip install fastled[full]"
|
51
|
-
)
|
52
61
|
|
53
62
|
self.headless = headless
|
54
63
|
self.auto_resize = True # Always enable auto-resize
|
@@ -109,21 +118,28 @@ class PlaywrightBrowser:
|
|
109
118
|
async def start(self) -> None:
|
110
119
|
"""Start the Playwright browser."""
|
111
120
|
if self.browser is None:
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
121
|
+
|
122
|
+
from playwright.async_api import async_playwright
|
123
|
+
|
124
|
+
self.playwright = async_playwright()
|
125
|
+
playwright = await self.playwright.start()
|
126
|
+
|
127
|
+
# Get custom Chromium executable path if available
|
128
|
+
executable_path = get_chromium_executable_path()
|
129
|
+
launch_kwargs = {
|
130
|
+
"headless": self.headless,
|
131
|
+
"args": [
|
132
|
+
"--disable-dev-shm-usage",
|
133
|
+
"--disable-web-security",
|
134
|
+
"--allow-running-insecure-content",
|
135
|
+
],
|
136
|
+
}
|
137
|
+
|
138
|
+
if executable_path:
|
139
|
+
launch_kwargs["executable_path"] = executable_path
|
140
|
+
print(f"[PYTHON] Using custom Chromium executable: {executable_path}")
|
141
|
+
|
142
|
+
self.browser = await playwright.chromium.launch(**launch_kwargs)
|
127
143
|
|
128
144
|
if self.page is None and self.browser is not None:
|
129
145
|
# Detect system device scale factor for natural browser behavior
|
@@ -339,15 +355,6 @@ def run_playwright_browser(url: str, headless: bool = False) -> None:
|
|
339
355
|
url: The URL to open
|
340
356
|
headless: Whether to run in headless mode
|
341
357
|
"""
|
342
|
-
if not is_playwright_available():
|
343
|
-
warnings.warn(
|
344
|
-
"Playwright is not installed. Install with: pip install fastled[full]. "
|
345
|
-
"Falling back to default browser."
|
346
|
-
)
|
347
|
-
import webbrowser
|
348
|
-
|
349
|
-
webbrowser.open(url)
|
350
|
-
return
|
351
358
|
|
352
359
|
async def main():
|
353
360
|
browser = None
|
@@ -413,16 +420,6 @@ class PlaywrightBrowserProxy:
|
|
413
420
|
url: The URL to open
|
414
421
|
headless: Whether to run in headless mode
|
415
422
|
"""
|
416
|
-
if not is_playwright_available():
|
417
|
-
warnings.warn(
|
418
|
-
"Playwright is not installed. Install with: pip install fastled[full]. "
|
419
|
-
"Falling back to default browser."
|
420
|
-
)
|
421
|
-
# Fall back to default browser
|
422
|
-
import webbrowser
|
423
|
-
|
424
|
-
webbrowser.open(url)
|
425
|
-
return
|
426
423
|
|
427
424
|
try:
|
428
425
|
# Run Playwright in a separate process to avoid blocking
|
@@ -455,8 +452,6 @@ class PlaywrightBrowserProxy:
|
|
455
452
|
if self.monitor_thread is not None:
|
456
453
|
return
|
457
454
|
|
458
|
-
import os
|
459
|
-
|
460
455
|
def monitor_process():
|
461
456
|
"""Monitor the browser process and exit when it terminates."""
|
462
457
|
if self.process is None:
|
@@ -501,8 +496,6 @@ def run_playwright_browser_persistent(url: str, headless: bool = False) -> None:
|
|
501
496
|
url: The URL to open
|
502
497
|
headless: Whether to run in headless mode
|
503
498
|
"""
|
504
|
-
if not is_playwright_available():
|
505
|
-
return
|
506
499
|
|
507
500
|
async def main():
|
508
501
|
browser = None
|
@@ -584,8 +577,6 @@ def install_playwright_browsers() -> bool:
|
|
584
577
|
Returns:
|
585
578
|
True if installation was successful or browsers were already installed
|
586
579
|
"""
|
587
|
-
if not PLAYWRIGHT_AVAILABLE:
|
588
|
-
return False
|
589
580
|
|
590
581
|
try:
|
591
582
|
import os
|
@@ -595,32 +586,38 @@ def install_playwright_browsers() -> bool:
|
|
595
586
|
playwright_dir = Path.home() / ".fastled" / "playwright"
|
596
587
|
playwright_dir.mkdir(parents=True, exist_ok=True)
|
597
588
|
|
598
|
-
#
|
599
|
-
|
589
|
+
# Check if browsers are installed in the custom directory
|
590
|
+
import glob
|
591
|
+
import platform
|
600
592
|
|
601
|
-
|
593
|
+
if platform.system() == "Windows":
|
594
|
+
chromium_pattern = str(
|
595
|
+
playwright_dir / "chromium-*" / "chrome-win" / "chrome.exe"
|
596
|
+
)
|
597
|
+
elif platform.system() == "Darwin": # macOS
|
598
|
+
chromium_pattern = str(
|
599
|
+
playwright_dir / "chromium-*" / "chrome-mac" / "Chromium.app"
|
600
|
+
)
|
601
|
+
else: # Linux
|
602
|
+
chromium_pattern = str(
|
603
|
+
playwright_dir / "chromium-*" / "chrome-linux" / "chrome"
|
604
|
+
)
|
602
605
|
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
browser = p.chromium.launch(headless=True)
|
607
|
-
browser.close()
|
608
|
-
return True
|
609
|
-
except Exception:
|
610
|
-
pass
|
606
|
+
if glob.glob(chromium_pattern):
|
607
|
+
print(f"✅ Playwright browsers already installed at: {playwright_dir}")
|
608
|
+
return True
|
611
609
|
|
612
610
|
# If we get here, browsers need to be installed
|
613
611
|
print("Installing Playwright browsers...")
|
614
612
|
print(f"Installing to: {playwright_dir}")
|
615
613
|
import subprocess
|
616
614
|
|
615
|
+
env = dict(os.environ)
|
616
|
+
env["PLAYWRIGHT_BROWSERS_PATH"] = str(playwright_dir.resolve())
|
617
|
+
|
617
618
|
result = subprocess.run(
|
618
619
|
[sys.executable, "-m", "playwright", "install", "chromium"],
|
619
|
-
|
620
|
-
text=True,
|
621
|
-
env=dict(
|
622
|
-
os.environ, PLAYWRIGHT_BROWSERS_PATH=str(playwright_dir.resolve())
|
623
|
-
),
|
620
|
+
env=env,
|
624
621
|
)
|
625
622
|
|
626
623
|
if result.returncode == 0:
|
@@ -628,7 +625,9 @@ def install_playwright_browsers() -> bool:
|
|
628
625
|
print(f" Location: {playwright_dir}")
|
629
626
|
return True
|
630
627
|
else:
|
631
|
-
print(
|
628
|
+
print(
|
629
|
+
f"❌ Failed to install Playwright browsers (exit code: {result.returncode})"
|
630
|
+
)
|
632
631
|
return False
|
633
632
|
|
634
633
|
except Exception as e:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fastled
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.8
|
4
4
|
Summary: FastLED Wasm Compiler
|
5
5
|
Home-page: https://github.com/zackees/fastled-wasm
|
6
6
|
Maintainer: Zachary Vorhies
|
@@ -22,8 +22,7 @@ Requires-Dist: Flask>=3.0.0
|
|
22
22
|
Requires-Dist: flask-cors>=4.0.0
|
23
23
|
Requires-Dist: livereload
|
24
24
|
Requires-Dist: disklru>=2.0.4
|
25
|
-
|
26
|
-
Requires-Dist: playwright>=1.40.0; extra == "full"
|
25
|
+
Requires-Dist: playwright>=1.40.0
|
27
26
|
Dynamic: home-page
|
28
27
|
Dynamic: license-file
|
29
28
|
Dynamic: maintainer
|
@@ -73,34 +72,28 @@ $ cd mysketchdirectory
|
|
73
72
|
$ fastled
|
74
73
|
```
|
75
74
|
|
76
|
-
##
|
75
|
+
## App-like Browser Support
|
77
76
|
|
78
|
-
|
77
|
+
FastLED includes Playwright for enhanced browser control and automation capabilities. To use the app-like browser experience, use the `--app` flag:
|
79
78
|
|
80
79
|
```bash
|
81
|
-
$
|
80
|
+
$ fastled --app my_sketch
|
82
81
|
```
|
83
82
|
|
84
|
-
|
85
|
-
|
86
|
-
```bash
|
87
|
-
$ fastled my_sketch
|
88
|
-
```
|
89
|
-
|
90
|
-
The Playwright browser provides better automation capabilities and is especially useful for:
|
83
|
+
The `--app` flag provides better automation capabilities and is especially useful for:
|
91
84
|
- Automated testing of your LED sketches
|
92
85
|
- Consistent cross-platform browser behavior
|
93
86
|
- Advanced debugging and development workflows
|
94
87
|
- Persistent browser sessions that stay open until the FastLED process exits
|
95
88
|
|
96
89
|
**Key Benefits:**
|
97
|
-
-
|
90
|
+
- Triggered by the `--app` flag - automatically downloads browsers if needed
|
98
91
|
- The Playwright browser remains open throughout your development session
|
99
92
|
- Automatic cleanup when the FastLED process exits
|
100
93
|
- Better control over browser behavior and automation capabilities
|
101
94
|
- Consistent behavior across different platforms
|
102
95
|
|
103
|
-
If
|
96
|
+
If you don't use the `--app` flag, the system will use your default browser.
|
104
97
|
|
105
98
|
# Install
|
106
99
|
|
@@ -110,26 +103,14 @@ This is a python app, so any python package manager will work. We also provide p
|
|
110
103
|
|
111
104
|
`pip install fastled`
|
112
105
|
|
113
|
-
### Pip with Playwright Support
|
114
|
-
|
115
|
-
`pip install fastled[full]`
|
116
|
-
|
117
106
|
### UV
|
118
107
|
|
119
108
|
`uv pip install fastled --system`
|
120
109
|
|
121
|
-
### UV with Playwright Support
|
122
|
-
|
123
|
-
`uv pip install "fastled[full]" --system`
|
124
|
-
|
125
110
|
### Pipx
|
126
111
|
|
127
112
|
`pipx install fastled`
|
128
113
|
|
129
|
-
### Pipx with Playwright Support
|
130
|
-
|
131
|
-
`pipx install "fastled[full]"`
|
132
|
-
|
133
114
|
### Executables
|
134
115
|
|
135
116
|
* Windows: https://github.com/zackees/fastled-wasm/releases/latest/download/fastled-windows-x64.zip
|
@@ -371,7 +352,7 @@ A: A big chunk of space is being used by unnecessary javascript `emscripten` bun
|
|
371
352
|
|
372
353
|
|
373
354
|
# Revisions
|
374
|
-
* 1.4.00 - Browser now uses playwright when `
|
355
|
+
* 1.4.00 - Browser now uses playwright when `--app` flag is used. Much better app like experience.
|
375
356
|
* 1.2.31 - Bunch of fixes and ease of use while compiling code in the repo.
|
376
357
|
* 1.2.22 - Prefer to use `live-server` from npm. If npm exists on the system then do a background install of `live-server` for next run.
|
377
358
|
* 1.2.20 - Fixed up path issue for web browser launch for hot reload.
|
@@ -1,12 +1,12 @@
|
|
1
|
-
fastled/__init__.py,sha256=
|
1
|
+
fastled/__init__.py,sha256=dahiY41HLLotTjqmpVJmXSwUEp8NKqoZ57jt55hBLa4,7667
|
2
2
|
fastled/__main__.py,sha256=OcKv2ER1_iQAsZzLIUb3C8hRC9L2clNOhCrjpshrlf4,336
|
3
|
-
fastled/__version__.py,sha256=
|
3
|
+
fastled/__version__.py,sha256=_2ywp7KhqGJZb6YoOQ07zDtMr2v_9j2-5miU6u4w6_c,372
|
4
4
|
fastled/app.py,sha256=6XOuObi72AUnZXASDOVbcSflr4He0xnIDk5P8nVmVus,6131
|
5
|
-
fastled/args.py,sha256=
|
5
|
+
fastled/args.py,sha256=d8Afa7NMcNLMIQqIBX_ZOL5JOyeJ7XCch4LdkhFNChk,3671
|
6
6
|
fastled/cli.py,sha256=drgR2AOxVrj3QEz58iiKscYAumbbin2vIV-k91VCOAA,561
|
7
7
|
fastled/cli_test.py,sha256=W-1nODZrip_JU6BEbYhxOa4ckxduOsiX8zIoRkTyxv4,550
|
8
8
|
fastled/cli_test_interactive.py,sha256=BjNhveZOk5aCffHbcrxPQQjWmAuj4ClVKKcKX5eY6yM,542
|
9
|
-
fastled/client_server.py,sha256=
|
9
|
+
fastled/client_server.py,sha256=H590e_FkoWlj7DX_SD0hEkbtoWJoG73MrHtzxEFvqnA,21441
|
10
10
|
fastled/compile_server.py,sha256=iGUjteXKp5Dlp7mxAE4eD4s0NWgApRIp4ZjtcAN2iZY,3124
|
11
11
|
fastled/compile_server_impl.py,sha256=iCwNCs7YxypUuVPmY4979mOgoH9OiuAJa1a1bmpG1cc,12567
|
12
12
|
fastled/docker_manager.py,sha256=rkq39ZKrU6NHIyDa3mzs0Unb6o9oMeAwxhqiuHJU_RY,40291
|
@@ -14,11 +14,11 @@ fastled/filewatcher.py,sha256=gEcJJHTDJ1X3gKJzltmEBhixWGbZj2eJD7a4vwSvITQ,10036
|
|
14
14
|
fastled/find_good_connection.py,sha256=xnrJjrbwNZUkvSQRn_ZTMoVh5GBWTbO-lEsr_L95xq8,3372
|
15
15
|
fastled/keyboard.py,sha256=UTAsqCn1UMYnB8YDzENiLTj4GeL45tYfEcO7_5fLFEg,3556
|
16
16
|
fastled/keyz.py,sha256=LO-8m_7CpNDiZLM-FXhQ30f9gN1bUYz5lOsUPTIbI-c,4020
|
17
|
-
fastled/live_client.py,sha256=
|
18
|
-
fastled/open_browser.py,sha256=
|
19
|
-
fastled/parse_args.py,sha256=
|
17
|
+
fastled/live_client.py,sha256=yp_ujG92EHYpSedGOUteuG2nQvMKbp1GbUpgQ6nU4Dc,3083
|
18
|
+
fastled/open_browser.py,sha256=xyUQmLL0D05AMyc3TIYUtFFLCeO7uBra8HeTnxAjcCQ,4847
|
19
|
+
fastled/parse_args.py,sha256=UiGgFoR_7ZCVC26rxE4FpxpmPu9xBhiiCD4pwmY_gLw,11520
|
20
20
|
fastled/paths.py,sha256=VsPmgu0lNSCFOoEC0BsTYzDygXqy15AHUfN-tTuzDZA,99
|
21
|
-
fastled/playwright_browser.py,sha256=
|
21
|
+
fastled/playwright_browser.py,sha256=2hHcVLSr3QkV3C-CWjmWXWKNDzychKbuQRHSXJA55Ms,22895
|
22
22
|
fastled/print_filter.py,sha256=nc_rqYYdCUPinFycaK7fiQF5PG1up51pmJptR__QyAs,1499
|
23
23
|
fastled/project_init.py,sha256=bBt4DwmW5hZkm9ICt9Qk-0Nr_0JQM7icCgH5Iv-bCQs,3984
|
24
24
|
fastled/select_sketch_directory.py,sha256=-eudwCns3AKj4HuHtSkZAFwbnf005SNL07pOzs9VxnE,1383
|
@@ -40,9 +40,9 @@ fastled/site/build.py,sha256=2YKU_UWKlJdGnjdbAbaL0co6kceFMSTVYwH1KCmgPZA,13987
|
|
40
40
|
fastled/site/examples.py,sha256=s6vj2zJc6BfKlnbwXr1QWY1mzuDBMt6j5MEBOWjO_U8,155
|
41
41
|
fastled/test/can_run_local_docker_tests.py,sha256=LEuUbHctRhNNFWcvnz2kEGmjDJeXO4c3kNpizm3yVJs,400
|
42
42
|
fastled/test/examples.py,sha256=GfaHeY1E8izBl6ZqDVjz--RHLyVR4NRnQ5pBesCFJFY,1673
|
43
|
-
fastled-1.4.
|
44
|
-
fastled-1.4.
|
45
|
-
fastled-1.4.
|
46
|
-
fastled-1.4.
|
47
|
-
fastled-1.4.
|
48
|
-
fastled-1.4.
|
43
|
+
fastled-1.4.8.dist-info/licenses/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
44
|
+
fastled-1.4.8.dist-info/METADATA,sha256=OtWn1uaXyCtBaTLs4HV7IVhMDcUWsxUYOboe50UXlXY,31909
|
45
|
+
fastled-1.4.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
46
|
+
fastled-1.4.8.dist-info/entry_points.txt,sha256=RCwmzCSOS4-C2i9EziANq7Z2Zb4KFnEMR1FQC0bBwAw,101
|
47
|
+
fastled-1.4.8.dist-info/top_level.txt,sha256=Bbv5kpJpZhWNCvDF4K0VcvtBSDMa8B7PTOrZa9CezHY,8
|
48
|
+
fastled-1.4.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|