From 0b11c63eba87edab378e5dbf8549aa0cf2ab7e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Dudzi=C5=84ski?= Date: Mon, 6 Apr 2026 19:04:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Added=20link=20fallbacks=20in=20?= =?UTF-8?q?main=20cli=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tiddl/cli/app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tiddl/cli/app.py b/tiddl/cli/app.py index 603637d..1f1421b 100644 --- a/tiddl/cli/app.py +++ b/tiddl/cli/app.py @@ -33,8 +33,8 @@ def callback( """ tiddl - download tidal tracks \u266b - [link=https://github.com/oskvr37/tiddl]github[/link] - [link=https://buymeacoffee.com/oskvr][yellow]buy me a coffee[/link] \u2764 + [link=https://github.com/oskvr37/tiddl]github (https://github.com/oskvr37/tiddl)[/link] + [link=https://buymeacoffee.com/oskvr][yellow]buy me a coffee (https://buymeacoffee.com/oskvr)[/link] """ log.debug(f"{ctx.params=}") @@ -54,5 +54,5 @@ def callback( if not is_ffmpeg_installed: ctx.obj.console.print( "[yellow]WARNING ffmpeg is not installed, tiddl might not work properly, " - + "[link=https://github.com/oskvr37/tiddl/blob/main/README.md#installation]read README.md[/]" + + "[link=https://github.com/oskvr37/tiddl/blob/main/README.md#installation]read README.md (https://github.com/oskvr37/tiddl/blob/main/README.md#installation)[/]" )