feat: 支持自定义引用消息样式

允许用户在设置中切换引用消息与正文的上下顺序,并使聊天页中的引用回复即时按所选样式展示。
  Close#510
This commit is contained in:
姜北尘
2026-03-21 22:26:09 +08:00
parent d16423818d
commit f8e99a34c7
6 changed files with 276 additions and 27 deletions

View File

@@ -53,6 +53,7 @@ interface ConfigSchema {
notificationFilterList: string[]
messagePushEnabled: boolean
windowCloseBehavior: 'ask' | 'tray' | 'quit'
quoteLayout: 'quote-top' | 'quote-bottom'
wordCloudExcludeWords: string[]
}
@@ -120,6 +121,7 @@ export class ConfigService {
notificationFilterList: [],
messagePushEnabled: false,
windowCloseBehavior: 'ask',
quoteLayout: 'quote-top',
wordCloudExcludeWords: []
}