Skip to content

Commit 60e8fe7

Browse files
author
Tim Sinaeve
committed
Prepare v0.8.2 release: Antigravity Styling Update
- Applied Antigravity design language (sharper corners, reduced focus rings, flat design) - Fixed MD preview zoom to reflow text properly - Fixed tree selection visibility in light mode - Disabled scroll sync between editor and preview - Improved search box styling
1 parent 7a5c6ec commit 60e8fe7

File tree

3 files changed

+69
-1
lines changed

3 files changed

+69
-1
lines changed

VERSION_LOG.md

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

3+
## v0.8.2 - The Antigravity Styling Update
4+
5+
### 🛠 Improvements
6+
7+
- **Antigravity Design Language:** Applied a cleaner, VS Code-inspired design across the application:
8+
- Sharper corners (`rounded-sm`) on buttons, modals, tooltips, and dropdowns.
9+
- Reduced focus ring intensity for a more subtle, native appearance.
10+
- Removed shadows from modals, tooltips, and context menus for a flatter look.
11+
- Status bar controls (LLM selectors, database dropdown, zoom buttons) now use text-only hover/focus instead of visible rings.
12+
- **Improved Markdown Preview Zoom:** Text now reflows properly when zooming in or out, eliminating whitespace issues at different zoom levels.
13+
- **Better Tree Selection Visibility:** Fixed the tree item selection highlight in light mode to be clearly visible instead of nearly transparent.
14+
15+
### 🐛 Fixes
16+
17+
- Disabled the scroll synchronization between the code editor and Markdown preview panes, as the sync behavior was unreliable. Panes now scroll independently.
18+
- Fixed search box styling to be more professional with a subtle background and no visible border.
19+
320
## v0.8.1 - The Native Fonts & Focus Fix Update
421

522
### 🛠 Improvements

docs/releases/0.8.2.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# v0.8.2 - The Antigravity Styling Update
2+
3+
**Release Date:** 2025-12-19
4+
5+
## Summary
6+
7+
This release introduces the Antigravity design language—a cleaner, VS Code-inspired aesthetic with sharper corners, reduced focus rings, and flatter UI elements. The Markdown preview zoom has been improved to properly reflow text, and tree selection visibility has been fixed in light mode.
8+
9+
## Improvements
10+
11+
### Antigravity Design Language
12+
13+
Applied a comprehensive styling update across the application for a more professional, IDE-like appearance:
14+
15+
- **Sharper corners:** Buttons, modals, tooltips, dropdowns, and cards now use `rounded-sm` instead of `rounded-md`/`rounded-lg`.
16+
- **Reduced focus rings:** Focus indicators are now more subtle (1px, lower opacity) to avoid visual clutter.
17+
- **Flatter design:** Removed shadows from modals, tooltips, context menus, and dropdowns, relying on borders for definition.
18+
- **Status bar polish:** LLM provider/model selectors, database dropdown, and zoom buttons now use text-only hover/focus states instead of visible rings or backgrounds.
19+
20+
### Markdown Preview Zoom
21+
22+
Text now reflows properly when zooming in or out in the Markdown preview pane. This eliminates the whitespace issue that occurred when zooming out, where content would shrink but not reflow to use the available width.
23+
24+
### Tree Selection Visibility
25+
26+
Fixed the tree item selection highlight in light mode to be clearly visible. The previous implementation used 20% opacity on the selection color, making it nearly invisible.
27+
28+
## Fixes
29+
30+
- **Scroll sync disabled:** Removed the scroll synchronization between the code editor and Markdown preview panes, as the sync behavior was unreliable. The panes now scroll independently.
31+
- **Search box styling:** Improved the sidebar search box with a subtle background, no visible border, and sharper corners for a more professional look.
32+
33+
## Technical Changes
34+
35+
### Files Modified
36+
37+
- `components/Button.tsx` - Sharper corners, reduced focus ring
38+
- `components/Modal.tsx` - Removed shadow, sharper corners
39+
- `components/Tooltip.tsx` - Removed shadow, added border, sharper corners
40+
- `components/IconButton.tsx` - Sharper corners, subtle hover
41+
- `components/ToggleSwitch.tsx` - Reduced focus ring
42+
- `components/LanguageDropdown.tsx` - Sharper corners, removed shadow
43+
- `components/WelcomeScreen.tsx` - Sharper card corners
44+
- `components/StatusBar.tsx` - Removed focus rings from selects and zoom buttons
45+
- `components/Sidebar.tsx` - Improved search box styling
46+
- `components/PromptTreeItem.tsx` - Fixed selection opacity
47+
- `components/TemplateList.tsx` - Fixed selection opacity
48+
- `components/ZoomPanContainer.tsx` - Added CSS zoom support for text reflow
49+
- `components/PromptEditor.tsx` - Disabled scroll sync
50+
- `services/preview/markdownRenderer.tsx` - Enabled CSS zoom for preview
51+
- `services/themeCustomization.ts` - Adjusted tree selection color

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docforge",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "An application to manage and refine documents.",
55
"main": "dist/main.js",
66
"scripts": {

0 commit comments

Comments
 (0)