fastled 1.0.17__py2.py3-none-any.whl → 1.1.0__py2.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.
{fled → fastled}/app.py RENAMED
@@ -15,12 +15,12 @@ import time
15
15
  from dataclasses import dataclass
16
16
  from pathlib import Path
17
17
 
18
- from fled.build_mode import BuildMode, get_build_mode
19
- from fled.compile_server import CompileServer
20
- from fled.docker_manager import DockerManager
21
- from fled.filewatcher import FileChangedNotifier
22
- from fled.open_browser import open_browser_thread
23
- from fled.web_compile import web_compile
18
+ from fastled.build_mode import BuildMode, get_build_mode
19
+ from fastled.compile_server import CompileServer
20
+ from fastled.docker_manager import DockerManager
21
+ from fastled.filewatcher import FileChangedNotifier
22
+ from fastled.open_browser import open_browser_thread
23
+ from fastled.web_compile import web_compile
24
24
 
25
25
  machine = platform.machine().lower()
26
26
  IS_ARM: bool = "arm" in machine or "aarch64" in machine
{fled → fastled}/cli.py RENAMED
@@ -4,7 +4,7 @@ Main entry point.
4
4
 
5
5
  import sys
6
6
 
7
- from fled.app import main as app_main
7
+ from fastled.app import main as app_main
8
8
 
9
9
 
10
10
  def main() -> int:
@@ -6,7 +6,7 @@ from typing import Optional
6
6
 
7
7
  import httpx
8
8
 
9
- from fled.docker_manager import DockerManager
9
+ from fastled.docker_manager import DockerManager
10
10
 
11
11
  _DEFAULT_CONTAINER_NAME = "fastled-wasm-compiler"
12
12
 
@@ -5,7 +5,7 @@ from pathlib import Path
5
5
 
6
6
  import httpx
7
7
 
8
- from fled.build_mode import BuildMode
8
+ from fastled.build_mode import BuildMode
9
9
 
10
10
  DEFAULT_HOST = "https://fastled.onrender.com"
11
11
  ENDPOINT_COMPILED_WASM = "compile/wasm"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastled
3
- Version: 1.0.17
3
+ Version: 1.1.0
4
4
  Summary: FastLED Wasm Compiler
5
5
  Home-page: https://github.com/zackees/fastled-wasm
6
6
  Maintainer: Zachary Vorhies
@@ -92,6 +92,7 @@ provide shims for most of the common api points.
92
92
 
93
93
  # Revisions
94
94
 
95
+ * 1.1.0 - Use `fastled` as the command for the wasm compiler.
95
96
  * 1.0.17 - Pulls updates when necessary. Removed dependency on keyring.
96
97
  * 1.0.16 - `fastled-wasm` package name has been changed to `fled`
97
98
  * 1.0.15 - `fled` is an alias of `fastled-wasm` and will eventually replace it. `--web-host` was folded into `--web`, which if unspecified will attempt to run a local docker server and fallback to the cloud server if that fails. Specifying `--web` with no arguments will default to the cloud server while an argument (like `localhost`) will cause it to bind to that already running server for compilation.
