2.5.0 #10

Merged
rune merged 41 commits from 2.5.0 into main 2026-08-03 08:33:23 +02:00
2 changed files with 16 additions and 2 deletions
Showing only changes of commit 03f84ebe01 - Show all commits
+8 -1
View File
@@ -230,7 +230,14 @@ struct SidebarView: View {
? Color.oaiAccent.opacity(0.15)
: Color.clear
)
.draggable(conversation.id.uuidString)
.draggable(conversation.id.uuidString) {
Text(conversation.name)
.font(.system(size: 13, weight: .medium))
.foregroundStyle(.white)
.padding(.horizontal, 10)
.padding(.vertical, 6)
.background(Color.oaiAccent, in: RoundedRectangle(cornerRadius: 6))
}
.swipeActions(edge: .trailing, allowsFullSwipe: false) {
Button(role: .destructive) {
deleteConversation(conversation)
+8 -1
View File
@@ -348,7 +348,14 @@ struct ConversationListView: View {
: Color.clear
)
.id(conversation.id)
.draggable(conversation.id.uuidString)
.draggable(conversation.id.uuidString) {
Text(conversation.name)
.font(.system(size: 13, weight: .medium))
.foregroundStyle(.white)
.padding(.horizontal, 10)
.padding(.vertical, 6)
.background(Color.oaiAccent, in: RoundedRectangle(cornerRadius: 6))
}
.swipeActions(edge: .trailing, allowsFullSwipe: false) {
Button(role: .destructive) {
deleteConversation(conversation)