Skip to content

Commit cac7530

Browse files
authored
Merge pull request #100 from grimmerk/style/remove-title-quotes
style: remove quotes around custom session titles
2 parents 95a93e6 + f6a853e commit cac7530

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.65
4+
5+
- Style: remove quotes around custom session titles (color already distinguishes them)
6+
37
## 1.0.64
48

59
- Feat: show last assistant response for all sessions (not just active)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "CodeV",
33
"productName": "CodeV",
4-
"version": "1.0.64",
4+
"version": "1.0.65",
55
"description": "Quick switcher for VS Code, Cursor, and Claude Code sessions",
66
"repository": {
77
"type": "git",

src/switcher-ui.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ function SwitcherApp() {
10021002
</span>
10031003
{customTitles[session.sessionId] && (
10041004
<span style={{ color: '#7ec87e', fontSize: '13px', fontWeight: '500' }}>
1005-
{' '}· "<Highlighter
1005+
{' '}· <Highlighter
10061006
searchWords={sessionSearchValue.split(/\s+/).filter(Boolean)}
10071007
textToHighlight={customTitles[session.sessionId].slice(0, 35)}
10081008
highlightStyle={{
@@ -1011,7 +1011,7 @@ function SwitcherApp() {
10111011
padding: '0 2px',
10121012
borderRadius: '2px',
10131013
}}
1014-
/>"
1014+
/>
10151015
</span>
10161016
)}
10171017
{branches[session.sessionId] && (

0 commit comments

Comments
 (0)