Use secured bitly

This commit is contained in:
Ivan Kravets
2021-10-25 20:25:23 +03:00
parent 67506511c3
commit 1dd0635e5e
7 changed files with 8 additions and 8 deletions

2
docs

Submodule docs updated: 63ab8589a7...c07845a1c8

View File

@ -64,7 +64,7 @@ DEFAULT_SETTINGS = {
"value": True, "value": True,
}, },
"enable_telemetry": { "enable_telemetry": {
"description": ("Telemetry service <http://bit.ly/pio-telemetry> (Yes/No)"), "description": ("Telemetry service <https://bit.ly/pio-telemetry> (Yes/No)"),
"value": True, "value": True,
}, },
"force_verbose": { "force_verbose": {

View File

@ -1095,7 +1095,7 @@ def ConfigureProjectLibBuilder(env):
project = ProjectAsLibBuilder(env, "$PROJECT_DIR") project = ProjectAsLibBuilder(env, "$PROJECT_DIR")
ldf_mode = LibBuilderBase.lib_ldf_mode.fget(project) # pylint: disable=no-member 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( click.echo(
"LDF Modes: Finder ~ %s, Compatibility ~ %s" "LDF Modes: Finder ~ %s, Compatibility ~ %s"
% (ldf_mode, project.lib_compat_mode) % (ldf_mode, project.lib_compat_mode)

View File

@ -238,7 +238,7 @@ def device_monitor(**kwargs): # pylint: disable=too-many-branches
"--- Available filters and text transformations: %s" "--- Available filters and text transformations: %s"
% ", ".join(sorted(miniterm.TRANSFORMATIONS.keys())) % ", ".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: try:
miniterm.main( miniterm.main(
default_port=kwargs["port"], default_port=kwargs["port"],

View File

@ -98,7 +98,7 @@ class GDBClientProcess(DebugClientProcess):
] ]
banner = [ 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: debug_tool = %s\\n" % self.debug_config.tool_name,
"echo PlatformIO: Initializing remote target...\\n", "echo PlatformIO: Initializing remote target...\\n",
] ]
@ -157,7 +157,7 @@ class GDBClientProcess(DebugClientProcess):
% self.debug_config.init_break % self.debug_config.init_break
) )
self.console_log( 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(): if self.debug_config.platform.is_embedded():
self.transport.get_pipe_transport(0).write( self.transport.get_pipe_transport(0).write(

View File

@ -76,7 +76,7 @@ class PackageManagerDownloadMixin(object):
raise_error = True raise_error = True
if raise_error: if raise_error:
self.print_message( self.print_message(
"Error: Please read http://bit.ly/package-manager-ioerror", "Error: Please read https://bit.ly/package-manager-ioerror",
fg="red", fg="red",
err=True, err=True,
) )

View File

@ -27,7 +27,7 @@ class ExtractArchiveItemError(PackageException):
MESSAGE = ( MESSAGE = (
"Could not extract `{0}` to `{1}`. Try to disable antivirus " "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"
) )