diff --git a/freqtrade/commands/deploy_ui.py b/freqtrade/commands/deploy_ui.py index ca4252aae..772f9f77d 100644 --- a/freqtrade/commands/deploy_ui.py +++ b/freqtrade/commands/deploy_ui.py @@ -12,7 +12,7 @@ req_timeout = 30 def clean_ui_subdir(directory: Path): if directory.is_dir(): - logger.info("Removing UI directory content.") + logger.info("Removing Freqtrade - Crypto P Edition UI directory content.") for p in reversed(list(directory.glob("**/*"))): # iterate contents from leaves to root if p.name in (".gitkeep", "fallback_file.html"): @@ -60,7 +60,9 @@ def download_and_install_ui(dest_folder: Path, dl_url: str, version: str): TimeRemainingColumn(), transient=True, ) as progress: - task = progress.add_task("Downloading FreqUI...", total=total_length) + task = progress.add_task( + "Downloading Freqtrade - Crypto P Edition UI...", total=total_length + ) for chunk in resp.iter_content(chunk_size=8192): if chunk: @@ -84,7 +86,9 @@ def download_and_install_ui(dest_folder: Path, dl_url: str, version: str): console = get_rich_console() console.print() - console.print(f"[bold green]✅ FreqUI {version} installed successfully![/bold green]") + console.print( + f"[bold green]✅ Freqtrade - Crypto P Edition UI {version} installed successfully![/bold green]" + ) console.print(f"Installed to: [bold]{dest_folder}[/bold]") console.print("\n[bold]Next steps:[/bold]") console.print("1. Restart your bot to load the new UI.") diff --git a/freqtrade/main.py b/freqtrade/main.py index 6720e5eeb..fe25ad318 100755 --- a/freqtrade/main.py +++ b/freqtrade/main.py @@ -47,14 +47,14 @@ def main(sysargv: list[str] | None = None) -> None: print_version_info() return_code = 0 elif "func" in args: - logger.info(f"freqtrade {__version__}") + logger.info(f"Freqtrade - Crypto P Edition {__version__}") gc_set_threshold() set_mp_start_method() return_code = args["func"](args) else: # No subcommand was issued. raise OperationalException( - "Usage of Freqtrade requires a subcommand to be specified.\n" + "Usage of Freqtrade - Crypto P Edition requires a subcommand to be specified.\n" "To have the bot executing trades in live/dry-run modes, " "depending on the value of the `dry_run` setting in the config, run Freqtrade " "as `freqtrade trade [options...]`.\n" diff --git a/freqtrade/rpc/api_server/ui/fallback_file.html b/freqtrade/rpc/api_server/ui/fallback_file.html index a164dc05a..5f4f32a5b 100644 --- a/freqtrade/rpc/api_server/ui/fallback_file.html +++ b/freqtrade/rpc/api_server/ui/fallback_file.html @@ -3,7 +3,7 @@ - Freqtrade - UI Not Installed + Freqtrade - Crypto P Edition - UI Not Installed