From e4e67843b92fc7f79f14910016339bb81779bf08 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Mon, 6 Jan 2025 17:37:48 +0100 Subject: [PATCH 1/2] Update check community message --- cursorless-talon/src/check_community_repo.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cursorless-talon/src/check_community_repo.py b/cursorless-talon/src/check_community_repo.py index 4338af21ce..04f88d19df 100644 --- a/cursorless-talon/src/check_community_repo.py +++ b/cursorless-talon/src/check_community_repo.py @@ -26,9 +26,10 @@ def on_ready(): if missing_actions: errors.append(f"Missing actions: {', '.join(missing_actions)}") if errors: - print("\n".join(errors)) + message = "\n".join(errors) + print(f"Cursorless: {message}") app.notify( - "Please install the community repository", + "Cursorless: Please install the community repository", body="https://github.com/talonhub/community", ) From 967491de7ffb47f913887c088698840f0c770e64 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Mon, 6 Jan 2025 18:03:16 +0100 Subject: [PATCH 2/2] Update message --- cursorless-talon/src/check_community_repo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cursorless-talon/src/check_community_repo.py b/cursorless-talon/src/check_community_repo.py index 04f88d19df..ef776de3ae 100644 --- a/cursorless-talon/src/check_community_repo.py +++ b/cursorless-talon/src/check_community_repo.py @@ -26,8 +26,8 @@ def on_ready(): if missing_actions: errors.append(f"Missing actions: {', '.join(missing_actions)}") if errors: - message = "\n".join(errors) - print(f"Cursorless: {message}") + print("Cursorless community requirements:") + print("\n".join(errors)) app.notify( "Cursorless: Please install the community repository", body="https://github.com/talonhub/community",