Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/docs/releasenotes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Behind the scenes, we've redesigned our remote file protocol, laying the groundw
- Custom widgets can now be launched in magnified mode
- Various workspace UX improvements around closing/deleting
- file:/// urls now work in web widget
- Increased size of files allowed in `wsh ai`
- Increased max size of files allowed in `wsh ai` to 50k
- Increased maximum allowed term:scrollback to 50k lines
- [build] Switched to free Ubuntu ARM runners for better ARM64 build support
- [build] Windows builds now use zig, simplifying Windows dev setup
Expand All @@ -47,6 +47,7 @@ Behind the scenes, we've redesigned our remote file protocol, laying the groundw
- [bugfix] Fix preview for large text files
- [bugfix] Fix URLs in terminal (now clickable again)
- [bugfix] Windows URLs now work properly for Wave background images
- Other bug fixes, performance improvements, and dependency updates

### v0.10.4 — Dec 20, 2024

Expand Down
1 change: 0 additions & 1 deletion frontend/app/element/markdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
font-family: var(--markdown-font-family);
font-size: var(--markdown-font-size);
overflow-wrap: break-word;
padding: 5px 15px 10px 15px;

&.non-scrollable {
overflow: hidden;
Expand Down
4 changes: 4 additions & 0 deletions frontend/app/view/preview/preview.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
align-items: start;
justify-content: start;
overflow: auto;

.markdown .content {
padding: 5px 15px 10px 15px;
}
}

&.view-preview-text {
Expand Down
Loading