From 1dd0635e5e2785bfab5788c7e478f12ee221ca23 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 25 Oct 2021 20:25:23 +0300 Subject: [PATCH] Use secured bitly --- docs | 2 +- platformio/app.py | 2 +- platformio/builder/tools/piolib.py | 2 +- platformio/commands/device/command.py | 2 +- platformio/debug/process/gdb.py | 4 ++-- platformio/package/manager/_download.py | 2 +- platformio/package/unpack.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs b/docs index 63ab8589..c07845a1 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 63ab8589a7edd9aa82b71fecb7270e2ed53d7652 +Subproject commit c07845a1c810c318551ebe42af6395c3eed9d0bd diff --git a/platformio/app.py b/platformio/app.py index 845d7e81..d6930a47 100644 --- a/platformio/app.py +++ b/platformio/app.py @@ -64,7 +64,7 @@ DEFAULT_SETTINGS = { "value": True, }, "enable_telemetry": { - "description": ("Telemetry service (Yes/No)"), + "description": ("Telemetry service (Yes/No)"), "value": True, }, "force_verbose": { diff --git a/platformio/builder/tools/piolib.py b/platformio/builder/tools/piolib.py index bdebf6ab..588238b8 100644 --- a/platformio/builder/tools/piolib.py +++ b/platformio/builder/tools/piolib.py @@ -1095,7 +1095,7 @@ def ConfigureProjectLibBuilder(env): project = ProjectAsLibBuilder(env, "$PROJECT_DIR") ldf_mode = LibBuilderBase.lib_ldf_mode.fget(project) # pylint: disable=no-member - click.echo("LDF: Library Dependency Finder -> http://bit.ly/configure-pio-ldf") + click.echo("LDF: Library Dependency Finder -> https://bit.ly/configure-pio-ldf") click.echo( "LDF Modes: Finder ~ %s, Compatibility ~ %s" % (ldf_mode, project.lib_compat_mode) diff --git a/platformio/commands/device/command.py b/platformio/commands/device/command.py index 1cf0b265..c3941cb8 100644 --- a/platformio/commands/device/command.py +++ b/platformio/commands/device/command.py @@ -238,7 +238,7 @@ def device_monitor(**kwargs): # pylint: disable=too-many-branches "--- Available filters and text transformations: %s" % ", ".join(sorted(miniterm.TRANSFORMATIONS.keys())) ) - click.echo("--- More details at http://bit.ly/pio-monitor-filters") + click.echo("--- More details at https://bit.ly/pio-monitor-filters") try: miniterm.main( default_port=kwargs["port"], diff --git a/platformio/debug/process/gdb.py b/platformio/debug/process/gdb.py index 079b8b53..ed8483bb 100644 --- a/platformio/debug/process/gdb.py +++ b/platformio/debug/process/gdb.py @@ -98,7 +98,7 @@ class GDBClientProcess(DebugClientProcess): ] banner = [ - "echo PlatformIO Unified Debugger -> http://bit.ly/pio-debug\\n", + "echo PlatformIO Unified Debugger -> https://bit.ly/pio-debug\\n", "echo PlatformIO: debug_tool = %s\\n" % self.debug_config.tool_name, "echo PlatformIO: Initializing remote target...\\n", ] @@ -157,7 +157,7 @@ class GDBClientProcess(DebugClientProcess): % self.debug_config.init_break ) self.console_log( - "PlatformIO: More configuration options -> http://bit.ly/pio-debug\n" + "PlatformIO: More configuration options -> https://bit.ly/pio-debug\n" ) if self.debug_config.platform.is_embedded(): self.transport.get_pipe_transport(0).write( diff --git a/platformio/package/manager/_download.py b/platformio/package/manager/_download.py index 4039568b..f48be79b 100644 --- a/platformio/package/manager/_download.py +++ b/platformio/package/manager/_download.py @@ -76,7 +76,7 @@ class PackageManagerDownloadMixin(object): raise_error = True if raise_error: self.print_message( - "Error: Please read http://bit.ly/package-manager-ioerror", + "Error: Please read https://bit.ly/package-manager-ioerror", fg="red", err=True, ) diff --git a/platformio/package/unpack.py b/platformio/package/unpack.py index 6bbbef63..f9e68ff8 100644 --- a/platformio/package/unpack.py +++ b/platformio/package/unpack.py @@ -27,7 +27,7 @@ class ExtractArchiveItemError(PackageException): MESSAGE = ( "Could not extract `{0}` to `{1}`. Try to disable antivirus " - "tool or check this solution -> http://bit.ly/faq-package-manager" + "tool or check this solution -> https://bit.ly/faq-package-manager" )