diff --git a/.changeset/witty-cabin.md b/.changeset/witty-cabin.md index 59daff5dd11..47dbc193d64 100644 --- a/.changeset/witty-cabin.md +++ b/.changeset/witty-cabin.md @@ -1,5 +1,5 @@ --- -"kilo-code": minor +"@kilocode/kilo-jetbrains": patch --- Show running badges on active sessions in JetBrains recent and history lists. diff --git a/packages/kilo-jetbrains/frontend/src/main/kotlin/ai/kilocode/client/app/KiloSessionService.kt b/packages/kilo-jetbrains/frontend/src/main/kotlin/ai/kilocode/client/app/KiloSessionService.kt index 87d1a05c747..c5361a38724 100644 --- a/packages/kilo-jetbrains/frontend/src/main/kotlin/ai/kilocode/client/app/KiloSessionService.kt +++ b/packages/kilo-jetbrains/frontend/src/main/kotlin/ai/kilocode/client/app/KiloSessionService.kt @@ -235,5 +235,3 @@ class KiloSessionService internal constructor( suspend fun pendingQuestions(dir: String): List = call { pendingQuestions(dir) } } - -private infix fun Set.xor(other: Set): Set = (this - other) + (other - this)