fix: remove @ symbol from changelog entries to avoid vue-i18n parse errors

The @ symbol is a special character in vue-i18n (used for linked formats).
Removing it from all changelog entries fixes:
- Chinese: @mention → mention
- English: @mention → mention
- All other languages: @mention → mention

This resolves the SyntaxError in message compilation.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ekko
2026-05-06 16:42:29 +08:00
parent 1de704b486
commit e6af126f9f
8 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -792,7 +792,7 @@ export default {
changelog: {
new_0_5_12_1: 'Add batch session deletion: checkbox multi-select, select all, and batch delete for improved session management',
new_0_5_12_2: 'Add visual context length editor: click token count to open edit modal with custom limit support',
new_0_5_12_3: 'Fix group chat @mention keyboard selection: replace NDropdown with custom dropdown supporting keyboard navigation and scroll following',
new_0_5_12_3: 'Fix group chat mention keyboard selection: replace NDropdown with custom dropdown supporting keyboard navigation and scroll following',
new_0_5_12_4: 'Add chat completion sound: auto-play toggle for better user experience',
new_0_5_12_5: 'Improve chat message display: filter empty assistant messages and better history/compression logic',
new_0_5_12_6: 'Improve update mechanism: use npm prefix -g for dynamic path resolution supporting Homebrew and non-standard Node.js installations',