发布说明
GPUI Kit 每个已发布版本,以及它在 GitHub Release 中的说明,最新版本在最前。说明保留 GitHub 上的英文原文。
- 最新版本 v0.6.6
- 13 个版本
- 在 GitHub 上查看全部版本
v0.6.6
- label: Skip highlights while masked (https://github.com/longbridge/gpui-kit/pull/3142) by @violetpurpleish
- kit: Pin gpui-pre to the exact snapshot each release is built against (https://github.com/longbridge/gpui-kit/pull/3163) by @huacnlee
Full Changelog: https://github.com/longbridge/gpui-kit/compare/v0.6.4…v0.6.6
v0.6.4
GPUI Kit v0.6.4
GPUI Kit v0.6.4 is a patch release on top of v0.6.2. It fixes popup placement on tiled Linux windows, where a menu opened near the window edge no longer lined up with its trigger, and closes two pie chart rendering issues.
Components
- Popup: on a client-decorated window the edge clamp now honors the window’s tiling. A tiled edge draws no shadow, so a
Popover,PopupMenu,DropdownMenu,Select, or tooltip opened near the left or right edge of a tiled window (every window on Hyprland and other tiling compositors) keeps only the popup’s own margin and stays aligned with its trigger instead of being pushed 20px inward; an untiled edge still keeps the client inset. (#3130) - Chart: a
PieChartwithout an explicitouter_radiuspaints and hit-tests with its laid-out radius again instead of rendering nothing, and a hovered slice’s leader line starts at the lifted slice edge so it no longer cuts into the fill. The gallery’s “Revenue by Region” labels fit their card. (#3123, #3121)
Thank you to everyone who contributed code, documentation, testing, and feedback!
What’s Changed
- chart: Start a pie leader line at the lifted slice edge by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3121
- chart: Fix the pie radius fallback and fit the gallery’s region labels by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3123
- popup: Keep the client inset only on untiled window edges by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3130
Full Changelog: https://github.com/longbridge/gpui-kit/compare/v0.6.2…v0.6.4
v0.6.2
GPUI Kit v0.6.2
GPUI Kit v0.6.2 brings mobile application support for iOS and Android, three new components (Carousel, Empty, and InputGroup), a public editor search API, Markdown inline plugins, and motion sequencing. This release also cuts per-frame work in TextView, List, Plot, and Chart, and removes the dock’s tiles canvas.
Mobile Applications
GPUI Kit applications can now be hosted by an external iOS or Android platform. Mobile builds keep GPUI and component initialization while leaving the desktop platform selector out, and gpui_kit::is_mobile() exposes the target check. On mobile, tooltips stay hidden and HoverCard opens and closes on tap. New mobile guides cover simulator setup, Swift UIView embedding, lifecycle and keyboard layout, and touch interactions. (#3045)
- Touch text selection: a long press in
Input,Textarea,Editor, or a selectableTextViewselects the word under the finger and shows draggable selection handles with an iOS-style edit menu (Cut, Copy, Paste, Select All). Double tap selects a word in editable text, Select All reaches past the viewport, and the menu returns after a scroll. (#3058, #3073, #3076, #3075, #3077) - iOS-like scroll bounce through the new
ScrollBouncewrapper ingpui-base, covering lists, scrollabledivs, touch release, momentum, and reduced motion. (#3067) - Scrollbars support touch dragging with a smaller resting thumb on mobile. (#3060, #3111)
- A long press opens a plot’s tooltip on mobile. (#3078)
New Components
- Carousel: horizontal and vertical snapping, pointer and trackpad gestures, keyboard navigation, controlled selection, looping, optional pagination, and reduced motion. (#2867)
- Empty: composable empty states built from
Empty,EmptyHeader,EmptyMedia,EmptyTitle,EmptyDescription, andEmptyContent, imported fromgpui_kit::component::empty. (#3030) - InputGroup: inline addons, block toolbars, and textareas sharing one input frame through
InputGroup,InputGroupInput,InputGroupTextarea,InputGroupAddon,InputGroupButton, andInputGroupText. (#3042)
Editor and Text Input
- Editor search API is now public on the editor state:
set_search_query,close_search,next_search_match,previous_search_match, the replace methods, andsearch_session(), so an application can draw its own search bar. Match highlights show without the panel, and the search shortcut reaches the host view. (#2533) - Wrapped search matches stay visible with surrounding context. (#3013)
- Added
on_pastetoInput,Textarea, andEditorso applications can handle images and files from the clipboard instead of dropping them. (#3087) - Languages can register runtime parser factories through
LanguageRegistry::register_parser_factory, so a Tree-sitter grammar no longer has to be linked into the binary. (#3039) - Fixed text descender clipping. (#3023)
Markdown and Text Rendering
- Inline plugins through
MarkdownPluginand.plugin(...). Inline math parses by default, and the example adds[@user](mention:user)profile cards. Inline objects inherit surrounding formatting and links and participate in table column sizing. (#3031, #3070) - Streamed text fades in with
TextView::stream_fade(true), or with custom timing and a word-by-word reveal throughTextViewMotion. (#3082) - A Markdown image’s
data:URL is decoded instead of fetched. (#3088) - Faster rendering: fewer and cheaper elements per Markdown frame, and a paragraph’s shaped text and highlights are kept across frames. (#3090, #3115)
- Fixed inline-code layout in headings, list alignment, and inline-code fragments wrapping twice. (#3038, #3046)
Motion
Sequencechains transitions so a step starts when the previous one ends, each with its own duration, easing, and delay. (#3092)gpui_base::initreads the operating system’s reduced-motion preference intoApp::reduce_motion, which every Base motion primitive already honors. (#3094)
Dock
- Removed the tiles canvas.
SplitandTabsare now the only container shapes; a freeform canvas is a panel the host implements.gpui_component::dock::Panel::title_barlets a panel that carries its own chrome opt out of the tab group’s title bar. See Breaking Changes below. (#3036) - Added
DockArea::select_panelto display a tab byPanelIdwherever it sits, without moving it. (#3063)
Components
- Button: a ghost button hovers with
accentand presses withbutton_active, matching the outline button and other low-emphasis controls. (#3100) - Dialog: a dialog stays inside the window it opens in, and its own controls route to that dialog. (#3093, #3097)
- Menu: a submenu opens from a scrollable
PopupMenu, and shortcut hints paint on the frame the menu opens. (#3095, #3096) - Tab: fixed explicit scrolling to newly added tabs, and
flex_1()tabs fill the tab bar again. (#3021, #3032) - List and Table: dropped the outline from the selected item, row, and cell; keyboard row navigation stops when
row_selectableis off. (#3108, #3033) - Select: the search query clears when the menu closes. (#3050)
- Setting: fixed number step and clamping in the delegate, and preserved the selected page while searching. (#3099, #3104)
- Avatar: the initials fallback draws from an even OkLCH hue ring. (#3026)
- ColorPicker: fixed duplicate accessibility node IDs. (#3028)
- Chart and Plot: the hover animates, heavy geometry is cached, grids paint as quads, and tessellated line and area paths are cached. The chart gallery cards were reworked. (#3112, #3071)
- List: trimmed the per-frame cost of a scrolling list. (#3085)
- FPS: the readout leaves its own frame out of the readings, grades against the panel, and stops the clock while hidden. (#3025, #3029)
Documentation and Website
Added mobile guides, notification placement docs, and certified AI-facing consumer recipes. The website lets the browser draw emoji and CJK text the bundled fonts lack, skips the system font probe when no font is installed, and fixes the docs sidebar hover background. (#3062, #3109, #3057, #3106, #3044)
Thank you to everyone who contributed code, documentation, testing, and feedback!
What’s Changed
- chore: Refresh the recipes lock for the
0.6.1version bump by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3024 - carousel: Add a Carousel component by @suxiaoshao in https://github.com/longbridge/gpui-kit/pull/2867
- shell: switch to quickjs-jit 0.12.7 with upstream compatibility facade by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2903
- fps: Leave the readout clock’s own frame out of the readings by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3025
- component: Fix text descender clipping by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3023
- avatar: Draw the initials fallback from an even OkLCH hue ring by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3026
- tab: Fix explicit scrolling to newly added tabs by @BeratHundurel in https://github.com/longbridge/gpui-kit/pull/3021
- editor: keep wrapped search matches visible with context by @hlcfan in https://github.com/longbridge/gpui-kit/pull/3013
- color_picker: Fix prevent duplicate accessibility node IDs by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3028
- fps: Grade against the panel, and stop the clock while hidden by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3029
- tab: Let
flex_1()tabs fill the tab bar again by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3032 - table: Stop keyboard row navigation when
row_selectableis off by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3033 - text_view: Add Inline plugin by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3031
- chore: Fix inline flow lint. by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3034
- empty: Add composable empty states by @suxiaoshao in https://github.com/longbridge/gpui-kit/pull/3030
- text: Fix inline-code heading layout and list alignment by @wabzqem in https://github.com/longbridge/gpui-kit/pull/3038
- dock: Remove the tiles canvas by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3036
- website: fix docs sidebar hover background clipped on left edge by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3044
- highlighter: allow languages to register runtime parser factories by @feigeCode in https://github.com/longbridge/gpui-kit/pull/3039
- text: prevent inline-code fragments from wrapping twice by @wabzqem in https://github.com/longbridge/gpui-kit/pull/3046
- kit: Add support mobile applications in GPUI Kit by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3045
- select: Clear the search query when the menu closes by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3050
- shell: validate default TextView link URLs by @lurenjia534 in https://github.com/longbridge/gpui-kit/pull/3048
- chore: Relax exact gpui-pre dependency pins when staging by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3059
- mobile: Support mobile text selection and scrollbar dragging by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3058
- scrollbar: Preserve thumb alignment and drag throttling for mobile support by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3060
- docs: document notification placement by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3062
- test: adapt TextView settle check for GPUI 0.3.5 by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3064
- chore: Fix release gpui scope staged GPUI clippy warnings by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3065
- chroe: Allow upstream deprecations in GPUI release check by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3066
- dock: Add
DockArea::select_panelto display a tab by panel identity by @kameron1979 in https://github.com/longbridge/gpui-kit/pull/3063 - website: Let the browser draw emoji and CJK text the bundled fonts lack by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3057
- base: Add iOS like ScrollBounce by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3067
- ci: Split checks into parallel jobs and stop recompiling GPUI per step by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3068
- base: Walk rows, not characters, for Inline text line bounds by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3070
- plot: Paint grids as quads and cache tessellated line and area paths by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3071
- mobile: Add touch selection handles and an edit menu to Input and TextView by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3073
- base: Give a double tap handles, and let Select All reach past the viewport by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3076
- base: Bring the edit menu back after a scroll the container swallowed by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3075
- base: Keep a finger’s double tap out of read-only text by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3077
- plot: Open a plot’s tooltip with a long press on mobile by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3078
- mobile: Size the dock title bar’s buttons and Clipboard for a finger by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3079
- dock: Revert the mobile title bar sizing by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3080
- list: Trim what a scrolling list pays per frame outside GPUI by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3085
- input: Add on_paste to handle images from clipboard instead of silently dropping them by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3087
- text: Fade streamed text in with
TextView::stream_fadeby @madcodelife in https://github.com/longbridge/gpui-kit/pull/3082 - text_view: Decode a Markdown image’s
data:URL instead of fetching it by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3088 - text_view: Build fewer, cheaper elements per Markdown frame by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3090
- dialog: Keep a dialog inside the window it opens in by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3093
- menu: Let a submenu open from a scrollable PopupMenu by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3095
- menu: Paint a menu’s shortcut hints on the frame it opens by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3096
- base: Read the operating system’s reduced-motion preference at init by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3094
- motion: Chain transitions with
Sequenceso a step starts when the last one ends by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3092 - button: Hover a ghost button with
accent, press it withbutton_activeby @madcodelife in https://github.com/longbridge/gpui-kit/pull/3100 - dialog: Route a dialog’s own controls to that dialog by @IHadACookie in https://github.com/longbridge/gpui-kit/pull/3097
- setting: Fix delegate number step and clamp to InputState by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3099
- website: Skip the system font probe while no font is installed by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3106
- setting: Preserve selected page identity when searching by @suxiaoshao in https://github.com/longbridge/gpui-kit/pull/3104
- input: Expose editor search API by @calmondev in https://github.com/longbridge/gpui-kit/pull/2533
- list, table: Drop the outline from the selected item, row and cell by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3108
- docs: Certify AI-facing consumer recipes by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3109
- input_group: Add InputGroup by @suxiaoshao in https://github.com/longbridge/gpui-kit/pull/3042
- scrollbar: Shrink the resting thumb on mobile by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3111
- chart: Animate the hover, cache heavy geometry and rework the gallery cards by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3112
- shell: update QuickJS JIT to 0.12.9 by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3116
- text_view: Keep a paragraph’s shaped text and rendered highlights across frames by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3115
New Contributors
- @feigeCode made their first contribution in https://github.com/longbridge/gpui-kit/pull/3039
- @kameron1979 made their first contribution in https://github.com/longbridge/gpui-kit/pull/3063
- @calmondev made their first contribution in https://github.com/longbridge/gpui-kit/pull/2533
Full Changelog: https://github.com/longbridge/gpui-kit/compare/v0.6.1…v0.6.2
v0.6.1
GPUI Kit v0.6.1
GPUI Kit v0.6.1 brings multi-cursor editing, automatic bracket pairing, smart indentation, and headless UI testing. This release also improves Markdown rendering, text selection, accessibility, and everyday component behavior.
Editor and Text Input
- Multi-cursor editing with Alt-click to add cursors and Shift-Alt-drag for column selection. Column selections now preserve their width across short lines. (#2837, #2987)
- Automatic bracket pairing and smart indentation on Enter, with configurable language rules and independent
auto_closeandsmart_indentpreferences. (#3018) - Improved search behavior: reopening search restores focus, preserves the active match, and reveals matches after manual scrolling. (#2932, #2953, #2955)
- Fixed cursor movement across CRLF boundaries and pending syntax highlighting when switching languages. (#2986, #2994)
- Fixed selection drag-autoscroll in virtualized lists and ensured scrolling stops when the selection gesture ends. (#2948, #2941)
- Reduced unnecessary updates when scroll and paint state remain unchanged. (#2988)
Headless UI Testing
Applications can now test interactions and layout through gpui_kit::test, enabled by the test-support feature. The testing API supports scoped queries, native input events, state snapshots, and waiting for deferred updates.
This release also expands integration coverage across core controls, menus, dialogs, tables, and dock layouts, with separate Metal rendering checks on macOS. (#3005, #3019)
Markdown and Text Rendering
- Added opt-in YAML frontmatter rendering through
MarkdownExtensions::frontmatter()andFrontmatterPlugin. Supported mappings render as structured metadata; unsupported content falls back to a YAML code block. (#2850) - Corrected hard and soft line-break rendering. (#2945, #2947)
- Improved inline code styling with rounded backgrounds and a monospace font. (#2949)
- Fixed stale measurements when replacing a document with another containing the same number of blocks. (#2946)
Components and Accessibility
- Button: added preferred tooltip placement and restored the selected background for ghost buttons. (#2971, #2938)
- Select: exposed committed values, improved accessible activation, and made
on_dismissrun consistently regardless of how the popup closes. (#2973, #2984) - Sidebar: added
Styledsupport andlabel_styletoSidebarMenuItem. (#2957) - Icons: added SVG byte support in component icon slots and shared Lucide icon names while preserving default icons. (#2980, #3020)
- Fixed panel resizing flicker and list measurement when the configured measurement row is absent. (#2907, #2975)
- Improved accessibility for dialog close buttons and calendar items. (#2969, #2996)
- Added fallback to an installed monospace font when the default is unavailable. (#3009)
Runtime and Platform Improvements
- Refined FPS reporting using frame cost and the display’s refresh rate, with sustained frames enabled by default. (#2944, #2954, #2956)
- Restricted Windows native-menu
uxthemeloading to System32. (#2974) - Updated Tree-sitter and removed the previous workaround. (#2990)
Documentation
The documentation website now uses Astro, with improved App Stories browsing and preserved sidebar scroll position. Component API documentation is separated from shared Kit guides, with expanded coverage of fonts, editor search, UI testing, and AI-assisted development.
Thank you to everyone who contributed code, documentation, testing, and feedback!
What’s Changed
- website: Bundle IBM Plex Sans so
.SystemUIFontresolves on the web by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2933 - gpui-pre: Audit licenses before publishing and state GPUI’s origin by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2936
- chore: Let the doctests written for gpui-kit users compile by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2937
- website: Add a release notes page and keep page titles off the toolbar by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2935
- button: Select a ghost button with
secondary_activeagain by @madcodelife in https://github.com/longbridge/gpui-kit/pull/2938 - shell: Improve application compatibility by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2939
- chroe: Drop the unused reqwest_client dependency by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2940
- base: Stop auto scroll once the text selection gesture has ended by @madcodelife in https://github.com/longbridge/gpui-kit/pull/2941
- skills: Quote gpui-kit skill description by @prabirshrestha in https://github.com/longbridge/gpui-kit/pull/2943
- fps: Sustain frames by default, and stop grading the rate by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2944
- website: migrate from VitePress to Astro by @endless-bot in https://github.com/longbridge/gpui-kit/pull/2926
- story: Draw the chart gallery through a virtual list by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2950
- markdown: render hard line breaks instead of concatenating lines by @kossoy in https://github.com/longbridge/gpui-kit/pull/2945
- editor: Refocus the search bar when search is invoked again by @hlcfan in https://github.com/longbridge/gpui-kit/pull/2932
- markdown: reflow soft line breaks instead of rendering them as hard breaks by @kossoy in https://github.com/longbridge/gpui-kit/pull/2947
- text: remeasure list items when a document is replaced with an equal block count by @kossoy in https://github.com/longbridge/gpui-kit/pull/2946
- website: Add five apps to the app stories page by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2951
- resizable: Fix panel resizing flickering by @hlcfan in https://github.com/longbridge/gpui-kit/pull/2907
- shell: Expose GPUI’s list and uniform_list to scripts by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2952
- fps: Derive the headline rate from frame cost instead of driving the frame loop by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2954
- fps: Cap the headline by asking the platform what the panel runs at by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2956
- sidebar: make SidebarMenuItem implement Styled and add label_style by @ItsCacia in https://github.com/longbridge/gpui-kit/pull/2957
- website: Fix Showcase lockfile installation in docs releases by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2958
- website: Refine App Stories layout and browsing by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2960
- website: Remove two Vue components orphaned by the Astro migration by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2965
- editor: Reveal search match after manual scroll by @hlcfan in https://github.com/longbridge/gpui-kit/pull/2955
- chore: Forward platform test support and profiling by @grishy in https://github.com/longbridge/gpui-kit/pull/2966
- base: move the native examples into their own package by @Tryanks in https://github.com/longbridge/gpui-kit/pull/2963
- editor: Preserve active search match on panel open by @hlcfan in https://github.com/longbridge/gpui-kit/pull/2953
- dialog: make the close button accessible by @grishy in https://github.com/longbridge/gpui-kit/pull/2969
- button: expose preferred tooltip placement by @grishy in https://github.com/longbridge/gpui-kit/pull/2971
- docs: welcome AI-assisted contributions by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2981
- ci: enable weekly gpui-pre releases by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2982
- native_menu: Constrain uxtheme loading to System32 by @lurenjia534 in https://github.com/longbridge/gpui-kit/pull/2974
- select: expose committed values and accessible activation by @grishy in https://github.com/longbridge/gpui-kit/pull/2973
- list: measure an existing row when the configured item is absent by @grishy in https://github.com/longbridge/gpui-kit/pull/2975
- story: replace List search results without duplicating rows by @grishy in https://github.com/longbridge/gpui-kit/pull/2976
- icon: Support SVG bytes in component icon slots by @suxiaoshao in https://github.com/longbridge/gpui-kit/pull/2980
- select: run on_dismiss however the popup closes by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2984
- chore: isolate story examples from test-support by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2985
- input: Multi cursors by @zanmato in https://github.com/longbridge/gpui-kit/pull/2837
- input: Keep column selection width over short rows by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2987
- input: preserve CRLF cursor boundaries and document shortcuts by @kossoy in https://github.com/longbridge/gpui-kit/pull/2986
- chore: Fix the CI metadata parse and skip unchanged snapshots by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2992
- fix(base): name calendar items for accessibility by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2996
- chore: improve component conventions for AI-assisted development by @huacnlee in https://github.com/longbridge/gpui-kit/pull/2993
- highlighter: Update tree-sitter to remove workaround by @zanmato in https://github.com/longbridge/gpui-kit/pull/2990
- input: trigger pending re-highlight when switching editor language by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/2994
- input: Avoid notifying unchanged scroll and paint state by @jlucaso1 in https://github.com/longbridge/gpui-kit/pull/2988
- docs: document editor search panel and searchable API by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3002
- chore: Expand CONTRIBUTING.md with GPUI and GPUI Kit details by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3004
- docs: separate Component API docs from shared Kit guides by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3006
- theme: Fall back to an installed monospace font when the default is missing by @madcodelife in https://github.com/longbridge/gpui-kit/pull/3009
- docs: document fonts - system, theme, custom bundling, and WASM by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3010
- kit: Add headless UI testing to gpui-kit by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3005
- docs: migrate root/theme/dock from docs to component section by @endless-bot in https://github.com/longbridge/gpui-kit/pull/3014
- website: Preserve docs sidebar scroll position across navigation by @loosheng in https://github.com/longbridge/gpui-kit/pull/3007
- kit: expand core UI integration coverage by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3019
- markdown: Add Frontmatter plugin as structured metadata by @BeratHundurel in https://github.com/longbridge/gpui-kit/pull/2850
- assets: share Lucide icon names and preserve default icons by @huacnlee in https://github.com/longbridge/gpui-kit/pull/3020
- text_view: Improve inline code render with rounded style and mono font by @kossoy in https://github.com/longbridge/gpui-kit/pull/2949
- text_selection: drag-autoscroll never moved a virtualized list by @kossoy in https://github.com/longbridge/gpui-kit/pull/2948
- editor: auto-close brackets and smart indent on Enter by @Muhammad-Owais-Warsi in https://github.com/longbridge/gpui-kit/pull/3018
New Contributors
- @prabirshrestha made their first contribution in https://github.com/longbridge/gpui-kit/pull/2943
- @endless-bot made their first contribution in https://github.com/longbridge/gpui-kit/pull/2926
- @kossoy made their first contribution in https://github.com/longbridge/gpui-kit/pull/2945
- @grishy made their first contribution in https://github.com/longbridge/gpui-kit/pull/2966
- @Tryanks made their first contribution in https://github.com/longbridge/gpui-kit/pull/2963
- @Muhammad-Owais-Warsi made their first contribution in https://github.com/longbridge/gpui-kit/pull/2994
- @loosheng made their first contribution in https://github.com/longbridge/gpui-kit/pull/3007
Full Changelog: https://github.com/longbridge/gpui-kit/compare/v0.6.0…v0.6.1
v0.6.0
GPUI Kit v0.6.0
v0.6.0 is a major expansion of the project since v0.5.0. The project is now GPUI Kit: a layered toolkit for building desktop applications with GPUI. This release introduces an unstyled foundation crate, a single-dependency facade, a scriptable application runtime, a substantially expanded component set, richer text editing and rendering, motion, accessibility, and new developer tooling.
This release note focuses on user-visible additions, improvements, API changes, and deprecations. It intentionally omits fixes made while the new v0.6.0 features were being developed.
GPUI Kit and the new crate architecture
The repository and ecosystem are now named GPUI Kit, and the documentation has moved to gpui-kit.com. GPUI Component remains the styled component layer within the toolkit. (#2927)
The new architecture separates reusable behavior from presentation:
gpui-kitis the recommended facade for applications. It re-exports GPUI and the enabled Kit layers, providesapplication(),init(), and anactions!macro, and keeps matching GPUI dependencies together.gpui-baseprovides unstyled behavior, state, interaction, and infrastructure primitives. It includes text editing and rich text, selection, dock layout, virtual lists, dialogs, popovers, controls, motion, history, and navigation foundations.gpui-componentremains the complete styled UI system and builds ongpui-base.gpui-shellis a new scriptable application runtime that lets a Rust host expose GPUI capabilities to JavaScript. (#2821)gpui-fpsadds a real-time FPS and resource HUD, including CPU, memory, GPU, and frame-tail reporting. (#2704)gpui-wryis now the standalone WebView integration crate.
Applications may continue depending directly on gpui-component, or adopt the new facade:
[dependencies]
gpui-kit = "0.6"
use gpui_kit::*;
use gpui_kit::component::Root;
fn main() {
gpui_kit::application().run(|cx| {
gpui_kit::init(cx);
// Open windows and build the application here.
});
}
New components and application building blocks
The styled component library has grown well beyond the v0.5.0 surface:
- Application structure:
Commandpalette,NativeMenu,StatusBar,Pagination,Stepper,HoverCard,AlertDialog,FocusTrap, and a redesigned declarativeDialogAPI. - Data entry and display:
Combobox,Rating,ProgressCircle, a new lightweight declarativeTable, and multi-row headers, cell selection, custom row heights, resizing constraints, and batched export forDataTable. - Communication UI: composable
Message,MessageScroller,Bubble,Attachment, andMarkercomponents for chat and assistant-style interfaces. (#2832) - Loading and feedback:
Shimmer, animated progress states, configurable notification placement and width, dismiss callbacks, and optional OS notification-center delivery. - Navigation:
NavStackprovides browser-style push, back, and forward navigation with animated transitions. (#2922)
Existing controls received broader composition and interaction APIs, including context menus for sidebar and tree items, async submenus, collapsible sidebar modes, animated tabs and tooltips, programmatic resizable panels, reverse sliders, configurable calendar week starts, accessible labels and control IDs, and drag-and-drop support for list items.
Text editing, rich text, and selection
Text editing is now split into purpose-built controls:
Input/InputStatefor single-line text, masks, validation, and number entry.Textarea/TextareaStatefor multiline text, rows, soft wrapping, auto-grow, and chat-style submit behavior.Editor/EditorStatefor code editing, highlighting, line numbers, folding, decorations, diagnostics, search, replacement, and LSP integration. (#2691)
The editor adds transaction-based undo, code folding, inline completions, semantic tokens, document colors, configurable wrapping indent, selection APIs, readonly mode, replace/replace-all actions, and broader syntax highlighting. Tree-sitter language support is now split into per-language Cargo features, so applications can select only the grammars they need.
TextView now lives in gpui-base, with the existing gpui_component::text API retained as a compatibility facade. Rich text gains incremental Markdown parsing, inline and local images, Markdown extensions/plugins, math blocks, table actions and horizontal scrolling, source-preserving copy, link-click handling, multi-click selection, drag auto-scroll, and max_lines. A new SelectableText element participates in window-level selection without requiring a rich-text document. (#2881)
Window-level TextSelection can combine selection across multiple TextView and SelectableText regions, enabling document-like selection and copying across independently rendered elements.
Docking, layout, and scrolling
Docking now has a reusable pure-data layout foundation in gpui-base. It supports serializable tiles, tab groups, split resizing, drag/drop placement reporting, undo/redo, animated drop placeholders, snapping neighboring panel edges, and LayoutChanged events. This makes dock layout state usable independently of the styled dock UI.
Scrolling behavior has been revised for better interoperability between nested scroll containers. Highlights include explicit Scrollable identity, axis locking for trackpad gestures, improved scrollbar visibility transitions, responsive Markdown tables, and width-aware virtual-list measurement.
Motion and visual system
gpui-base::motion introduces a layered animation system with keyframes, timing functions, spring motion, presence transitions, staggered animation, reveal helpers, and interpolation. Components now use spring transitions where targets can change during an active animation. (#2866)
The theme system adds gradient backgrounds, global radius consistency, configurable focus rings, selection and Markdown-table semantic colors, custom primary-button and switch colors, and improved dark-mode syntax highlighting. Form controls, popovers, tabs, sliders, and scrollbars have been visually refined for clearer interaction states.
Charts and visualization
Charts gain:
SankeyChartandRadarChart.- Candlestick charts.
- Interactive hover tooltips.
- Negative bar values and a value axis.
- Arbitrary fills such as gradients, per-bar corner radii, grid and x-axis options.
- Pie-chart leader-line labels and Radar-chart element labels.
- More efficient Sankey topology and deduplicated, value-indexed band scales.
Accessibility and platform integration
Accessibility information is now exposed across the component set, including roles, labels, values, toggle state, and stable control IDs. Buttons and checkboxes support role overrides and presentational roles, while editable controls expose their values to accessibility clients.
Native integration expands with OS-native application and context menus, menu item images, improved Linux client-side decorations, window-manager-aware title-bar controls, notification-center bridging, and an owned raw Wry WebView handle.
Performance and developer experience
- Large editor documents now use a SumTree-based wrapping cache, incremental foreground parsing, bounded syntax injections, and cheaper rewrapping and outdent paths.
- Large
TextViewreplacements are parsed off the UI thread, while Markdown blocks are shared instead of cloned each frame. - Dock, input, notification, color-picker, chart tooltip, and shell rendering paths avoid redundant work and unnecessary rerenders.
- The new
gpui-fpsHUD reports presented frames and process resource use for profiling live applications. - The documentation site now includes English and Chinese references for GPUI Base, GPUI Shell, the component library, design guidance, coding guidance, and runnable examples.
- A distributable GPUI Kit skill bundles the design and coding guides for coding agents.
Breaking API changes and migration
Input, Textarea, and Editor are separate APIs
InputState is now single-line only. Migrate multiline inputs to TextareaState and code editors to EditorState:
- use gpui_component::input::{Input, InputState};
+ use gpui_component::input::{Textarea, TextareaState};
- InputState::new(window, cx).multi_line(true).auto_grow(3, 8)
+ TextareaState::new(window, cx).auto_grow(3, 8)
- InputState::new(window, cx).code_editor("rust")
- Input::new(&state)
+ EditorState::new("rust", window, cx)
+ Editor::new(&state)
Input-only adornments such as prefix, suffix, the mask toggle, and the clear button are not properties of Textarea or Editor; compose those actions around the control instead.
Table names
The former stateful Table is now DataTable. Table names the new declarative table element. (#2075)
- use gpui_component::table::Table;
+ use gpui_component::table::DataTable;
The selector-column option was renamed from row_selector to row_header. (#2366)
Divider is now Separator
The module, types, and DescriptionList method were renamed. (#2335)
- gpui_component::divider::Divider
+ gpui_component::separator::Separator
- DescriptionList::divider()
+ DescriptionList::separator()
List and table pagination delegates
ListDelegate::is_eof and TableDelegate::is_eof were renamed to has_more, with the semantics made explicit and the default set to false. (#1757)
WebView moved to gpui-wry
The gpui-component webview feature was removed. Depend on the standalone gpui-wry crate instead. (#1759)
History is split by purpose
The former undo-oriented History<T: HistoryItem> API and HistoryItem trait were removed. Use:
History<T>for browser-style navigation with back/forward semantics.UndoHistory<T>for grouped undo/redo transactions. (#2923)
Dock construction and extension APIs were redesigned
Dock persistence keeps the v0.5.0 JSON shape, but the Rust construction and extension APIs changed as the dock was split into an unstyled data/behavior layer and a styled renderer. (#2772)
DockItemwas replaced by the pure-dataDockLayoutbuilder.- Styled applications should wrap panels with
panel_handleand use thepanel_view,tile_view,add_panel_view, andadd_tile_viewentry points. - The old
Paneltrait is split betweengpui_base::dock::Panelfor behavior andgpui_component::dock::Panelfor presentation. - The entity formerly named
TabPanelis nowgpui_base::dock::TabGroup; styledTabPanelis a renderer. - The tiles entity is now
TilesState;Tilesis its renderer. StackPaneland the publicDockentity were removed. Manage layouts throughDockAreaandDockPlacement.- Placement-specific accessors such as
left_dock()and setters such asset_left_dock()were replaced bylayout(placement),set_dock,set_dock_size,is_dock_open, andremove_dock. DockEvent::DragDrop(item)is nowDockEvent::DragDrop { item, target }, exposing where a host drag item landed. (#2661)
Dialog and chart tooltip construction
Dialog::new(window, cx)is nowDialog::new(cx). The declarative dialog API usestrigger,content,DialogHeader,DialogTitle,DialogDescription, andDialogFooter. (#2067)- Low-level chart tooltip construction now uses
Tooltip::new(cursor, bounds);Tooltip::position()andTooltipPositionwere removed.TooltipState::newno longer takes a position argument, andCrossLineis dashed by default. (#2500)
Smaller source-level changes
popover_stylemoved from theStyledExttrait toThemeStyled. (#2726)ScaleBandcategorical domains now requireEq + Hashrather thanPartialEq; the bound also applies to the band type used byBarChartandCandlestickChart. (#2885)- Boolean readers were normalized:
can_go_to_definition()is nowhas_definition(), while dock readers such ascan_zoom()andcan_close()are nowis_zoomable()andis_closable(). (#2810) - The default wrapping indent for multiline editors is now
WrappingIndent::Same. Editornow defaults to the theme’s monospace font and derives row height from its configured font size. Explicit.font_family()and.text_size()overrides still take precedence. (#2794)
Public seam structs now use builders and accessors
Several public context and snapshot structs now have private fields so they can evolve compatibly. Replace struct literals and direct field reads with their constructors, builders, and accessors. (#2706)
Affected APIs include:
InputContextMenuCapabilitiesInputPresentationCalendarItemStateComboboxTriggerCtx, renamed toComboboxTriggerContextsetting::RenderOptions
For example:
- capabilities.disabled
- capabilities.selection
+ capabilities.is_disabled()
+ capabilities.has_selection()
- CalendarItemState { kind, active, .. }
+ CalendarItemState::new(kind).active(active)
GPUI and package names
- The workspace now targets the
gpui-pre0.3.x family rather than GPUI 0.2.x, bringing the corresponding upstream GPUI API changes. - The assets package is now
gpui-kit-assets(Rust pathgpui_kit_assets) instead ofgpui-component-assets. - The project uses Rust edition 2024.
Deprecated APIs
animation::Transitionis retained as a deprecated alias; useanimation::EffectTransition. This is distinct from the newmotion::Transitiontiming policy.EasingError::InvalidBezierXis retained for source compatibility; useEasingError::InvalidBezierControlPoint.AlertDialog::overlay_closableis deprecated because alert dialogs intentionally cannot be dismissed by pressing the backdrop.Root::clear_text_selectionand the window text-selection extension methodsselected_text,has_text_selection,clear_text_selection, andend_text_selectionare deprecated; use the correspondinggpui_base::TextSelectionAPIs.SearchableListDelegate::sectionis deprecated; implementrender_section_headerto receiveWindowandAppaccess.
Thanks to all contributors
@zanmato @FlyingYu-Z @duanebester @stayhydated @CherryWorm @Moulberry @stippi
And thanks to all our first-time contributors:
- @orbisai0security made their first contribution in https://github.com/longbridge/gpui-kit/pull/1678
- @amiyzku made their first contribution in https://github.com/longbridge/gpui-kit/pull/1749
- @18o made their first contribution in https://github.com/longbridge/gpui-kit/pull/1753
- @TajangSec made their first contribution in https://github.com/longbridge/gpui-kit/pull/1772
- @gjfei made their first contribution in https://github.com/longbridge/gpui-kit/pull/1783
- @PleaseDont made their first contribution in https://github.com/longbridge/gpui-kit/pull/1797
- @vdualb made their first contribution in https://github.com/longbridge/gpui-kit/pull/1799
- @Nareshix made their first contribution in https://github.com/longbridge/gpui-kit/pull/1831
- @doubo6sir made their first contribution in https://github.com/longbridge/gpui-kit/pull/1848
- @yoogoc made their first contribution in https://github.com/longbridge/gpui-kit/pull/1871
- @elliottminns made their first contribution in https://github.com/longbridge/gpui-kit/pull/1917
- @fhluo made their first contribution in https://github.com/longbridge/gpui-kit/pull/1949
- @leoliu0605 made their first contribution in https://github.com/longbridge/gpui-kit/pull/1946
- @z-jxy made their first contribution in https://github.com/longbridge/gpui-kit/pull/1984
- @scottcg made their first contribution in https://github.com/longbridge/gpui-kit/pull/1985
- @PRRPCHT made their first contribution in https://github.com/longbridge/gpui-kit/pull/1970
- @Hizome made their first contribution in https://github.com/longbridge/gpui-kit/pull/1916
- @joris-gallot made their first contribution in https://github.com/longbridge/gpui-kit/pull/2041
- @suxiaoshao made their first contribution in https://github.com/longbridge/gpui-kit/pull/2084
- @tristanpoland made their first contribution in https://github.com/longbridge/gpui-kit/pull/2085
- @mengh04 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2096
- @lockedmutex made their first contribution in https://github.com/longbridge/gpui-kit/pull/2052
- @sassman made their first contribution in https://github.com/longbridge/gpui-kit/pull/2093
- @jacobtread made their first contribution in https://github.com/longbridge/gpui-kit/pull/2103
- @RivTian made their first contribution in https://github.com/longbridge/gpui-kit/pull/2104
- @ruri4 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2142
- @niteshbalusu11 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2154
- @KlausUllrich made their first contribution in https://github.com/longbridge/gpui-kit/pull/2144
- @jstnd made their first contribution in https://github.com/longbridge/gpui-kit/pull/2204
- @dunkmann00 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2206
- @xrtxn made their first contribution in https://github.com/longbridge/gpui-kit/pull/2210
- @nihalar made their first contribution in https://github.com/longbridge/gpui-kit/pull/2218
- @boboshan made their first contribution in https://github.com/longbridge/gpui-kit/pull/2230
- @ScottCUSA made their first contribution in https://github.com/longbridge/gpui-kit/pull/2239
- @lizhuangs made their first contribution in https://github.com/longbridge/gpui-kit/pull/2244
- @VOID404 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2212
- @lurenjia534 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2265
- @elcoosp made their first contribution in https://github.com/longbridge/gpui-kit/pull/2274
- @glani made their first contribution in https://github.com/longbridge/gpui-kit/pull/2278
- @BeratHundurel made their first contribution in https://github.com/longbridge/gpui-kit/pull/2286
- @regexident made their first contribution in https://github.com/longbridge/gpui-kit/pull/2310
- @Third-Thing made their first contribution in https://github.com/longbridge/gpui-kit/pull/2321
- @laojianzi made their first contribution in https://github.com/longbridge/gpui-kit/pull/2329
- @hewigovens made their first contribution in https://github.com/longbridge/gpui-kit/pull/2327
- @HuaGu-Dragon made their first contribution in https://github.com/longbridge/gpui-kit/pull/2354
- @Libadoxon made their first contribution in https://github.com/longbridge/gpui-kit/pull/2383
- @gaoyia made their first contribution in https://github.com/longbridge/gpui-kit/pull/2396
- @hlcfan made their first contribution in https://github.com/longbridge/gpui-kit/pull/2417
- @PeterDaveHello made their first contribution in https://github.com/longbridge/gpui-kit/pull/2427
- @mike-marcacci made their first contribution in https://github.com/longbridge/gpui-kit/pull/2414
- @panzhifu made their first contribution in https://github.com/longbridge/gpui-kit/pull/2433
- @jayson-saavylab made their first contribution in https://github.com/longbridge/gpui-kit/pull/2454
- @linyisu made their first contribution in https://github.com/longbridge/gpui-kit/pull/2455
- @Xemorr made their first contribution in https://github.com/longbridge/gpui-kit/pull/2485
- @Vanuan made their first contribution in https://github.com/longbridge/gpui-kit/pull/2504
- @berestadev made their first contribution in https://github.com/longbridge/gpui-kit/pull/2519
- @cyfung1031 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2509
- @gintsgints made their first contribution in https://github.com/longbridge/gpui-kit/pull/2545
- @MSIsunny made their first contribution in https://github.com/longbridge/gpui-kit/pull/2540
- @amos-aios made their first contribution in https://github.com/longbridge/gpui-kit/pull/2554
- @MuNeNiCK made their first contribution in https://github.com/longbridge/gpui-kit/pull/2570
- @sh4den made their first contribution in https://github.com/longbridge/gpui-kit/pull/2574
- @LumenLib made their first contribution in https://github.com/longbridge/gpui-kit/pull/2587
- @nuskey8 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2601
- @Ziqi-Yang made their first contribution in https://github.com/longbridge/gpui-kit/pull/2592
- @wabzqem made their first contribution in https://github.com/longbridge/gpui-kit/pull/2585
- @zzfn made their first contribution in https://github.com/longbridge/gpui-kit/pull/2613
- @railapex made their first contribution in https://github.com/longbridge/gpui-kit/pull/2638
- @bws428 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2641
- @cdbkk made their first contribution in https://github.com/longbridge/gpui-kit/pull/2645
- @ItsCacia made their first contribution in https://github.com/longbridge/gpui-kit/pull/2655
- @sagarkarn made their first contribution in https://github.com/longbridge/gpui-kit/pull/2662
- @narma made their first contribution in https://github.com/longbridge/gpui-kit/pull/2369
- @Camork made their first contribution in https://github.com/longbridge/gpui-kit/pull/2746
- @MohamedAffes0 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2736
- @jarviisha made their first contribution in https://github.com/longbridge/gpui-kit/pull/2775
- @Oluwasetemi made their first contribution in https://github.com/longbridge/gpui-kit/pull/2786
- @Lay523 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2791
- @thedavidweng made their first contribution in https://github.com/longbridge/gpui-kit/pull/2805
- @geoffbeier made their first contribution in https://github.com/longbridge/gpui-kit/pull/2806
- @Butch78 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2823
- @duo made their first contribution in https://github.com/longbridge/gpui-kit/pull/2827
- @setsun made their first contribution in https://github.com/longbridge/gpui-kit/pull/2851
- @jlucaso1 made their first contribution in https://github.com/longbridge/gpui-kit/pull/2884
- @timty made their first contribution in https://github.com/longbridge/gpui-kit/pull/2876
- @emmanuel-defreitas made their first contribution in https://github.com/longbridge/gpui-kit/pull/2872
- @wyhaya made their first contribution in https://github.com/longbridge/gpui-kit/pull/2880
Thank you for helping make GPUI Kit better! ❤️
v0.5.1
- chore: Fix compilation errors on macOS caused by
core-textdependency.
v0.5.0
ColorPicker
- color_picker: Add radius on focus border by @madcodelife in #1652
- color_picker: Only change value when it’s confirmed by @madcodelife in #1682
ContextMenu
- context_menu: Prevent mouse events when menu popped out by @madcodelife in #1750
Divider
- divider: Add support for dashed divider by @madcodelife in #1730
Dock
- dock: Render title bar based on visible panels by @madcodelife in #1697
- dock: Use
visible_panelsmethod by @madcodelife in #1698 - dock: Refactor Panel trait to has
&mut selfand&mut Context<Self>by @huacnlee in #1716 - dock: Fix title method missed thing in PR #1716 by @huacnlee in #1718
- dock: Improve Panel trait changed
titleto returnimpl IntoElementby @huacnlee in #1719 - dock: Fix tab panel first tab left border overlap issue by @madcodelife in #1734
- dock: Simplify DockItem API by @huacnlee in #1732
Editor
- editor: Add InlineCompletion LSP support by @duanebester in #1736
https://github.com/user-attachments/assets/8e437f1e-9792-4417-b070-0a1dd8de6024
- editor: Improve scroll to support position at the edge of the editor on click by @huacnlee in #1672
- editor: Fix cursor direction not resetting after mouseup by @FlyingYu-Z in #1708
Input
- input: Fix scroll to offset to support soft wrap mode by @huacnlee in #1671
- input: Change to input text size to smaller by @huacnlee in #1703
- input: Adjust blink cursor height by @huacnlee in #1704
- input: Add to support CodeEditor as single line mode by @zanmato in #1696
- input: Fix resetting highlighting for single line code editor by @zanmato in #1742
- input: Fix wrong font being used in Input by @zanmato in #1706
List
- list: Refactor ListDelegate to easy access delegate by @huacnlee in #1713
- list: Fix list item may overflow by @huacnlee in #1726
Menu
- menu: Use defer to avoid race conditions with click listeners by @zanmato in #1651
- menu: Add
check_sideto PopupMenu to support display check at right side by @huacnlee in #1677
Chat
- plot: Add support for stacked chart by @madcodelife in #1681
- chart: Add candlestick chart by @amiyzku in #1749
Scrollbar
Refactor Scrollbar API to easy to use, and tidy scrollbar position in entire of components.
- scrollbar: Remove
Scrollbar::uniform_scroll, useScrollbar::verticalinstead by @huacnlee in #1659 - scrollbar: Manage ScrollbarState in Scrollbar internal by @huacnlee in #1690
- scrollbar: Introduce
overflow_scrollbarto adds Scrollbars to elements by @huacnlee in #1694
Setting
https://github.com/user-attachments/assets/3c6315d9-1183-419c-bb17-a8f7ac0cf25c
Sidebar
- sidebar: Refactor Sidebar to support
Styledby @huacnlee in #1658 - sidebar: Fix Sidebar group and items gap by @huacnlee in #1705
Table
- table: Refactor TableDelegate to easy to access delegate by @huacnlee in #1712
- table: Add
render_headermethod to support custom table header by @huacnlee in #1746
Tab
TextView
- text_view: Adding optional code block actions to the TextView by @duanebester in #1725
Theme
- theme: Update macos-classic list even color and improved details by @obito-t in #1679, #1699, #1702
- theme: Add
switch.thumb.backgroundtheme config support by @han1548772930 in #1685 - theme: Use difference color like the window background for TitleBar by @huacnlee in #1686
TitleBar
- title_bar: Improve Styled support to TitleBar by @huacnlee in #1693
- title_bar: Fix TitleBar drag area on macOS, and only handle show window menu when it supports by @huacnlee in #1710
- title_bar: Remove window control bg color in normal mode by @huacnlee in #1720
Webview
- webview: Public the raw wry webview handle by @madcodelife in #1739
Others
- chore: Update to use Rust edition 2024 by @huacnlee in #1669
- chore: Fix dialog scroll by #1694 change by @huacnlee in #1695
- docs: Fix minor docs issues by @zanmato in #1656
- docs: Remove outdated note on README by @huacnlee in #1700
- docs: Add icons for page background to website by @huacnlee in #1701
- docs: Fix typo in notifications doc by @huacnlee in #1747
Full Changelog: https://github.com/longbridge/gpui-component/compare/v0.4.2…v0.5.0
v0.4.2
- menu: Use defer to avoid race conditions with click listeners by @zanmato in #1651
- input: Fix scroll to offset to support soft wrap mode. by @huacnlee in #1671
- editor: Improve scroll to support position at the edge of the editor on click. by @huacnlee in #1672
- tab: Allow tab item to fill remaining space. by @obito in #1654
- chore: Upgrade tracing-subscriber to fix CVE-2025-58160 @orbisai0security by in #1678
v0.4.1
Button
Chart
- chart: Add support to set stroke color on LineChart by @madcodelife in #1629
Dock
- dock: Don’t close tab via action when it can’t be closed via context menu by @CherryWorm in #1581
- dock: Add a way for Panels to track the tab bar they belong to by @CherryWorm in #1580
DropdownButton
Editor
Icon
- icon: Rework icons to make use of the
IconNamedtrait by @andreaskrath in #1640
Input
- input: Avoid blocking vertical scroll events in single-line mode (#1562) by @chulingera2025 in #1572
- input: Fix x offset resetting for single line inputs by @zanmato in #1591
List
- list: Fix incorrect selected item background color by @madcodelife in #1648
Menu
- menu: Fix icon width to tidy indent in
PopupMenuItem. by @madcodelife in #1620
Notification
- notification: Fix close animation not working when closed from content by @Moulberry in #1578
NumberInput
- number_input: Improve style details by @madcodelife in #1606
- number_input: Use input border on the buttons by @madcodelife in #1634
Resizable
- resizable: Improve to avoid panels from improperly resizing on container resizing. by @CherryWorm in #1560
Resizable & Dock
- resizable, dock: Improve Panel adjust size logic on layout changed. by @CherryWorm in #1588
Root
Select
Sidebar
- sidebar: Improve Sidebar to allows caret icon to expand submenu. by @huacnlee in #1642
- sidebar: Add to support disable state to sidebar item. by @adriano-tumino in #1645
Slider
- slider: Remove thumb tooltip by @CherryWorm in #1582
Table
- table: Split TableState to state.rs by @huacnlee in #1599
- table: Use click event instead of mouse down event by @madcodelife in #1622
Theme
- theme: Use
font_familyfor all elements. by @huacnlee in #1618 - theme: Fix
Flexoki Lightfocus color. by @huacnlee in #1647
Tiles
- tiles: Add auto-snap support for tiles panel to top and left edges by @ihavecoke in #1577
New Contributors
- @chulingera2025 made their first contribution in https://github.com/longbridge/gpui-component/pull/1572
- @zanmato made their first contribution in https://github.com/longbridge/gpui-component/pull/1591
- @adriano-tumino made their first contribution in https://github.com/longbridge/gpui-component/pull/1645
- @andreaskrath made their first contribution in https://github.com/longbridge/gpui-component/pull/1640
Full Changelog: https://github.com/longbridge/gpui-component/compare/v0.4.0…v0.4.1
v0.4.0
Break Change
In this version we have make a lot of breaking changes to improve the overall API consistency and usability.
If you are upgrading from v0.3.x, please check the changelog carefully and adjust your code accordingly, the PR links are provided for more details of each change.
- breadcrumb: Rename
itemtochildand addchildrenmethod. by @huacnlee in #1519 - clipboard: Removed
contentmethod from Clipboard. by @huacnlee in #1520 - dialog: Rename Modal to Dialog. by @huacnlee in #1538
- form: Renamed
columntocolumns. by @huacnlee in #1522 - form: Rename FormField to
Field. by @huacnlee in #1539 - input, select, date_picker: Refactor
cleanableto have argument and default to false. by @Moulberry in #1506 - list, table: Refactor List, Table to have ListState, TableState. by @huacnlee in #1468
- notification: Add
&mut Selftocontentandactionmethod. by @huacnlee in #1569 - radio: Rename
on_changetoon_clickfor RadioGroup. by @huacnlee in #1517 - resizable: Simplify Resizable API. by @huacnlee in #1459
- select, list: Update
searchabledefault to false. by @huacnlee in #1504 - sheet: Rename
DrawertoSheet. by @huacnlee in #1527 - spinner: Rename Indicator to Spinner. by @huacnlee in #1526
- tab: Refactor creation to use builder pattern by @madcodelife in #1553
- table: Change
context_menumethod in TableDelegate to mutablewindowandcx. by @huacnlee in #1487 - toggle: Refactor Toggle, ToggleGroup API. by @huacnlee in #1515
What’s New
Assets
- Add gpui-component-assets crate by @huacnlee in #1601 See Icon & Assets for how to use.
Button
- button: Remove duplicate disabled style by @madcodelife in #1529
- button_group: Add vertical by @Moulberry in #1537
- button_group: Fix overriding button click when no on_click by @Moulberry in #1546
Chart
- chart(pie): Support dynamic inner and outer radius by @madcodelife in #1444
- chart(bar): Fix the label is not centered by @madcodelife in #1448
Collapsible
ContextMenu
Input & Editor
- editor: Fix indent guides render position. by @huacnlee in #1524
- input: Improve double-click for word selection by @FlyingYu-Z in #1491
- input: Delete selected text with modifier keys by @Moulberry in #1497
- input: Avoid blocking vertical scroll events in single-line mode by @chulingera2025 in #1572
- input: Fix x offset resetting for single line inputs by @zanmato in #1591
Field
- form(field): Fix label line break not working by @madcodelife in #1558
Label
List
- list: Fix incorrect next selection when select index is none by @madcodelife in #1498
- list: Add
searchable,search_placeholderoption to List and Select. by @huacnlee in #1503 - list: Avoid select item when selectable(false). by @huacnlee in #1508
Menu
- menu: Add
itemand exportPopupMenuItemwith builder methods to PopupMenu. by @huacnlee in #1445 - menu: Fix #1545 Popover change broken submenu click in dropdown menu. by @huacnlee in #1563
Modal
- modal, drawer: Block background interaction when Modal, Drawer is active. by @FlyingYu-Z in #1483
- modal: Adjust close button position. by @huacnlee in #1532
NumberInput
- number_input: Improve style details by @madcodelife in #1606
Popover
- popover: Renamed
no_styletoappearancelike the Input. by @huacnlee in #1523 - popover: Improve Popover API. by @huacnlee in #1545
- popover: Fix #1545 incorrect to sync on_open_change to state. by @huacnlee in #1557
- popover: Fix click trigger to close popover. by @huacnlee in #1559
- popover: Revert defer_to focus on Popover open. by @huacnlee in #1571
Progress
- progress: Fix incorrect border radius by @madcodelife in #1555
Select
- select: Impl SelectItem for
&'static str. by @huacnlee in #1451 - select: Avoid reopen menu when clearing selection by @madcodelife in #1484
- select: Restore the selection when canceling by @madcodelife in #1501
Slider
- slider: Improve Slider interaction to click on bar to drag. by @CherryWorm in #1544
- slider: Add option to choose between linear and logarithmic scale by @CherryWorm in #1543
- slider: Remove thumb tooltip by @CherryWorm in #1582
Tab
Table
- table: Keep scroll to item at bottom when move down. by @huacnlee in #1499
- table: Fix Table stripe mode overflow scroll. by @huacnlee in #1530
- table: fix row border missing on first frame by @Moulberry in #1505
- table: Fix missing border on first frame by @Moulberry in #1533
Theme
- theme: Export more theme options for schema. by @huacnlee in #1442
- theme: Allows to use alpha color for active_border but at least 0.3. by @obito-t in #1531
Tiles
- tiles: Add
tile_radiustheme option and default 0px. by @huacnlee in #1441 - tiles: Add
scrollbar_showoption to Tiles by @ihavecoke in #1496 - tiles: Add to support panel auto-snap while drag movement by @ihavecoke in #1552
WebView
- webview: Add inspector feature to enable WebView developer tools by @ihavecoke in #1564
Other Changes
- docs: Fix typo in README charting description by @gurjeet in #1434
- docs: Remove incorrect
Accessibilitysection. by @huacnlee in #1439 - docs: Update chart by @madcodelife in #1446
- docs: Improve docs add more details. by @huacnlee in #1447
- docs: Add Context & ElementId doc. by @huacnlee in #1460
- docs: Update docs website style. by @huacnlee in #1488
- docs: Fix footer and add note to home page. by @huacnlee in #1511
- docs: Update version to v0.4.0-preview1 in docs. by @huacnlee in #1534
- chore: Rename Dropdown to Select, TextInput to Input. by @huacnlee in #1449
- chore: Keep spawn task on it owner. by @huacnlee in #1456
- chore: Update List, Tree, Kbd exports. by @huacnlee in #1467
- chore: Move
searchableto ListState and SelectState. by @huacnlee in #1507 - chore: Remove unused image example. by @huacnlee in #1510
- chore: Standardize the overall API and improve docs. by @huacnlee in #1516
- chore: Dependency
gpui-macros/inspectorto inspector features by @ihavecoke in #1568
New Contributors
- @gurjeet made their first contribution in https://github.com/longbridge/gpui-component/pull/1434
- @FlyingYu-Z made their first contribution in https://github.com/longbridge/gpui-component/pull/1483
- @Moulberry made their first contribution in https://github.com/longbridge/gpui-component/pull/1497
- @CherryWorm made their first contribution in https://github.com/longbridge/gpui-component/pull/1544
- @chulingera2025 made their first contribution in https://github.com/longbridge/gpui-component/pull/1572
- @zanmato made their first contribution in https://github.com/longbridge/gpui-component/pull/1591
Full Changelog: https://github.com/longbridge/gpui-component/compare/v0.3.1…v0.4.0
v0.3.1
What’s Changed
Input
- input: Fix may flash scroll when move cursor in auto grow mode. by @huacnlee in https://github.com/longbridge/gpui-component/pull/1419
Editor
- editor: Add indent guides. by @huacnlee in https://github.com/longbridge/gpui-component/pull/1426
- editor: Use
measure_indent_widthfor indent guides width. by @huacnlee in https://github.com/longbridge/gpui-component/pull/1428
List
- list: Use click events instead of mouse events when confirming by @madcodelife in https://github.com/longbridge/gpui-component/pull/1427
Tiles
- tiles: Ensure to response correct panel on drag or resize. by @huacnlee in https://github.com/longbridge/gpui-component/pull/1422
Theme
- theme: Update scrollbar background color to transparent for all themes. by @Copilot in https://github.com/longbridge/gpui-component/pull/1421
Example
- example: Add missed control icon assets by @iainlau in https://github.com/longbridge/gpui-component/pull/1424
- example: Fix title bar paddings for window_title example. by @huacnlee in https://github.com/longbridge/gpui-component/pull/1429
Others
- Add bump version shell by @madcodelife in https://github.com/longbridge/gpui-component/pull/1423
New Contributors
- @iainlau made their first contribution in https://github.com/longbridge/gpui-component/pull/1424
Full Changelog: https://github.com/longbridge/gpui-component/compare/v0.3.0…v0.3.1
v0.3.0
New features
Button
- button: Add support for
on_hoverevent by @madcodelife in #1341 - button: Fix the
on_hoverdoes not respond by @madcodelife in #1346 - button: Support specified anchor to dropdown button by @madcodelife in #1367
Checkbox
- checkbox: Do not stop propagation when click by @madcodelife in #1385
Dropdown
Editor
- editor: Fix code actions not display by @huacnlee in #1347
- editor: Add delay to trigger hover popover by @huacnlee in #1361
- editor: Improve hover popover delay by @huacnlee in #1389
Highlighter
Input
- input: impl Selectable for TextInput that allow it as trigger for popover by @richerfu in #1353
- input: Fix
set_valuewhen Input is disabled by @huacnlee in #1362 - input: Grouping input history to avoid IME placeholder by @huacnlee in #1375
- input: Fix Input panics when masked have non-ASCII characters by @huacnlee in #1382
- input: Stop propagation on scroll wheel by @huacnlee in #1406
- input: Hide scrollbar when not overflow in auto grow mode by @huacnlee in #1407
- input: Fix Input to prepare text wrapper by @huacnlee in #1417
Markdown
Menu
- menu: Fix submenu item selection when multiple submenus exist by @ihavecoke in #1342
- menu: Fix trigger action with context by @huacnlee in #1372
Plot
- plot: Add StepAfter kind to StokeStrike by @itsmgo in #1356
- plot: Add stroke style per each Y series by @itsmgo in #1364
- plot(line_chart): Add missing natural stroke style by @madcodelife in #1366
Scrollbar
- scrollbar: Fix scroll to show mode by @huacnlee in #1381
- scrollbar: Update scrollbar background color to transparent for all themes by @huacnlee #1421
VirtualList
- virtual_list: Fix VirtualList to limit only allow 1 direction scrollable by @huacnlee in #1386
- virtual_list: Fix VirtualList by measure item to get correct content_size to avoid scroll overflow by @huacnlee in #1388
Docs
Documentation website is online: https://longbridge.github.io/gpui-component
Others
New Contributors
- @richerfu made their first contribution in #1353
- @itsmgo made their first contribution in #1356
- @han1548772930 made their first contribution in #1370
- @YougLin-dev made their first contribution in #1398
- @vincenthz made their first contribution in #1404
- @stippi made their first contribution in #1410
v0.2.0
🚀 First release version to crates.io.
Improvements
Input & Text
- Disable context menu item for disabled input by @huacnlee (#1280)
- Use shape line for soft wrap lines by @huacnlee (#1293)
- Fix RopeExt replace method may not on a char boundary by @huacnlee (#1295)
- Update RopeExt to use LF style for line calc when
\rpresent by @huacnlee (#1296) - Fix Input to unselect on blur by @huacnlee (#1303)
- Avoid scroll on select all by @huacnlee (#1305)
- Clean to reset selection and scroll offset by @huacnlee (#1326)
- Implement styled for number input by @madcodelife (#1333)
Editor
- Add document_colors LSP by @huacnlee (#1329)
- Add to support move vertical for soft wrapped lines by @huacnlee (#1312)
- Avoid trigger hover on selection by @huacnlee (#1287)
- Improve
slice_linemethod performance by @huacnlee (#1290) - Improve TextWrapper performance by @huacnlee (#1292)
- Improve line number width by max lines by @huacnlee (#1291)
- Improve enter indent level performance by @huacnlee (#1304)
- Fix hover definition to hide immediately by @huacnlee (#1309)
- Fix Editor crash when content is empty by @huacnlee (#1314)
- Split Input and Editor background color by @huacnlee (#1323)
TextView & Highlight
- Refactor TextView/SyntaxHighlighter with async parsing to improve performance by @sunli829 (#1299)
- Support custom code block style by @huacnlee (#1288)
Theme & Style
- Fix Ayu theme comment color by @huacnlee (#1316)
- Update macos-classic dark theme color by @huacnlee (#1320)
- Update theme schema: remove
card, addgroup_boxby @huacnlee (#1321) - Fix button label overflow by @huacnlee (#1322)
- Bind element ID after button creation by @madcodelife (#1325)
- Let normal/active tabs share border to prevent flash by @huacnlee (#1327)
Menu & Context
- Better handle hover for menu item by @huacnlee (#1332)
- Add flex property to custom popup menu items by @ihavecoke (#1335)
- Improve MenuItem paddings by @huacnlee (#1339)
Bug Fixes
- Fix input mark text render by @huacnlee (#1298)
- Fix Editor crash when empty string triggers placeholder by @huacnlee (#1314)
- Fix context menu subscription leak by @huacnlee (#1337)
- Fix UTF-8 boundary in highlighter using
clip_offsetby @xudesheng (#1317)
Chores & Internal
- use async-wry by @sunli829 (#1300)
- Remove unnecessary RefCell by @sunli829 (#1301)
- Remove Wef code (moved to external crate) by @Copilot (#1302)
- Interpolate folder path via rust embed by @carlocorradini (#1318)
- Implement styled for custom style by @madcodelife (#1319)
New Contributors
- @xudesheng made their first contribution in https://github.com/longbridge/gpui-component/pull/1317
- @carlocorradini made their first contribution in https://github.com/longbridge/gpui-component/pull/1318
Full Changelog: https://github.com/longbridge/gpui-component/compare/v20250925…v0.2.0