Skip to content

Commit fb73cec

Browse files
author
Tim Sinaeve
committed
chore: bump version to 0.8.1 and update font stack
1 parent fb5b1f8 commit fb73cec

3 files changed

Lines changed: 16 additions & 8 deletions

File tree

VERSION_LOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Version Log
22

3+
## v0.8.1 - The Native Fonts & Focus Fix Update
4+
5+
### 🛠 Improvements
6+
7+
- Updated the application font stack to match VS Code on Windows, using **Segoe UI** for the interface and **Consolas** for code. This provides a more native and consistent look for Windows users.
8+
9+
### 🐛 Fixes
10+
11+
- Resolved an issue where the "Create Document from Template" dialog would lose focus or reset the cursor position while typing in variable inputs. The focus trap logic has been optimized to handle dynamic content updates correctly.
12+
313
## v0.8.0 - The Emoji & Command Palette Update
414

515
### ✨ Features

index.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,14 @@
3434
'tree-selected': 'rgb(var(--color-tree-selected) / <alpha-value>)',
3535
},
3636
fontFamily: {
37-
sans: ['Inter', 'sans-serif'],
38-
mono: ['JetBrains Mono', 'monospace'],
37+
sans: ['Segoe WPC', 'Segoe UI', 'sans-serif'],
38+
mono: ['Consolas', 'Courier New', 'monospace'],
3939
},
4040
}
4141
}
4242
}
4343
</script>
44-
<link rel="preconnect" href="https://fonts.googleapis.com">
45-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
46-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono&display=swap" rel="stylesheet">
44+
4745
<link rel="stylesheet" href="dist/renderer.css">
4846
<script src="https://cdn.jsdelivr.net/npm/monaco-editor@0.44.0/min/vs/loader.js"></script>
4947
<style>
@@ -63,7 +61,7 @@
6361
margin: 0;
6462
padding: 0;
6563
}
66-
body { font-family: 'Inter', sans-serif; }
64+
body { font-family: 'Segoe WPC', 'Segoe UI', sans-serif; }
6765

6866
/* Styles for custom title bar */
6967
.draggable { -webkit-app-region: drag; }

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docforge",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "An application to manage and refine documents.",
55
"main": "dist/main.js",
66
"scripts": {
@@ -138,4 +138,4 @@
138138
"icon": "assets/icon.png"
139139
}
140140
}
141-
}
141+
}

0 commit comments

Comments
 (0)