diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f2fecf..ed807bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to Semantic Calendar Versioning with format YYYY.MM.DD. ## [Unreleased] +### Changed +- **Bot Messages**: Updated task start confirmation to use proper British Army Voice Procedure + - Changed "Roger that!" to "Roger!" (single word affirmative as per military radio protocol) + ### Fixed - **Build and Release Workflow**: Fixed multiple critical build failures - Updated Nuitka Action to use `mode=onefile` instead of deprecated `onefile/standalone` options diff --git a/chatrixcd/messages.py b/chatrixcd/messages.py index 71b2ce2..438a34f 100644 --- a/chatrixcd/messages.py +++ b/chatrixcd/messages.py @@ -68,7 +68,7 @@ 'task_start': [ "On it! Starting **{task_name}**... 🚀 Let's make some magic happen!", "Here we go! Running **{task_name}**... 🏃 Hold onto your keyboards!", - "Roger that! Executing **{task_name}**... 🫡 This is gonna be good!", + "Roger! Executing **{task_name}**... 🫡 This is gonna be good!", "Yes boss! Starting **{task_name}**... 💪 Watch me work!", "Doing it now! **{task_name}** is launching... 🎯 No pressure or anything!", "Let's go! **{task_name}** starting up... ⚡ Time to show off!", diff --git a/messages.json.example b/messages.json.example index 60d412c..8f11c11 100644 --- a/messages.json.example +++ b/messages.json.example @@ -60,7 +60,7 @@ "task_start": [ "On it! Starting **{task_name}**... 🚀 Let's make some magic happen!", "Here we go! Running **{task_name}**... 🏃 Hold onto your keyboards!", - "Roger that! Executing **{task_name}**... 🫡 This is gonna be good!", + "Roger! Executing **{task_name}**... 🫡 This is gonna be good!", "Yes boss! Starting **{task_name}**... 💪 Watch me work!", "Doing it now! **{task_name}** is launching... 🎯 No pressure or anything!", "Let's go! **{task_name}** starting up... ⚡ Time to show off!",