@@ -0,0 +1,18 @@
1
+ fastled/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ fastled/app.py,sha256=N4a-XXteQMTmODxRmEuicUuXKyfP9OS6rGxT36aVAWs,11380
3
+ fastled/build_mode.py,sha256=joMwsV4K1y_LijT4gEAcjx69RZBoe_KmFmHZdPYbL_4,631
4
+ fastled/check_cpp_syntax.py,sha256=YxRJm7cFPv4bdhL1v_KOkBz8RL86ihayoJYvclr69ms,1024
5
+ fastled/cli.py,sha256=CNR_pQR0sNVPNuv8e_nmm-0PI8sU-eUBUgnWgWkzW9c,237
6
+ fastled/compile_server.py,sha256=_tpHpOgxcizgb9Lis8RVTDsLKLtCaaH3upVH65z0XhA,7994
7
+ fastled/docker_manager.py,sha256=eEc12bmQEER7xf-7ehfYJgQua9cDB1IlLVuuw_9eflI,8934
8
+ fastled/filewatcher.py,sha256=SHKx9Dnt4EJiT-iPYakdPZBRIL1gsJGN9tY8FJW2myU,5079
9
+ fastled/open_browser.py,sha256=-VhpGmydwLCcXmrDD2esMEdJPZYcoX2Mt73eb88Nna0,1392
10
+ fastled/paths.py,sha256=VsPmgu0lNSCFOoEC0BsTYzDygXqy15AHUfN-tTuzDZA,99
11
+ fastled/web_compile.py,sha256=xHy4ndEy5Xr5-WCINFrgvPgfk7XPm5_MhveiOElJKb0,6372
12
+ fastled/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
13
+ fastled-1.1.0.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
14
+ fastled-1.1.0.dist-info/METADATA,sha256=C5bl7UjYlsgO2a-Xf6qi9-Dwcg6ctrYWlhZMB86GSSs,5294
15
+ fastled-1.1.0.dist-info/WHEEL,sha256=0VNUDWQJzfRahYI3neAhz2UVbRCtztpN5dPHAGvmGXc,109
16
+ fastled-1.1.0.dist-info/entry_points.txt,sha256=RCwmzCSOS4-C2i9EziANq7Z2Zb4KFnEMR1FQC0bBwAw,101
17
+ fastled-1.1.0.dist-info/top_level.txt,sha256=xfG6Z_ol9V5YmBROkZq2QTRwjbS2ouCUxaTJsOwfkOo,14
18
+ fastled-1.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ fastled = fastled.cli:main
3
+ fastled-wasm = fastled.cli:main
4
+ fled = fastled.cli:main
@@ -0,0 +1,2 @@
1
+ cache
2
+ fastled
@@ -1,18 +0,0 @@
1
- fled/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- fled/app.py,sha256=EwP7CrMT7cEmc4A-rIEN7uEC77k6NFPATT2zkyMSKcY,11362
3
- fled/build_mode.py,sha256=joMwsV4K1y_LijT4gEAcjx69RZBoe_KmFmHZdPYbL_4,631
4
- fled/check_cpp_syntax.py,sha256=YxRJm7cFPv4bdhL1v_KOkBz8RL86ihayoJYvclr69ms,1024
5
- fled/cli.py,sha256=g2oXoJAmpUYEgXCLVzu0fekJjgWhuLCpXmCkl8kvCQI,234
6
- fled/compile_server.py,sha256=Hj2Hem4M4cD2NkdRwZj5q4Y6vdonnpaRk2pAWSwnsC8,7991
7
- fled/docker_manager.py,sha256=eEc12bmQEER7xf-7ehfYJgQua9cDB1IlLVuuw_9eflI,8934
8
- fled/filewatcher.py,sha256=SHKx9Dnt4EJiT-iPYakdPZBRIL1gsJGN9tY8FJW2myU,5079
9
- fled/open_browser.py,sha256=-VhpGmydwLCcXmrDD2esMEdJPZYcoX2Mt73eb88Nna0,1392
10
- fled/paths.py,sha256=VsPmgu0lNSCFOoEC0BsTYzDygXqy15AHUfN-tTuzDZA,99
11
- fled/web_compile.py,sha256=9_TJ_R8Iv6WTbLvZ_nVNrpfWPWBanhXbi8l_O-ADyCM,6369
12
- fled/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
13
- fastled-1.0.17.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
14
- fastled-1.0.17.dist-info/METADATA,sha256=-J_L3EyUBKaEezj59c8kN7XdfGbTiApo0WA1urjHnSE,5230
15
- fastled-1.0.17.dist-info/WHEEL,sha256=0VNUDWQJzfRahYI3neAhz2UVbRCtztpN5dPHAGvmGXc,109
16
- fastled-1.0.17.dist-info/entry_points.txt,sha256=aw_M3Wl5jLJEJm0wlVD3Hr0cDqILc9frPbKeJfdNqyM,68
17
- fastled-1.0.17.dist-info/top_level.txt,sha256=QuCwo_EQ7IOcAlszLUCg8n-oQZey7zyCyH3yShSLwcQ,11
18
- fastled-1.0.17.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- fastled-wasm = fled.cli:main
3
- fled = fled.cli:main
@@ -1,2 +0,0 @@
1
- cache
2
- fled
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes