fastled 1.3.13__py3-none-any.whl → 1.3.15__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/__version__.py +1 -1
- fastled/app.py +177 -177
- fastled/client_server.py +519 -519
- fastled/compile_server_impl.py +3 -4
- fastled/docker_manager.py +1068 -1068
- fastled/open_browser.py +137 -137
- fastled/parse_args.py +301 -301
- fastled/print_filter.py +247 -247
- fastled/project_init.py +129 -129
- fastled/site/build.py +449 -449
- fastled/string_diff.py +82 -82
- fastled/util.py +11 -6
- fastled/version.py +41 -41
- {fastled-1.3.13.dist-info → fastled-1.3.15.dist-info}/METADATA +477 -473
- {fastled-1.3.13.dist-info → fastled-1.3.15.dist-info}/RECORD +19 -19
- {fastled-1.3.13.dist-info → fastled-1.3.15.dist-info}/WHEEL +1 -1
- {fastled-1.3.13.dist-info → fastled-1.3.15.dist-info}/entry_points.txt +0 -0
- {fastled-1.3.13.dist-info → fastled-1.3.15.dist-info}/licenses/LICENSE +0 -0
- {fastled-1.3.13.dist-info → fastled-1.3.15.dist-info}/top_level.txt +0 -0
fastled/compile_server_impl.py
CHANGED
@@ -18,7 +18,7 @@ from fastled.docker_manager import (
|
|
18
18
|
from fastled.settings import DEFAULT_CONTAINER_NAME, IMAGE_NAME, SERVER_PORT
|
19
19
|
from fastled.sketch import looks_like_fastled_repo
|
20
20
|
from fastled.types import BuildMode, CompileResult, CompileServerError
|
21
|
-
from fastled.util import port_is_free
|
21
|
+
from fastled.util import port_is_free, print_banner
|
22
22
|
|
23
23
|
SERVER_OPTIONS = [
|
24
24
|
"--allow-shutdown", # Allow the server to be shut down without a force kill.
|
@@ -221,9 +221,8 @@ class CompileServerImpl:
|
|
221
221
|
ports = {INTERNAL_DOCKER_PORT: port}
|
222
222
|
volumes = []
|
223
223
|
if self.fastled_src_dir:
|
224
|
-
|
225
|
-
|
226
|
-
)
|
224
|
+
msg = f"FastLED REPO updates enabled!!\n\nMounting FastLED source directory\n{self.fastled_src_dir} into container\n/host/fastled/src"
|
225
|
+
print_banner(msg)
|
227
226
|
volumes.append(
|
228
227
|
Volume(
|
229
228
|
host_path=str(self.fastled_src_dir),
|