fastled 1.1.2__py2.py3-none-any.whl → 1.1.3__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.
- fastled/app.py +1 -3
- fastled/compile_server.py +5 -1
- {fastled-1.1.2.dist-info → fastled-1.1.3.dist-info}/METADATA +2 -1
- {fastled-1.1.2.dist-info → fastled-1.1.3.dist-info}/RECORD +8 -8
- {fastled-1.1.2.dist-info → fastled-1.1.3.dist-info}/LICENSE +0 -0
- {fastled-1.1.2.dist-info → fastled-1.1.3.dist-info}/WHEEL +0 -0
- {fastled-1.1.2.dist-info → fastled-1.1.3.dist-info}/entry_points.txt +0 -0
- {fastled-1.1.2.dist-info → fastled-1.1.3.dist-info}/top_level.txt +0 -0
fastled/app.py
CHANGED
@@ -159,9 +159,7 @@ def run_web_compiler(
|
|
159
159
|
|
160
160
|
# now check to see if the hash value is the same as the last hash value
|
161
161
|
if last_hash_value is not None and last_hash_value == web_result.hash_value:
|
162
|
-
print(
|
163
|
-
"\nNo significant source code changes detected and data was the same, skipping recompilation."
|
164
|
-
)
|
162
|
+
print("\nSkipping redeploy: No significant changes found.")
|
165
163
|
print_results()
|
166
164
|
return CompiledResult(
|
167
165
|
success=True, fastled_js=str(output_dir), hash_value=web_result.hash_value
|
fastled/compile_server.py
CHANGED
@@ -154,7 +154,11 @@ class CompileServer:
|
|
154
154
|
str(self.fastled_src_dir): {"bind": "/js/fastled/src", "mode": "rw"}
|
155
155
|
}
|
156
156
|
# no auto-update because the source directory is mapped in.
|
157
|
-
server_command.append("--no-auto-update")
|
157
|
+
server_command.append("--no-auto-update") # stop git repo updates.
|
158
|
+
if not self.interactive:
|
159
|
+
server_command.append(
|
160
|
+
"--no-sketch-cache"
|
161
|
+
) # Remove sketch cache which assumes src is static.
|
158
162
|
self.running_process = self.docker.run_container(
|
159
163
|
server_command, ports=ports, volumes=volumes
|
160
164
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fastled
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.3
|
4
4
|
Summary: FastLED Wasm Compiler
|
5
5
|
Home-page: https://github.com/zackees/fastled-wasm
|
6
6
|
Maintainer: Zachary Vorhies
|
@@ -91,6 +91,7 @@ provide shims for most of the common api points.
|
|
91
91
|
|
92
92
|
# Revisions
|
93
93
|
|
94
|
+
* 1.1.3 - Live editing of *.h and *.cpp files is now possible. Sketch cache will be disabled in this mode.
|
94
95
|
* 1.1.2 - `--server` will now volume map fastled src directory if it detects this. This was also implemented on the docker side.
|
95
96
|
* 1.1.1 - `--interactive` is now supported to debug the container. Volume maps and better compatibilty with ipv4/v6 by concurrent connection finding.
|
96
97
|
* 1.1.0 - Use `fastled` as the command for the wasm compiler.
|
@@ -1,18 +1,18 @@
|
|
1
1
|
fastled/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
fastled/app.py,sha256=
|
2
|
+
fastled/app.py,sha256=duSkE31cggy363rFZRHjKIzc0ijCA_TmmPXOLAj-jEM,13560
|
3
3
|
fastled/build_mode.py,sha256=joMwsV4K1y_LijT4gEAcjx69RZBoe_KmFmHZdPYbL_4,631
|
4
4
|
fastled/check_cpp_syntax.py,sha256=YxRJm7cFPv4bdhL1v_KOkBz8RL86ihayoJYvclr69ms,1024
|
5
5
|
fastled/cli.py,sha256=CNR_pQR0sNVPNuv8e_nmm-0PI8sU-eUBUgnWgWkzW9c,237
|
6
|
-
fastled/compile_server.py,sha256=
|
6
|
+
fastled/compile_server.py,sha256=QqxTWYmC_Fej-hTNRjfa8qjyGusLY6L858zwTciC9AM,9903
|
7
7
|
fastled/docker_manager.py,sha256=WcOKa3EpIPAjICPfTL87CUYuAmX9KYT6L_Hcqbj95eE,9028
|
8
8
|
fastled/filewatcher.py,sha256=SHKx9Dnt4EJiT-iPYakdPZBRIL1gsJGN9tY8FJW2myU,5079
|
9
9
|
fastled/open_browser.py,sha256=-VhpGmydwLCcXmrDD2esMEdJPZYcoX2Mt73eb88Nna0,1392
|
10
10
|
fastled/paths.py,sha256=VsPmgu0lNSCFOoEC0BsTYzDygXqy15AHUfN-tTuzDZA,99
|
11
11
|
fastled/web_compile.py,sha256=rCMClX8yUtZlAzrgFB-r5Pdt7l9TJWhHXe-u99Hmdvw,8257
|
12
12
|
fastled/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
13
|
-
fastled-1.1.
|
14
|
-
fastled-1.1.
|
15
|
-
fastled-1.1.
|
16
|
-
fastled-1.1.
|
17
|
-
fastled-1.1.
|
18
|
-
fastled-1.1.
|
13
|
+
fastled-1.1.3.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
14
|
+
fastled-1.1.3.dist-info/METADATA,sha256=C2OkZwJd57L96Gauxz_CZKMmk7bmNlv_VhvghbFdMD8,5687
|
15
|
+
fastled-1.1.3.dist-info/WHEEL,sha256=0VNUDWQJzfRahYI3neAhz2UVbRCtztpN5dPHAGvmGXc,109
|
16
|
+
fastled-1.1.3.dist-info/entry_points.txt,sha256=RCwmzCSOS4-C2i9EziANq7Z2Zb4KFnEMR1FQC0bBwAw,101
|
17
|
+
fastled-1.1.3.dist-info/top_level.txt,sha256=xfG6Z_ol9V5YmBROkZq2QTRwjbS2ouCUxaTJsOwfkOo,14
|
18
|
+
fastled-1.1.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|