
# Changelog
All notable changes to this project are documented in this file.

## [1.16.0] - 2026-04-16

### General

 - Software renderer: avoid doing dirty-region computation when we need to redraw the whole buffer.
 - Software renderer: Added `software-renderer-path` feature to enable `Path` with `no_std`.
 - Software renderer: Fix space character with sdf fonts.
 - FemtoVG & Software Renderer: Use `swash` for glyph rasterization for better text rendering.
 - Fixed Tab focus traversal for widgets in a `Flickable`. (#10780)
 - Skia: Enabled subpixel glyph positioning to fix uneven text spacing. (#10752)
 - Winit: Batch mouse move events to prevent too many move events from delaying rendering. (#9038)
 - Wasm: Enabled clipboard interaction by default.
 - LinuxKMS: Add support for WGPU based rendering with Skia and FemtoVG.
 - Qt and winit: Fixed restarting the event loop after being exited.
 - Fixed alpha blending when smooth-scaling images (#10469)
 - The winit backend is now the default on all platforms. (Qt is no longer the default on Linux)
 - Software renderer: Pre-rendered embedded glyphs are now embedded for multiple font weights.
 - Software renderer: Fixed division by zero with tiny images (#7863)
 - ContextMenuArea now uses a native menu on MacOS. (#8141)
 - Wasm: Changed default font to `Inter`.
 - Android: fixed incorrect window size when the surface size is not the same as the activity size.
 - Fixed virtual keyboard not closing on popup close

### Slint

 - `TouchArea` Fixed mouse cursor when going from one `TouchArea` to another. (#6443)
 - `Flickable` now starts capturing scroll event after the first scroll.
 - `Flickable`: Improved animations.
 - Fixed empty `GridLayout` not taking padding into account.
 - Added support for Keyboard shortcuts with `KeyBinding` element, `keys` type, and `@keys(...)` macro.
 - Added `shortcut` property to `MenuItem` element in `MenuBar`.
 - Added printable keys in the `Key` namespace.
 - Added support for styled text with `StyledText` element, `styled-text` type, and `@markdown(...)` macro.
 - Added `ScaleRotateGestureHandler` element for handling multi-touch pinch gestures.
 - Fixed compiler panic when accessing model data from a repeated menu. (#10927)
 - Added `Path::fit` property.
 - `TextHorizontalAlignment`: Added `start` and `end` variants.
 - Added `Platform::open-url` function to open a URL in the default browser.
 - Fixed two-way binding to struct field of type length (#10844)
 - Added `FontWeight` namespace with standards constants. (#11207)
 - Added support for `data:...` url in `@image-url()`.

### Widgets

 - Fluent is now the default style on all platforms.
 - `CheckBox` no longer intercepts the scroll event with the Qt style.
 - `Slider`: Ignore scroll events with the Qt style.
 - `ComboBox`: Clamp index on reset instead of using 0. (#10805)
 - `ComboBox`: Fixed scrolling to selected item when dropdown opens. (#10995)
 - `ComboBox`: Fixed popup closing on scrollbar interaction. (#10998)
 - `AboutSlint`: Open slint.dev in the browser when clicked.
 - Retrieve accent color from the system.

### Rust

 - Added `slint::platform::femtovg_renderer::FemtoVGWGPURenderer`.
 - Added variants for printable keys in the `slint::platform::Key` enum.
 - Added `KeyboardModifiers`, `KeyEvent`, and `StandardListViewItem` to the `slint::language` module.
 - Added support for multiple `@rust-attr` per struct or enum.
 - Added `open_url` method to the `Platform` trait. (#11035)
 - Upgraded fontique and parley dependencies: The `unstable-fontique-07` Cargo feature replaces the old `unstable-fontique-07` feature, along with
   `slint::fontique_08` replacing `slint::fontique_07`.
 - Implemented serde `Serialize` and `Deserialize` for `slint::ModelRc`.
 - Add the ability to have `slint::Weak` for globals.
 - Worked around slow compile time in release mode.

### Python

 - Added `slint.language` package to hold enums/structs from the Slint language.

### C++

 - Added constants for printable keys in the `slint::platform::key_codes` namespace
 - Added `slint::language` namespace to hold enums/structs from the Slint language.
 - Private headers have been moved to a `private` directory.
 - The slint-compiler now only writes the output file if the content has been modified.
 - ListView implementation is now shared with Rust and only instantiates items that are visible.

### JavaScript

 - Ported to napi-rs 3.0

### Tooling

  - LSP: fix formatting of struct type (#10647)
  - LSP: fix jump to definition of path with a leading `@library` (#10864)
  - LSP: do not autocomplete reserved properties in context where they do not apply (eg. `col` outside of a GridLayout)
  - viewer: handle global properties with the `--save-data` and `--load-data` arguments
  - Error message for binding loop now contains the entire cycle and the order is reversed.
  - Slintpad: persist editor content in history state across reloads.
  - Slintpad: Added File > New menu item
  - slint-tr-extractor: Fixed bad default for plural rules in generated pot file

## [1.15.1] - 2026-02-12

 - Fixed text rendering eliding when not required or not showing text due to rounding differences.
 - `GridLayout`: Honor colspan and rowspan in repeated rows. (#10727)
 - Rust: Fix cross-compilation when the target environment doens't provide a host fontconfig via pkg-config.
 - Interpreter: Fix two way bindings with properties in a parent scope. (#10704)
 - Winit: Fixed the "redo" (Ctrl+Shift+Z) shortcut.
 - Qt backend: Fixed blurry svg rendering with a scale factor. (#10726)
 - live-preview: Properly close the preview when the LSP exits instead of killing the process.
 - LSP: Fixed error when the loaded file is deleted on disk.

## [1.15.0] - 2026-02-04

### General

 - **breaking change**: Adjust Android implementation of the window safe area to match the iOS implementation.
 - When resizing the window, try to keep the focus item visible if it's in a `Flickable`.
 - When focusing an element that's not fully visible, try to scroll a parent `Flickable` so that it is.
 - winit backend: Do not enable the x11/wayland feature through accessibility feature.
 - Skia: Fixed colorized tile rendering. (#9860)
 - partial renderer: Fixed `BorrowMutError` panic if items gets destroyed during rendering. (#9882)
 - software renderer: Added support for the `Path` element (not supported in `no_std` or freestanding).
 - Fixed rendering of clipped layers. (#10037)
 - slint-compiler: Change diagnostics to use the `annotate-snippets` crate.
 - slint-compiler: Diagnostics now report range instead of just a position.
 - Translations: allow to opt out of default context.
 - Fixed debug performance overlay not working. (#10198)
 - Qt backend: worked around leak in Plasma when setting a window icon.
 - Fixed flicking animation in ListView. (#7043)
 - Align text and image rendering to pixel boundaries.

### Slint Language

 - Added support for two way bindings to struct fields.
 - Added four new properties to the Window element for exposing the safe area to Slint.
 - Added the `accessible-id` property.
 - Added `AccessibleRole.radio-button`.
 - Added `stroke-line-join` for Path. (#9912)
 - Added `from <angle>` syntax to `@conic-gradient`.
 - `GridLayout`: `row`, `col`, `colspan`, and `rowspan` properties can now be changed at runtime.
 - `GridLayout`: Support for `if` and `for`.
 - Fixed missing dependency detection on `Image.source-clip`.
 - Accessing properties within `Menu` from the outside is now a compile error instead of a panic. (#9443)
 - Added `Colors.oklch()` and `.to-oklch()` functions.
 - Fixed reactivity of animated bindings. (#348)
 - Add warning about non-top-level `Window` usage.

### Widgets

 - `ScrollView`: In fluent style, fixed scroll bars to adjust to each other's visibility.
 - `Slider`: Implemented `increment`, `decrement` and `set-value` accessibility actions on Slider. (#9975)
 - `Slider`: Inverted vertical slider direction.
 - Fixed menu item spacing in fluent style (#10484)
 - Fixed some widgets that could still be edited when disabled or read-only.
 - `SpinBox`: added `read-only` property
 - `TabWidget`: added `orientation` property (#3688)
 - `TextEdit` and `LineEdit`: Added `font-family` and `font-italic` properties

### Rust

 - Added `slint::fontique_07` module, guarded with `unstable-fontique-07` feature, to provide access
   to fontique collection types for registering custom fonts at run-time.
 - Added `slint::language::ColorScheme`.
 - In live preview mode, fixed panic when custom models access the component's property. (#10278)
 - Relaxed bounds on associated functions in `slint::SortModel`.
 - Don't generate full code for `slint!` macro when ran under rust-analyzer.
 - Updated to WGPU 28 and drop WGPU 26.

### C++

 - Fixed crash when binding is accessing a deleted parent. (#3464)
 - Fixed mingw-llvm builds.
 - Fixed build generation failing when compiling multiple .slint files.
 - Fixed crashes with freestanding builds. (#10077)
 - It's now possible to access platform native window handles, like a HWND on Windows.

### Python

 - Fixed support for underscores in async callback decorators. (#10024)
 - slint-compiler: added support for generating Python stubs. (#4136)

### Tools:

 - LSP: Fixed column position of non-acii for UTF16-based editor. (#5669)
 - LSP: Fixed `vscode-remote://` url.
 - LSP: Added support for `@conic-gradient` completion. (#10444)
 - LSP: Fixed reloading dependencies when file changes on disk.
 - LSP: add function argument name when auto-complete function call. (#10560)
 - tr-extractor: Make the paths argument required. (#10156)
 - Added gdb pretty printer for `SharedVector` and `Slice`.

## [1.14.1] - 2025-10-23

 - Updated xkbcommon and fsdm dependencies
 - Relicensed Zed editor extension to fullfill Zed's new license requirements
 - Rust: Fixed incorrect conversion to and from premultiplied ARGB in `Image::to_rgba8` and `Image::to_rgba8_premultiplied` (#9810)
 - winit: Fixed panic when accessing `Palette.color-scheme` during muda menubar build (#9792)
 - Fixed docs.rs build by adjusting features metadata

## [1.14.0] - 2025-10-21

### General

 - Fixed panic when clicking outside of a menu for a ContextMenuArea that is in a condition
 - Close active sibling popups before creating a new one (#9178)
 - Skia/WGPU/DX12: Fixed crash when resizing window (#9320)
 - Skia: Upgrade to skia-safe 0.88
 - Android: Hide Android selection handles when scrolled out of view
 - Wasm: fix mac-specific shortcut when detecting macOs via browser User-Agent
 - macOs: Implement Cmd+Backspace to delete to the start of a line in a TextInput
 - muda: On Windows, force the menu bar to be redrawn after menus are rebuilt (#9435)
 - use `fontique` and `parley` crate for text layout
 - Fixed maximum size of empty layout with alignment
 - partial renderer: Don't mark region dirty if the geometry is dirty but hasn't changed
 - Close PopupWindow when their parent is destroyed
 - Fixed scrolling of ListView with varying item heights (#9208)
 - Display the dirty region when running the software renderer with `SLINT_DEBUG_PERFORMANCE`.

### Slint Language

 - Added support for rotation and scaling of all elements and their children
 - GridLayout: allow access to row/col/rowspan/colspan properties from other bindings
 - Added `Math.sign()` (#9444)
 - The slint compiler now emits a warning if a statement is without effect (#9474)
 - Addded `LayoutAlignment.space-evenly` (#9545)

### Widgets

 - TextInput: don't allow undo/redo when read-only (#9609)
 - Added Button::icon-size (#9279)
 - Fixed TimePickerPopup placement logic (#9262)
 - LineEdit: implemented show-password icon for the Qt style
 - Slider: Fixed track geometry to account for handle size (#9449)
 - Menu: fixed menu separator appearence (#8339)
 - LineEdit: call `edited` callback when the "x" button is pressed
 - ScrollView: Fixed scrolled callback with Qt style (#9574)
 - TextEdit: made `has-focus` an `out` property

### Rust

 - Minimum Supported Rust Version (MSRV) is 1.88
 - Slint macro: Use new Rust 1.88 API proc_macro API to be able to access file relative to the .rs file
 - Fixed error in generated Rust code when convering some expressions to void
 - Upgraded WGPU dependency to version 27: The `unstable-wgpu-27` Cargo feature exists next to the old `unstable-wgpu-26` feature,
   alongside the `slint::wgpu_27` module.
 - Added support for `unstable-wgpu-*` and `BackendSelector`'s `require_wgpu_*` on Android.

### Python

 - Added support for asyncio by making the Slint event loop act as asyncio event loop.
 - Added suport for translations via `slint.init_translations()` accepting a `gettext.GNUTranslation`.
 - Added support for using the `@slint.callback()` decorator with `async` functions, as long as they don't return any value.

### Tools:

 - SlintPad: add a way to load libraries with `?lib=...`
 - live-preview: Added a context menu to the library panel to rename or preview components
 - live-preview: Added search in the properties list
 - live-preview: Fixed resizing elements not in layout
 - live-preview: Fixed resetting binding of declared properties
 - live-preview: Added a way to always see the code of properties
 - live-preview: Added support for editing `@conical-gradient` in the color picker
 - formatter: Format `import` statements

## [1.13.1] - 2025-09-11

 - Windows: Fixed flickering when updating the menu bar.
 - LinuxKMS: Fixed build with just renderer-femtovg
 - LinuxKMS: Fixed GPU based rendering on systems where the driver reported no DRM planes.
 - Qt: use the cursor flash time from the config
 - Fixed spurious Slint compiler error when using `ContextMenuArea` in component within a `if` or `for`
 - C++: fixed the live preview feature missing the `slint_live_preview.h` header (#9335)
 - FemtoVG: added support for conical gradients (#9334)
 - FemtoVG: Fixed panic when using rendering notifiers in Wasm with WebGL.
 - `SwipeGestureHandler`: improved thresholds and destection of move when embedded in another `SwipeGestureHandler`
 - MCU: fix timer not starting if started before first call to `update_timers_and_animations`
 - wasm: Fix sizing of the window based on the canvas size or the preferred size
 - LSP: fix renaming elements id that have a `-` or `_` mismatch.
 - live-preivew: allow to edit element id
 - live-preview: search line edit for the library
 - Slintpad: compress the snippet in the URL

## [1.13.0] - 2025-09-03

### General

 - winit: Fixed the maximize window not being disabled for fixed-size windows.
 - winit: Added support for timer based frame throttling (#8826).
 - winit: Added support for custom event hooks (`with_winit_custom_application_handler`).
 - winit: Fall back to software rendering if there are no GPU-backed WGPU adapters (#9164).
 - LinuxKMS: Added support for overriding the default framebuffer interface selection/
 - LinuxKMS: Added support for a padded legacy linux framebuffers.
 - LinuxKMS: Added support for libinput event hooks (behind `unstable-libinput-09` feature flag)
 - Skia: Fixed `no-wrap` still wrapping text (#7080)
 - Skia: Added support for importing WGPU textures, via `unstable-wgpu-26` when Skia is enabled.
 - Software renderer: Add radial gradient support (#8980)
 - Software renderer: Fix rendering of the Qt style (#9006)
 - Windows: Fixed menu bar in fullscreen mode
 - Windows: Context menus are now using native look and feel.
 - Fixed gradient rendering bugs in Qt and FemtoVG renderers (#9030, #7909)

### Slint Language

 - Callback handlers no longer need curly-braces. Extra semi-colon is no longer an error. (#8401)
 - Added support for local variable with `let` (#2752)
 - `MenuItem`: Added `icon`, `checkable`, and `checked` properties.
 - `MenuBar` can now be hidden by placing it in a `if`.
 - Fixed `MenuSeparator` not always being visible.
 - `Flickable`: Forward wheel events in a orthogonal direction to their parent.
 - Added a compiler warning when using `padding` outside of layouts (#6288).
 - `Timer`: Added `stop()`, `start()`, and `restart()` functions (#8821).
 - `FocusScope`: Added `focus-on-click` and `focus-on-tab-navigation` properties.
 - `FocusScope`: Added `capture_key_pressed` and `capture_key_released` callbacks
 - `Dialog` and `Window` that aren't top-level now draw their background.
 - Added support for `@conic-gradient` (#9021)
 - `Path`: Fixed changing `commands` or path sub-elements in a component that inherit from `Path`.
 - `Path`: Fix settings `commands` from states (#4080)
 - Added `Key.Back` for the back key on android.
 - Added an `Easing` namespace to reference easing curve outside of `easing` properties.
 - `focus()` can now be called on invisible items.
 - `Window`: Fixed `default-font-size` not propagating into `PopupWindow`.

### Widgets

 - `LineEdit`: Show a clear icon when not empty.
 - `LineEdit`: Users can toggle password visibility via an icon when `input-type` is set to `password`.

### Rust

 - Minimum Supported Rust Version (MSRV) is 1.85
 - Upgraded WGPU dependency to version 26: The `unstable-wgpu-26` Cargo feature replaces the old `unstable-wgpu-24` feature,
   and the `slint::wgpu_26` module replaces the `slint::wgpu_24` module. There were no further changes to the API.
 - Fixed compilation of generated code if the slint code declares a type named `core`.
 - Support for live-preview with the `slint/live-preview` feature and `SLINT_LIVE_PREVIEW` env variable
 - winit: Added API to await for the existence of the winit window
 - Added `FromIterator<char>` and `Extend<char>` for `SharedString`
 - Added `SharedVector::reserve()`

### C++

 - Added `SharedString::clear()`.
 - Support for live-preview with the `SLINT_FEATURE_LIVE_PREVIEW` feature and `SLINT_LIVE_PREVIEW` env variable
 - `SLINT_FEATURE_RENDERER_FEMTOVG_WGPU` is no longer enabled by default
 - esp-idf: `slint::invoke_from_event_loop` can now be invoked before starting the event loop.
 - Fixed Windows AArch64 support

### Node.js API

 - Fixed panic when attempting to convert brushes to colors.

### Python

 - Added support for automatically mapping exported Slint enums to property Python `enum.Enum` subclasses.
 - Add support for creating slint.Image objects from arrays (#9014)

### Tooling

 - lsp: allow to rename functions and callbacks
 - lsp: show documentation comments in the hoover/tooltip (#9057)
 - live-preview: Move the preview in a separate process
 - live-preview: allow dropping in a `ListView` by adding a `for` loop
 - live-preview: Added an "Outline" panel
 - live-preview: Fixed highlighted elements not following items
 - live-preview: Added undo/redo support
 - slint-compiler: Guess default output format from file extension
 - SlintPad: replace the web menu bar with the preview menu bar. Move the preview on the left.

## [1.12.1] - 2025-06-25

### General

 - Fixed invalid code gen with return statements. (#8723)
 - Updated `muda` dependency to avoid outdated and insecure `gtk` dependency to appear in the `Cargo.lock` file even if it was not used. (#7800)
 - Fixed memory leaks and crash in change callbacks (#8768, #8741)
 - winit: Fixed window constraints (min, max, pref) not being applied sometimes (#8765)
 - No longer generate unused structs in the generated code to avoid warnings with Rust 1.89

### Slint Language

 - Enums without value cause compilation errors (instead of panics)
 - Fixed runtime and compile errors when accessing the `Platform` global from within other globals. (#8777)

### Node.js API

 - Added packages for Windows on ARM.

### C++

 - Fixed compilation of `PopupWindow::show()` in changed callbacks. (#8710)

### LSP and Tooling

 - Added binaries for Windows on ARM (VS Code extension, slint-lsp binaries).
 - Fixed potential crashes due to stack overflows on Windows.
 - live-preview: Lazily compute palette to speedup the UI.

## [1.12.0] - 2025-06-16

### General

 - Added `renderer-femtovg-wgpu` (Rust) / `SLINT_FEATURE_RENDERER_FEMTOVG_WGPU` (CMake) as new rendering option,
   based on [WGPU](https://wgpu.rs/).
 - Fixed `Window::default-font` not working in the live preview.
 - Initial iOS support.
 - FemtoVG: Fixed extra space of the `\n` char in text rendering (#7970).
 - Android: Commit the preedit text when focus change (#8668).
 - Winit: Added support for SVG icons in the window title.
 - Winit: Fixed blinking window icon on Windows (#7994).
 - Updated AccessKit.

### Slint Language

 - Fixed detection of binding loops that apply to the `Window` itself.
 - Added `Math.exp` and `Math.ln`.
 - Added `Platform.style-name` and `Platform.os` properties to permit style and OS dependent code.
 - Fixed changed callback on private global properties (#8269).
 - Added `ContextMenuArea::enabled`.
 - Fixed Slint compilation error for comparison of types that can't be compared with less or greater operator.
 - `Flickable` now keeps in bounds when geometry changes (#2227, #7487).
 - Added `in-out` transition in states.
 - Added `focus-gained` and `focus-lost` callback to `FocusScope`.
 - Added a `FocusReason` argument to the `FocusScope` callbacks.
 - Fixed `TextInput` to selects its content when focused with the keyboard on Windows and Linux.
 - Fixed `TextInput` to no longer be focusable if disabled.

### Widgets

 - Fixed `ScrollView` scrollbar actions not triggering `scrolled` callback (#8170).
 - `GroupBox`: Added `content-padding` property (#8314).
 - `TextEdit`/`LineEdit`: Disable context menu action when the widget is disabled or read-only.
 - `ScrollView`: Added `mouse-drag-pan-enabled` property (#8512).

### Rust

 - Added `unstable-winit-030` feature along with `slint::winit_030` module in the API to provide access
   to winit APIs.
 - Added `unstable-wgpu-24` feature along with `slint::wgpu_24` module to enable Slint <> WGPU interoperatiblity.
 - Made `Debug` impl of `PlatformError` show the display string.
 - slint-build: Implement `Clone` for `CompilerConfiguration`.
 - slint-interpreter: Fixed `From<ModelRc> for slint_interpreter::Value` to return a model that supports `set_row_data`.

### C++

 - Made generated code more robust when in namespaces regarding forward declaration.
 - Added a few asserts to ensure the code is run in the right thread.
 - Don't crash when `Model::row_data` returns `nullopt`.
 - Rust 1.85 is now required to compile from source.

### Python

 - Upgraded to Pyo3 0.25.
 - Added iOS Simulator and Device wheels.

### LSP and Tooling

 - live preview: Do not apply live data changes after "Reload".
 - live preview: Added telemetry events.
 - live preview: support Palette names in color picker.
 - live-preview: Added a console panel with complation error and `debug(...)` messages.
 - figma-inspector: Enables the export of design tokens (variables for colors, numbers, strings, and booleans).
   direct from your Figma files.
 - figma-inspector: Inspected components now can include design token variable reference for convenient pasting into slint files..

## [1.11.0] - 2025-04-23

### General

 - Fixed compilation failure with mingw by disabling jemalloc.
 - Fixed non-square radial gradients. (#7899)
 - Fixed timer starting before property initialization is complete in the interpreter. (#7848)
 - Fixed ctrl/cmd swap in wasm in macOS browsers. (#7477)
 - Fixed panic in accesskit when opening popups. (#7854)
 - Software renderer: fixed drawing background of rotated screen.
 - Software renderer: Fixed overflow for font bigger than 256px. (#7936)
 - Skia renderer: Changed default on Windows to use the software renderer, instead of Direct3D.
 - Skia renderer: Fixed artifacts when using the partial renderer. (#8066)

### Slint Language

 - Added `float.to-fixed()` and `float.to-precision()`.
 - Added `string.to-lowercase()` and `string.to-uppercase()`.
 - Fixed change handler on an aliased property. (#7784, #7747)
 - Fixed compiler panic when one branch of the `if` statement is not a void expression. (#7864)
 - Fixed `@children` as sibling to `Timer` or `PopupWindow`. (#7887)
 - Deprecated alias to global callbacks and make it an error when setting it, instead of a panic. (#7806)
 - Conditional element no longer re-instantiates if the condition gets dirty without changing. (#3953)
 - Fixed crash if a component get destroyed when a function or callback of it is running. (#7880)
 - `Color.hsv()`: The hue value now wraps instead of clamping between 0 and 360. e.g. a hue of `480` would wrap as expected to `120`.
   Previously any value equal or greater than 360 would cause the function to output pure black. In the unlikely case an app relied
   on this keep an eye out as a color will now show up instead of black.
 - Fixed reading from `MenuItem::title` properties. (#8080, #8090)
 - Fixed inconsistencies when accessing arrays at negative indices. (#8222)
 - Allow trailing commas in import statements. (#4922)

### Widgets

 - Fixed horizontal tab stretch with material style.
 - `ScrollView`: Fixed scroll thumb size on small sizes. (#7809)
 - `MenuBar` reacts to hover event when the menu is open. (#7822)
 - Added `MenuSeparator` sub-element in `Menu`. (#7790)
 - Added `MenuItem::enabled`.
 - Added `StandardButton::primary`.

### C++

 - Allow vendored corrosion by using find_package to search for it. (#7797)
 - Optimize memory usage avoiding creating dependencies for constant properties.
 - Fixed overflow when subtracting unsigned in the Slint language.
 - esp-idf: select `slint::Rgb8Pixel` by default when `CONFIG_BSP_LCD_COLOR_FORMAT_RGB888` is set.
 - Added support for overriding the translation domain via a CMake target property.
 - Fixed `Math.mod` with negative numbers.
 - Fixed segfault when calling `Model::row_changed` right after `Model::reset`. (#8021)
 - Added `notify_` prefix to the `Model` protected function, and deprecated old names. (#3888)

### LSP and Tooling

 - live-preview: Show why no live data is present. (#7783)
 - live-preview: New brush/color input widgets.
 - live-preview: Focus the right widget when the preview is reloaded. (#4055)
 - live-preview: Persist the live data when the preview is reloaded.
 - live-preview: Improve std-widget use detection. (#8086)
 - live-preview: Added a table to edit model in the data tab.
 - live-preview: Fixed preview of menu bar on platforms with native menu bar.
 - viewer: Support gradients in json data. (#7913)

## [1.10.0] - 2025-02-28

### General

 - Minimum Supported Rust Version (MSRV) is 1.82.
 - Android: Fixed build with newer JDK.
 - Winit backend: Fixed panic when `PopupWindow` is opened while AccessKit is active.
 - Skia renderer: Added support for partial rendering when using software rendering.
 - Qt backend: Fixed crash at exit with Qt 5.8. (#7570)
 - Qt backend: Fixed the Escape key not closing `PopupWindow`. (#7332)
 - Software renderer: Fixed support for changing the `Window` background.
 - Software renderer: Added support for pre-rendering glyphs with signed distance fields.

### Slint Language

 - Elements of a `for` loop now only get re-created if the model is changed, not if it is only dirty. (#7245)
 - Binding loops involving the condition of a `if` in a layout are now detected. (#7126)
 - Added  `.is-empty` and `.character-count` accessor to the string type.
 - Added `ContextMenu` and `MenuBar`.
 - Fixed panic change callbacks used with unused properties. (#7316)
 - Added `Path::stroke-line-cap` property. (#4676)
 - Special sub elements such as `Row`, `Tab` or `MenuItem` are now accepted in `@children`.
 - Accessibility: Added `accessible-expandable`, `accessible-expanded`, and `accessible-readonly` properties and `accessible-action-expand` callback.
 - Accessibility: Added `AccessibleRole.image` role.
 - Made `forward-focus` in a `PopupWindow` to focus a widget when a popup is open. (#7529)
 - Added `TextInput::page-height` to support PageUp and PageDown shortcuts.
 - Fixed panic when using gradient backgrounds with `Window`.

### Widgets

 - Fixed `StandardListView` not always getting the focus.
 - Fixed panic when accessing "negative" items if there are hidden elements in the `ListView`.
 - Fixed positions of elements in a `ListView` with millions of items. (3700)
 - `ListView`: adapt the viewport's width based on the minimum-width of delegate.
 - `Slider`: React to Home and End keys.
 - `ComboBox`: Improved accessibility.
 - `ComboBox`: Don't change selected item on mouse wheel, unless it has focus. (#5929)
 - `StandardTableView`: Added missing properties from `ListView`. (#7543)
 - `LineEdit`/`TextEdit`: Added a context menu with copy/paste/select all.

### Rust

 - Upgraded image crate to 0.25, added a new `image-default-formats` cargo feature to enable all image formats.
 - Ignore pedantic and nursery clippy warnings in generated code.
 - Fixed edition 2024 warnings in generated code.
 - Fixed `Sync` and `Send` bounds on `SharedVector`, `SharedString`, and `Weak`.
 - Removed the requirement that for `VecModel<T>::default()` `T` has to implement `Default`.
 - Implement `Default` for `BackendSelector`.

### C++

 - esp-idf: Added support for RGB8 rendering.
 - esp-idf: Rename `SlintPlatformConfiguration`'s `color_swap_16` to `byte_swap`.
 - esp-idf: Deprecated old version of `slint_esp_init` and restored 1.6 behavior with regards to color swapping.
 - Fixed bundled translation without custom backend.

### LSP and Tooling

 - live-preview: Fix loading the library path config
 - live-preview (macOS): Add a Window menu with keep the window on top
 - live-preview: selection popup no longer contains invisible or clipped items
 - live-preview: fix editing of translated string.
 - LSP: no longer suggest private properties in auto-completion
 - LSP: add ability to rename properties and globals
 - Simple Figma inspector plugin
 - Use jemalloc as default allocator for our binaries
 - VSCode extension: Removed the status bar item for the preview

## [1.9.2] - 2025-01-13

### General

 - Improved support for building Slint with Bazel.
 - Expose `PopupWindow` in the accessibility tree.
 - Fixed support for older android versions (Android 6).
 - Fixed `Flickable` not scrolling when starting slow (#7152).
 - LinuxKMS backend: Fix support for triple-buffering with DRM outputs.
 - Fixed panic with FemtoVG and Skia renderers for certain drop shadows.
 - Fixed closing `PopupWindow` when the click opens another `PopupWindow` (#7322).
 - Fixed `popup.close()` not working in the interpreter (#7318).

### Slint Language

 - Added `AccessibleRole::tab-panel` and fixed accessibility on `TabWidget` (#7270)
 - Added `AccessibleRole::groupbox` and fixed accessibility on `GroupBox`
 - Better error recovery when element name is missing.
 - Added warning when a type name overwrites another.
 - Added `Path::anti-alias` property.
 - Fixed compiler panic with  `Row{ @children }`.
 - Skip UTF-8 Byte order mark (BOM) at the beginning of a file (#7291).

### Widgets

 - Fixed `StandardButton` not being focusable (#7230).

### C++

 - Updated corrosion dependency, fixing build with Rustup 1.28.
 - Added armhf/arm64 Linux binary packages to release.

### Rust

 - Added `Window::try_dispatch_event` which is a non-panicking version of `dispatch_event`.

### Tools

 - Binary packages: Disabled Qt backend.
 - LSP: Fix ranges in textDocument/documentSymbol.
 - LSP: Fixed panic in autocompletion of file patch with unicode.
 - LSP: Added ability to rename struct and enums.
 - LSP: Fixed error reporting when opening the live-preview fails (#7255).
 - Viewer: struct are now supported in callback argument (passed as JSON) (#7206).

## [1.9.1] - 2024-12-21

### General

 - Skia: Fix Metal and D3D defaults on macOS / Windows.
 - Winit backend: Fix build with only software renderer enabled.
 - Fixed build on https://docs.rs/slint
 - Live-preview: Improvements of the filter in selection popup

## [1.9.0] - 2024-12-18

### General

 - Minimum Supported Rust Version (MSRV) is 1.77.
 - Added functions to set the XDG app ID on Wayland/X11. (#1332)
 - Added ability to bundle translations in the binary.
 - Fixed panics in timer handling. (#6187, #6505)
 - Fixed support for older Android versions (9.0).
 - Android: handle the Destroy event properly. (#6626)
 - winit: automatically disabled maximize button when window resizing is disabled.
 - winit: react to dark/light color scheme changes on Linux (other platforms were already working before). (#4392)

### Slint Language

 - Callback arguments can now be named.
 - Animations: Added `direction` property. (#6260)
 - `TextInput`: Fixed selection colors not begin picked up from the selected style. (#6326)
 - `TextInput`: Added `key-pressed` and `key-released` callbacks to intercept key events.
 - Fixed `TextInput` mouse cursor after left click. (#6444)
 - Improved deselection behavior when pressing left/right in `TextInput`. (#6511)
 - Fixed `changed` callback on unused properties causing compiler panic. (#6331)
 - Fixed geometry constraints when they are partially inferred from the content and partially inferred from the explicit constraints. (#6285)
 - Deprecated two-way binding between `in` and `in-out` properties. (#6400)
 - `TouchArea`: When `enabled` is set to false while pressed, send cancel event and update `pressed` and `has-hover` properties. (#6422)
 - `Text`/`TextInput`: Added `font-metrics` property. (#6047)
 - Added `accessible-item-selectable`, `accessible-item-selected`, `accessible-enabled`, `accessible-item-index`, and `accessible-delegate-focus` properties.
 - Emit a warning when the case of the import file differs from the case of the file that was imported. (#4265)
 - Support property changed callbacks in globals. (#6599)
 - `Window`: Added `full-screen` (#6665) property.
 - `Window::icon` is now used as the big taskbar icon on Windows.
 - Fixed `min(..)` and `max(..)` functions with `rem` units.
 - Emit a warning when a `@linear-gradient` or `@radial-gradient` is assigned directly to a color property. (#6819)
 - Fixed `min`/`max`/`clamp` functions with percentage arguments. (#7118)
 - Adjusted thresholds and behavior of the `SwipeGestureHandler`. (#6344, #6542, #6543)
 - `PopupWindow`: Improved positioning to avoid clipping by the window.
 - `PopupWindow`: Supported multiple popup windows at the same time. (#4356)
 - `PopupWindow`: Added `close-policy` property, deprecated `close-on-click`. (#6614)
 - `PopupWindow`: Close when the escape key is pressed.
 - Fixed focus handling in `PopupWindow`.
 - Fixed bugs with global cross-references. (#6984)

### Widgets

 - `CheckBox`: Fixed text color in Fluent style. (#6239)
 - `CheckBox`: Removed margin in Fluent and Cupertino styles. (#6639)
 - `LineEdit`: Fixed cursor drawing out of bounds. (#6243)
 - `TabWidget`: Fixed tabs overflow behavior. (#6517)
 - `SpinBox`: added `horizontal-alignment` property.
 - Undeprecated `StyleMetrics` layout properties (`layout-spacing` / `layout-padding`).
 - `Slider`: Added `step` property.
 - `StandardListView`: Improved keyboard navigation. (#6955)
 - Fixed `init` and `changed` callbacks not always being called in `ListView`. (#6836)

### Rust API

 - Added `slint_build::compile_with_output_path`.
 - Fixed `init=>` callback on PopupWindow running twice in Rust-generated code.
 - Derived serde traits for `PhysicalPosition`, `LogicalPosition`, `PhysicalSize`, and `LogicalSize`. (#6534)
 - Use `approx_eq` to compare floats in the generated code.
 - Added `BackendSelector` to select backend, renderer, and renderer specific features.
 - Added `ToSharedString` trait. (#6845)
 - Implement `AsRef<Path>` and `AsRef<OsStr>` for `SharedString`.

### C++ API

 - Added `Image::to_rgb8/to_rgba8/to_rgba8_premultiplied` pixel buffer accessors. (#6399)
 - Added `SharedString::size()`. (#6417)
 - CMake: Support generator expressions for `SLINT_EMBED_RESOURCES` and `SLINT_SCALE_FACTOR`.
 - Add `_` to the end of generated identifiers that would otherwise be keywords. (#5613)
 - Improved float comparisons in the generated code.
 - esp-idf: Fixed vsync locking.
 - Added `to_lowercase` and `to_uppercase` to `slint::SharedString`. (#6869)
 - Added `slint::Window::take_snapshot()`.

### Node.js API

 - Added support for enums.
 - Added `initTranslations` function. (#6504)

### LSP and Tooling

 - LSP: Auto-completion of changed callbacks.
 - LSP: Preserve `_` when auto-completing element identifiers. (#6479)
 - LSP: Added image preview in tooltip for `@image-url`.
 - LSP: Fixed reloading files that import a changed file.
 - LSP: Implemented signature help.
 - LSP: Added a code lense to populate empty documents with a hello world.
 - live-preview: Added new selection popup.
 - live-preview: Bring the window to the front and focused it when clicking "Show preview" in the editor. (#196)
 - live-preview: On macOS, renamed "Quit" to "Close" and used cmd+w to close the window.
 - live-preview: Fixed panic if `run_event_loop` returns an error, showing an error in the editor instead.
 - live-preview: Fixed panic when dragging elements onto layouts.
 - live-preview: In the property editor, filter layout properties not applicable to the selected element.
 - live-preview: In the property editor, visualize negative numbers.
 - live-preview: Delay updating the preview.
 - live-preview: Reload when image resources changed on disk.
 - live-preview: macOS: Added support for reloading via cmd+r.
 - SlintPad: Updated Monaco editor and other dependencies.

### Renderer

 - FemtoVG: Fixed artifacts of texture sampling with accidental wrap-around on texture boundaries.
 - FemtoVG: Fixed rendering of fonts that rely on non-zero winding rule (such as Inter).
 - Software renderer: Fixed `char-wrap` not breaking between lines.
 - Software renderer: Fixed artifacts with partial drawing and rotation.
 - Software renderer: Fixed panic with fractional scale factor. (#6932)
 - Skia: Fixed opacity not being applied to box shadows correctly. (#6359)


## [1.8.0] - 2024-09-23

### Slint language

 - Postfix function on numbers for math function.
 - `changed <property>` callbacks. (#112)
 - `Timer` built-in pseudo-element. (#5724)
 - `SwipeGestureHandler` element.
 - Fixed panic when accessing function within a PopupWindow. (#5852)
 - Fixed `@children` order in the root of a component. (#5865)
 - Fix conversion from float to string adding extra decimal precision by limiting to f32
 - `debug` will now print space between the arguments instead of a comma. (#5991)
 - Added math function `Math.atan2`.
 - width and height expressed in `%` unit for an element in a Flickable now refer
   to the size of the Flickable instead of that of the viewport (#4163)
 - Path: Fix compiler panic when accessing path.commands in expressions (#5564)
 - The `mod` function was changed to always return a positive value (#6178)
 - Added `AccessibleRole.list-item` and used it where relevant
 - Added `PointerEventButton.back` and `PointerEventButton.forward` (#6043)

### Widgets

 - Fixed `TextEdit` not invoking `edited` callbacks (#5848).
 - Added `scrolled` callback to `ListView` and `ScrollView`.
 - Do not trigger `current-item-changed` on `StandardListView` if `current-item` is set on the same value.
 - Fixed `TimePickerPopup` does not open minute view by click on selected hour.
 - Visually clamp the slider even if the value is out of bounds (#5770)
 - Fixed button of Cupertino `ComboBox` not centered when height is bigger than default.
 - Fixed text in `SpinBox` not being selected on double click (#6104)

### Rust

 - Added `clear` and `swap` to `VecModel`
 - `spawn_local` can now be called before initializing the backend. (It will initialize it) (#5871)
 - Fixed error in generated code when calling as an expression a callback that don't return a value. (#5883)
 - Fixed error in generated code with struct containing `percent` value (#5887)
 - Added `JoinHandle::is_finished()` (#6034)
 - Implemented `FromIterator` for `VecModel`
 - Fixed Timer::set_interval() doesn't work in timer callback (#6141)

### C++

 - Split the generated code into a header and an implementation file
 - Added STM32 platform integration
 - cmake: Add ability to download the Slint compiler binary for the host when cross-compiling using binary packages for the target.
 - Added Pre-build binary packages for cross compilation to arm and xtensa target, and host package for MacOs
 - Use the "fluent" style by default on freestanding build instead of the platform default

### LSP and tooling

 - Fixed vscode web extension
 - Fixed race condition in preview diagnostic causing previous diagnostic to remain displayed.
 - live-preview: Use preferred size when requesting preview.
 - Don't auto-complete `out` property of built-in elements at element scope.
 - Don't insert a semicolon after auto-complete of a property name at element scope.
 - Added support for tooltip on hover of symbols
 - formatter: don't change whitespaces or newlines before comments
 - live-preview: Fixed auto-refresh after closing and reopening the preview.
 - live-preview: Custom system menu bar so cmd+q don't quit the LSP.
 - live-preview: Polished UI
 - vscode extension: the wasm preview load code in another tab.
 - vscode extension: Added telemetry to report panics of the LSP server.
 - vscode extension: Added "Create New Project" command to start from one of our templates
 - vscode extension: Rename the output tab to from "Slint LSP" to "Slint", and make sure it is always there
 - slint-viewer: `--save-data`/`--load-data`: support for images with paths. (#6169)
 - SlintPad: Added "about" entry in the menu.

### Misc

 - Added ability to configure scale factor at compile time (useful for no_std).
 - Improved property inlining in the compiler.
 - Fixed colorized tiled images
 - Fixed generated getter and setter of alias properties in globals (#5855)
 - Use `raw-window-metal` to do layer creation in skia
 - Updated Skia library. (NOTE: requires updated MSVC toolchain)
 - Skia renderer: Improve rendering quality of layers
 - GridLayout: Fixed panic when rowspan or colspan is 0 (#6181)

## [1.7.2] - 2024-08-14

### General

 - Added linux arm binary in the release.
 - Skia renderer: Fixed opacity not working on Image. (#5706)
 - Skia renderer: Fixed `SLINT_DEBUG_PERFORMANCE="overlay"`. (#5764)
 - Android: workaround `PollEvent::Wake` not being received (#5699)
 - LinuxKMS backend: Fixed EGL initialization with Mali drivers found on i.MX 95.
 - Winit backend: don't forward synthetic key pressed events to the application.
 - Fixed panic when pressing tab in a PopupWindow. (#5826)

### Slint Language

 - `debug()` is now consistently routed through Platform's `debug_log`, meaning it uses stderr by default instead of stdout previously with C++ and Rust code generator. (#5718)
 - Comparison between float is now using less precision so to float compare equal if they are approximately the same.
 - Conversion from float to a `int` property now always truncates (instead of rounding with the interpreter, or being inconsistent with the code generators)

### Widgets

 - TimePickerPopup: Fixed text input on 24hour time picker. (#5723)

### C++

 - Added `assert_main_thread` in a few more functions.

### Rust

 - Fixed case when the rust generated code panics trying to access a destroyed parent. (part of #3464)

### LSP and tooling

 - LSP: report error opening the preview back to the editor instead of panicking. (#204)
 - LSP: don't suggest private properties or functions as bindings.
 - LSP: implement goto-definition on re-export
 - LSP: Fix goto-definition on properties with underscores
 - Design mode: fix dragging component on the last component of a file without trailing newline (#5695)
 - VSCode extension: add a language icon for .slint file.

## [1.7.1] - 2024-07-25

### General

 - Winit backend: When running under WSL, always connect to X11 to avoid triggering compositor crashes.
 - Winit backend: Fix showing a previously hidden Window on macOS.
 - Android: Fix build with older Java versions.

### Widgets

 - `ComboBox`: Fix size of popup when there are less than six items.

### Rust

 - Fix warning in generated code for unused enums.

### Node API

 - Improve error reporting by including the diagnostic in the exception's message.

### LSP and Tooling

 - Various fixes to Live-preview's edit mode:
   - Recognize `GridLayout` for dropping widgets into.
   - Remove `PopupWindow`, `Window`, and `Dialog` from the component library.
   - Add support for component libraries.
   - Fix panic when moving around widgets. (#5642)
   - Don't show unrelated accessibility properties.

## [1.7.0] - 2024-07-18

### General

 - Several compiler bugfixes. (#5260, #5246, #5220, #5259, #5249, #5430)
 - Android: fix cursor handle being visible despite input loses focus. (#5233)
 - Android: fix keyboard popping up when application moved to foreground without input focus. (#5235)
 - Gettext translation: clear internal gettext cache when changing translations at runtime.
 - Winit backend: Fixed setting the size with set_size before showing the window. (#6489)
 - Winit backend: upgraded to winit 0.30, accesskit 0.16, glutin.
 - Winit backend: Fixed Window::hide on Wayland.
 - Qt backend: fix PopupWindow exiting the application with recent Qt6.
 - LinuxKMS backend: Added support for software rendering and legacy framebuffers.
 - Software renderer: Added `set_rendering_rotation()` to rotate the rendering by a multiple of 90 degrees.
 - Software renderer: Fixed dirty region returned by `render()` to not have any overlaps.
 - Skia renderer: Fix quality of control rendering when using `cache-rendering-hint: true;`.
 - Skia renderer: Fix dithering of gradients (PR #5482)

### Slint Language

 - `Window`: Added `resize-border-width` property.
 - Support several exported component that inherits Window pr Dialog from the main .slint file
 - Mark exported component that doesn't inherit from Window or Dialog as deprecated
 - Deprecated generating the last import if there is no component in a file
 - Added `export { ... } from "...";` syntax
 - Add the `accessible-placeholder-text` property (PR #5464)
 - Added `char-wrap` variant to the `TextWrap` enum (PR #5381)
 - `Text` can be rotated
 - In `PopupWindow` permit access to own properties in bindings to `x`/`y`.

### Widgets

 - `TextEdit`: Added `placeholder-text` property.
 - `ComboBox`: Fixed `current-value` not updating when updating the model.
 - `ComboBox`: Fixed `current-value` not resetting when setting `current-index` to -1.
 - `ComboBox`: Added scrolling support.
 - `SpinBox`: Fixed issue where the text is not updated after value is changed from outside.
 - `SpinBox`: Added `step-size` property.
 - Added `TimePickerPopup` and `DatePickerPopup`.
 - Fixed accessible value and actions on `ProgressIndicator`, `Spinner`, `Spinbox`, `CheckBox`, `Switch`.

### C++ API

 - Added `LIBRARY_PATHS` multi-value argument to `slint_target_sources` that takes a list of
   `name=path` items, to allow for the use of component libraries.
 - Fixed compilation with Rust 1.81, caused by extra spaces in `stringify!`.
 - ESP-IDF: Added support for making RGB565 byte swap configurable.
 - Fix build with Rust 1.79.

### Rust API

 - Added missing implementation of the `Error` for some of the errors.
 - Allow all clippy warnings in generated code.
 - Added `slint::Image::to_rgb8()/to_rgba8()/to_rgba8_premultiplied()` to obtain pixels for a `slint::Image` if available.
 - Fix panic in `slint::Timer` when a new timer is started while stopping another.
 - Added `slint::Window::take_snapshot()`.

### Interpreter

 - Track model length changes when accessing a model out of bounds.
 - Added API to obtain list of functions.
 - Deprecated `slint_interpreter::ComponentCompiler` in favor of `slint_interpreter::Compiler` which
   supports compiling multiple components.

### Node API

 - Functions declared in Slint can now be invoked from JavaScript.

### LSP and Tooling

 - Added suggestion for imported globals in expression auto-completion.
 - Added ability to rename components.
 - Design mode: only allow to move element within the same component.
 - Design mode: Added the property editor pane.
 - viewer: added the `--component` command line arg to preview a specific component.


## [1.6.0] - 2024-05-13

### General

 - The minimum Rust version is now 1.73.
 - When the Skia renderer is enabled at compile time, it is picked as the default at run-time.
 - FemtoVG renderer: Fixed selection of italic font styles. (#5056)
 - Fixed color animation involving transparency. (#5063)
 - Android: Fixed support for Android 10 to 12 and Java 1.8.
 - Android: Fixed build if the locale is not UTF-8.
 - Android: Added cursor handle on TextInput and selection handle with cut/copy/paste menu.
 - Android: added `backend-android-activity-06` feature.
 - Software renderer: Dirty regions can now be composed of multiple rectangles.
 - Added a function to mark all translations as dirty.

### Slint Language

 - Text: Added `stroke`, `stroke-width`, and `stroke-style` properties.
 - Added `Colors.hsv()` method to create colors in the HSV color space.
 - Added `to-hsv()` function to color.
 - Throw an error when `rgb()` or `argb()` have too many arguments.
 - Added support for `accessible-action-*`.
 - Fixed insertion point of `@children` when it is not the last child. (#4935)
 - Deprecated usage of internal `StyleMetrics` in the public API.
 - Fixed compiler panic with state property change involving a state in a parent component. (#5038)
 - Fixed interpreter overwriting property named `index`. (#4961)
 - Fixed compiler panic when a callback aliases itself. (#4938)
 - Fixed compiler panic when an init from a repeater is inlined into the parent component (#5146)
 - Added `clear-focus()` function to focusable elements, to allow for programmatic focus clearing.

### Widgets

 - Palette: Added `color-scheme` in-out property for accessing the style's color scheme.
 - Accessibility: Annotated more widgets with accessible properties and actions.
 - Qt style: Fixed rendering of focused or hovered ComboBox and CheckBox.
 - Qt style: Fixed widget that would react to every mouse button instead of only the left button.
 - SpinBox: Fixed scroll direction.
 - Allow scrolling through tabs.
 - Updated TabWidget in Cosmic style.
 - Added a `released` callback to `Slider`.
 - Fixed text and selection color of TextEdit and LineEdit.
 - Spinbox and Slider: The value now defaults to the minimum.

### Rust API

 - Added conversion of Color to and from HSV.
 - Added getter to the `raw-window-handle` of a window using the `raw-window-handle-06` feature.

### C++ API

 - Workaround breaking change in the build with Rust 1.79 (see https://github.com/corrosion-rs/corrosion/issues/501)
 - Added conversion of Color to and from HSV.
 - Fixed code generation of functions that don't return.
 - Fixed the `MapModel::reset` function. (#4968)
 - Fixed compilation of the generated code when an animated brush property is set in a sling callback.
 - Added include guard to the generated header.

### LSP and tooling

 - Design mode of the live preview can now drag into and from layout. With a drop marker when dragging an element.
 - Fixed formatting of function declarations.
 - Added `-L` command line args to `slint-lsp` to specify path of external libraries (#5144)
 - VSCode extension highlights Slint code blocks in markdown files.
 - `slint-viewer` will properly reload files saved with neovim, which renames and replaces files (#3641)

## [1.5.1] - 2024-03-20

 - Fix clipping with a border-radius. (#4854)
 - Fix panic in the preview when showing a PopupWindow whose parent is optimized out. (#4884)
 - Fix compiler panic when the `focus` function is called with arguments. (#4883)
 - Fix panic when loading unsupported images.
 - LSP: Fixed formatting of states, transitions, and functions.
 - LSP preview: Avoid double scroll bar in the preview when showing errors.
 - LSP preview: Don't handle delete shortcut when showing errors.
 - LSP preview: Improved appearance of the element selection in the design mode.
 - LSP preview: Never set the with or height to NaN. (#4848)

## [1.5.0] - 2024-03-14

## General

 - Added support for Android via the `backend-android-activity-05` feature.
 - Added API for maximized/minimized window.
 - TextInput: Added undo/redo support.
 - ListView: Fixed redraw when model changes. (#4538)
 - Disabled Qt backend by default on Windows and Mac even when Qt is found.
 - Qt: Explicitly hide PopupWindow instead of relying on destructor.

### Slint Language

 - Rectangle: Added `border-{top,bottom}-{left,right}-radius`
 - Image: Added `ImageFit.preserve`
 - Image: Added `horizontal-` and `vertical-alignment`
 - Image: Added support for 9 slice scaling
 - Image: Added `horizontal-` and `vertical-tiling`
 - Flickable: Added `flicked` callback
 - Slint: Expose `.red`, `.green`, `.blue`, and `.alpha` properties on `color`

### Widgets

 - Fixed edited callback of SpinBox for Cupertino and Material style.
 - Cupertino TabWidget: Tweaked visual appearance

### Rust

 - Fixed ReverseModel and FilterModel model not always forwarding notification correctly.
 - Re-export more type in the slint-interpreter crate.
 - Added `SharedVector::pop`.
 - Use const generics for construction of SharedVector from array.

### C++

 - Fixed binary package that used to require Qt.
 - Added `Window::set_fullscreen`.
 - Fixed error in generated code when struct or enum has an underscore. (#4659)
 - Added `slint::interpreter::ComponentCompiler::set_translation_domain`.
 - Added `NAMESPACE` modifier in the `slint_target_sources` cmake macro to generate in a namespace.

### JavaScript

 - Fixed MapModel rowData() calling map function even if the source model returned undefined.
 - Better error reporting when the backend cannot be created.
 - Reading model properties now always returns a `Model<T>`, regardless of whether an array was previously assigned.
 - `Model<T>` now implements `Iterable<T>`.

### LSP

 - Added support for code formatting.
 - Sort properties first in auto-completion.
 - Fixed completion in two way bindings
 - Preview: Design mode with drag and drop
 - Fixed wasm embedded preview on Windows

## [1.4.1] - 2024-02-02

 - Skia: Update skia binding dependency.
 - SlintPad: Fixed initial rendering of the live-preview.
 - Qt backend: fix crash when closing popup on Wayland. (#4500)
 - Fixed rendering of linear gradient of 90deg. (#4495)
 - C++: Permit passing a value to VectorModel::set_vector by value (#4491)
 - slint-viewer: re-render after reloading when using software renderer.
 - Fixed panic in the software renderer when using the Qt style.
 - Rust: fix slint-build's formatter when source contains `\"` in a string. (#4520)

## [1.4.0] - 2024-01-31

### General

 - Winit backend: Fixed `key-released` in `FocusScope` not being invoked when releasing the space bar key.
 - Fix `PopupWindow` close behavior: Close on release when the mouse is on the popup, and close on press when
   it's outside - to match standard behavior.
 - Fixed focus behavior on click in a TextInput
 - Fixed ListView not updating when model changes (#3125).
 - Fixed TextInput on Plasma/Wayland receiving many empty events causing selection to be cleared (#4148)
 - Added API to programmatically show a window in fullscreen mode (C++/Rust: `Window::set_fullscreen(bool)`, Node.js: `window.fullscreen`).
 - Added API to keep the event loop alive when the last window is closed (#1499). (Rust: `slint::run_event_loop_until_quit()`; C++: argument to `slint::run_event_loop()`; Node: argument to `runEventLoop`).
 - Fixed linear gradient rendering in non square rectangles (#3730).
 - LinuxKMS backend: Added support rendering output rotation via the `SLINT_KMS_ROTATION` environment variable.
 - LinuxKMS backend: Added support for `backend-linuxkms-noseat` feature to compile without libseat.
 - LinuxKMS backend: Added support for software rendering with Skia.
 - LinuxKMS backend: Added frame throttling.

### Slint Language

 - `if` statements no longer require parentheses.
 - Added a `double-clicked` callback in `TouchArea`, which is triggered when a `TouchArea`
   is clicked twice in rapid succession.
 - The `pointer-event` callback in `TouchArea` is now triggered on mouse move
   as well.
 - Errors are thrown when trying to modify properties that must be known at compile time.
 - Fixed property wrongly considered as const if it is modified through an alias (#4241).
 - Fixed missing invocation of init callbacks due to inlining (#4317).
 - Added `Key.Space`` to `Key` namespace.

### Widgets

 - Fixed SpinBox not being enabled by default.
 - Fixed wrong text input in cupertino SpinBox.
 - Added focus state to `StandardListView`.
 - Added `colorize-icon` property to `Button`.
 - Added `set-selection-offsets(int, int)` to `TextInput`, `LineEdit`, and `TextEdit`.
 - Added `Palette` global singleton.
 - Added `Cosmic` style.
 - Improved `Slider` drag and click behaviour.

### C++

 - Added `ComponentInstance::definition()` getter to retrieve the `ComponentDefinition` for an instance.
 - Added `slint::VectorModel::clear()` and `slint::VectorModel::set_vector()` to conveniently clear or replace the underlying data.

### Rust

 - Compile-time improvements.
 - Fixed compilation when component has the same name as internal name (#4419).

### JavaScript

 - Pre-built binaries in the npm package.

### LSP

 - Added selection mode to select elements in the preview.
 - Implement code action to add missing import.
 - Fix error when going to the definition of built-in items (#4126).
 - Preserve underscores in property auto-completion.

## [1.3.2] - 2023-12-01

### General

 - Fixed `accepted` and `edited` callbacks in `LineEdit` not being invoked
   with Fluent, Cupertino, and Material styles.
 - Fixed coordinate of events within PopupWindow. (#4036)
 - Fixed ComboBox not selecting entries. (#4033)
 - Fixed singleshot timers started via `start(...)` to not stay in running state.
 - Fluent style: Fixed color of disabled `LineEdit`.

### Slint Language

 - Added `KeyEvent.repeat` to detect repeated key press events.

### LSP

 - Added support for resizing the UI under preview without resizing the window,
   by providing resize handles and scrollbars.
 - Close previous PopupWindow before refreshing the preview. (#4035)

### C++

 - Fixed compilation on Windows when cross-compiling (for example when using esp-idf).

## [1.3.1] - 2023-11-28

### General

 - Bump various dependencies.
 - Fixed `has-hover` and `mouse-cursor` when opening a `PopupWindow`. (#3934)
 - Fluent style: fixed scrollbar size. (#3939 / #3932)
 - Skia Vulkan renderer: Fixed crash when resizing windows on X11.
 - Fixed cursor of LineEdit with right alignment (#4016)

### Slint Language

 - Added `clamp` function that takes a `value`, `minimum` and `maximum` and will return
   `maximum` if `value > maximum`, `minimum` if `value < minimum` or `value` otherwise.
 - Throw Slint error when returning no value when one is expected instead of generating invalid code. (#3962)
 - Fixed compiler panic when a component is called `Window`. (#3916)

### Rust API

 - Implement `std::error::Error` for `LoadImageError`.

### JavaScript API

 - Added `loadSource` function (#3971)
 - Added `requestRedraw` to Window (#3940)

### C++ API

 - Fixed undefined behavior in `SharedString::end()`

### LSP

 - Fix "recursion detected" panic in the preview with `forward-focus`. (#3950)
 - Don't expose empty name in the outline, this caused error in vscode. (#3979)
 - Fix enum ranges in the outline.
 - Added `--fullscreen` command line option.

## [1.3.0] - 2023-11-10

### General

 - The minimum Rust version is now 1.70.
 - The `SLINT_DEBUG_PERFORMANCE` environment variable is now also compatible with the software renderer.
 - Fixed issues with text rendering and cursor positioning in elided or aligned multi-line text.
 - The default style has been changed to `fluent` on Windows and `cupertino` on macOS.
 - LinuxKMS backend: Added support for absolute motion pointer events, fixed support for touch input on scaled screens, and improved encoder/CRTC handling for EGL rendering.
 - Skia renderer / winit backend: Fall back to Skia software rendering when GPU acceleration is not available.
 - Fixed a bug where accessing model data in a callback after changing it within the same callback did not reflect the update. (#3740)

### Slint Language

 - Added `Number`, `Decimal` variants to the `InputType` enum.
 - Added `spacing-horizontal` and `spacing-vertical` to `GridLayout`.
 - Fixed conversion in an array of an array of structs (#3574).
 - Added `scroll-event` callback to `TouchArea`.
 - Added support for `protected` functions.
 - `ComboBox` selection can now be changed by a scroll event.
 - `SpinBox` value can now be incremented and decremented by a scroll event.
 - Added `focus-changed-event` callback to `FocusScope`.
 - Added many new easing curves.
 - Added `Spinner`.
 - Added `Palette` global.

### JavaScript

 - The system has been ported to napi-rs.
 - The API has been refreshed.

### Rust

 - Improved support for the `slint!` macro for rust-analyzer.
 - Added `source_model()` to `MapModel`, `FilterModel`, `SortModel`, `ReverseModel` to access the inner model.

### C++

 - Removed the need for C++ exceptions in generated code.
 - Added the ability to only build the Slint compiler or use an external compiler.
 - ESP-IDF: Wait for vsync before swapping frame buffers.
 - Fixed a crash when accessing an empty model from Slint.

### LSP

 - Added "Wrap in element", "Remove element", "Repeat element", and "Make conditional" code actions.
 - Added a toolbar with a style picker in the preview.

## [1.2.2] - 2023-10-02

### General

 - Skia renderer: Fixed the `source` property of `Image` elements sometimes not changing when setting dynamically loaded images. (#3510)
 - Fix compiler panic with `popup.close()` from outside of the popup. (#3513)
 - Fixed native style (Qt) not finishing its animations with Breeze. (#3482)
 - Fixed native style not clipping correctly GroupBox. (#3541)
 - Fixed native style ComboBox not always being shown. (#3527)
 - Winit backend: Fixed window resizing on macOS Sonoma. (#3559)
 - Skia / FemtoVG renderers: Default to vsync swap interval when rendering with OpenGL to avoid excessive CPU usage. (#3516)

### C++

 - Fixed cross-compilation with CMake (against Yocto SDKs)

## [1.2.1] - 2023-09-19

### General

 - Fixed generated C++ and Rust code in conversion from unnamed to named struct in complex expressions. (#2765)
 - Improved wasm preview in the documentation, especially on mobile. (#3389)
 - Improved `StandardTableView` to use `ListView` optimization for all styles. (#3425)
 - Fixed in WSL against a distro that uses X11 instead of Wayland. (#3406)
 - Added documentation about different renderers and their relation to backends.
 - Added support for partial rendering to the software renderer when used with the winit backend. (#3457)
 - Fixed builds of the Skia renderer on Windows when built from source within `vcvars.bat` environments.
 - Updated to Skia milestone 117.
 - Fixed panic when using `SLINT_FULLSCREEN=1` in combination with the Skia OpenGL renderer. (#3472)
 - Native style: Fixed scroll bar handle size for `ScrollView`. (#3489)
 - FemtoVG renderer: Fixed empty lines and vertical alignment when eliding text. (#3481)
 - Skia renderer: Fixed eliding of multi-line text. (#3481)
 - `StandardTableView`: Fixed scrollbar only responding to the second click.
 - Polished the experimental Cupertino style further.

### Rust API

 - Derive serde traits for `slint::Color`, when the feature is active. (#3411)

### C++

 - Fixed crash when code in a `clicked` handler in a sub-component would cause a conditional
   or repeated element to disappear. (#3465)
 - Fixed Skia renderer builds finding clang correctly.

### VS Code Extension

 - Fixed "Show Preview" command when invoked from the command palette. (#3412)

### Language Server

 - Fixed automatic indentation within named elements. (#3409)
 - Fixed panic when editing path in import statements. (#3468)


## [1.2.0] - 2023-09-04

### General

 - Fixed accessibility tree on Linux when UI has no repeaters.
 - Fixed native style animations.
 - Fixed setting rotation-angle and opacity from a callback.
 - Fixed touch in the `Flickable` not resulting in a click.
 - Added support for a new experimental backend that renders fullscreen on Linux using KMS (`backend-linuxkms`).
 - Calling `show()` on a component (or its window) now keeps the component alive for as long as the window
   is visible.

### Slint Language

 - Improve reporting of diagnostics when there are errors, by attempting to run more passes.
 - Fixed compiler panic when an unresolved alias has a binding.
 - Added `edited` callback to `SpinBox`.
 - Added `row-pointer-event` callback to `StandardTableView`.
 - Fixed enabled property with `ComboBox` in Fluent Design style.
 - Fixed duplicated import when importing file relative to the project instead of the current path. Deprecated importing files relative to the project path.
 - Added `current-item-changed` to `StandardListView`.
 - Added `current-row-changed` to `StandardTableView`.
 - Added `item-pointer-event` to `StandardListView`.
 - Added `orientation` property to `Slider`.
 - Added experimental `cupertino` style.

### Rust API

 - Implemented `Default` for `slint::Weak`.
 - Added `ReverseModel` and `ModelExt::reverse`.
 - Added `fn set_visible(&self, _visible: bool)` to the `slint::platform::WindowAdapter` trait.
 - Added ways to create a `SoftwareRenderer` without a `MinimalSoftwareWindow`.
 - The features `renderer-winit-*` were renamed to `renderer-*`.
 - Added `BorrowedOpenGLTextureBuilder` to configure more aspects of borrowed OpenGL textures.

### C++

 - Added Platform API to write your own platform that drives its own event loop.
 - Added `SLINT_LIBRARY_CARGO_FLAGS` cmake variable.
 - Added `ReverseModel`.
 - Added functions in Window to dispatch pointer events.
 - The `slint_interpreter.h` file was renamed `slint-interpreter.h`, a deprecated header was added.
 - The features `SLINT_FEATURE_RENDERER_WINIT_*` were renamed to `SLINT_FEATURE_RENDERER_*`.
 - Extended `slint::Image::create_from_borrowed_gl_2d_rgba_texture` with an option to configure more aspects
   of texture rendering.
 - Fixed cmake dependencies of the generated header so it is generated if and only if the .slint files have changed

### LSP

 - Fixed termination of the lsp process.

## [1.1.1] - 2023-07-10

### General

 - Fixed panic in accesskit at startup on Linux. (#3055)
 - Fixed compiler panics when some complex expressions are used for the model expression in `for` (#2977)
 - Native style: Fixed support for floating point ranges in Slider.
 - Fixed panics in the software renderer related to text rendering.

### Slint Language

- Added `clear-selection()` to `TextInput`, `LineEdit`, and `TextEdit`.
- The `PointerEvent` struct now has the `modifiers: KeyboardModifiers` field.

### C++

 - Added `slint::Window::scale_factor()` as getter to read the system device pixel ratio.

### LSP

 - Correctly use the CARGO_MANIFEST_DIR as the base for import and image in `slint!` macro


## [1.1.0] - 2023-06-26

### General

 - Fixed missing items compilation error in the generated code related to public functions (#2655).
 - Added support for Window transparency on supported platforms.
 - Fixed TabWidget not filling the parent in non-native style.
 - Skia: Add support for rendering with Vulkan.
 - Wasm: Added copy and paste support.
 - Fixed TouchArea::has-hover not being reset in some cases involving multiple `TouchArea` or `Flickable` elements.
 - Fixed ListView panic when model reset in some cases. (#2780)
 - Fixed read-only `TextInput` reporting input method access. (#2812)
 - Fixed `LineEdit`'s placeholder text not being rendered with the same font attributes as regular `LineEdit` text.
 - Fixed rendering of SVGs with text. (#2646)
 - Software renderer: Show the cursor in TextInput

### Slint Language

 - Added support for declaring enumerations.
 - Added support negative numbers in `cubic-bezier(...)` function.
 - Added `ProgressIndicator` widget.
 - Added `Switch` widget.
 - Added boolean `font-italic` property to `Text` and `TextInput`.
 - Added `select-all()`, `cut()`, `copy()`, and `paste()` to `TextInput`, `LineEdit`, and `TextEdit`.
 - Added functions on color: `transparentize`, `mix`, and `with-alpha`.
 - Added a `close()` function and a `close-on-click` boolean property to `PopupWindow`.
 - Added basic translation infrastructure with `@tr("...")`.
 - Added `absolute-position` property to every element, for computing window-absolute positions.
 - Added `primary` boolean property to `Button` to configure its visual appearance.
 - Added `current-row` to `StandardTableView`.

### Rust

 - Added `slint::Image::load_from_svg_data(buffer: &[u8])` to load SVGs from memory.
 - Added `slint::platform::WindowEvent::ScaleFactorChanged` to allow backends to report the current window scale factor.
 - Added `slint::Image::from_borrowed_gl_2d_rgba_texture` to create images from borrowed OpenGL textures.
 - In the Slint language, struct can be annotated with `@rust-attr(...)` that is forwarded as a Rust attribute (`#[...]`) for the generated struct.
 - Added a `serde` feature to enable serialization of some Slint data structures.
 - Added convenience `From` conversions for `ModelRc` from slices and arrays.
 - `slint-viewer` gained the ability to preview .rs files with a `slint!` macro.
 - Added a `spawn_local` function to run async code in the Slint event loop.

### C++

 - Added `slint::Image::create_from_borrowed_gl_2d_rgba_texture` to create images from borrowed OpenGL textures.
 - Added `[[nodiscard]]` in a function signatures.
 - Experimental: the `slint::platform::WindowAdapter` no longer takes a template parameter and has a different constructor signature.

### LSP

 - Fixed auto-completion of local properties or arguments in callbacks or functions.
 - Fixed panic when the editor tries to open non-local urls.

### VSCode extension

 - Make a visible error message when the `slint-lsp` panics.

## [1.0.2] - 2023-04-26

### General

 - Fixed the compiler embedding images unnecessarily multiple times when referenced via different relative paths. (#2608)
 - Winit backend: Adjust the window size automatically when an update minimum or maximum size would constrain the existing size.
 - Winit backend: Added internal API in the `i-slint-backend-winit` crate to access the winit window
 - Fix focusing element whose base is focusable (#2622)
 - Fix infinite loop in the compiler when there is a loop in `forward-focus`
 - Skia renderer: Add support for password input fields.

### C++

 - Fix build against macOS deployment target 10.10

### VSCode extension

 - Fixed preview not working (#2609)
 - Added design mode commands
 - Browser extension: fix preview not previewing specific component

### SlintPad

 - Fix editing in non-main files was getting ignored (#2630)


## [1.0.1] - 2023-04-20

### General

 - Fixed compiler panic when binding `Path`'s `commands` property to the field of a model entry.
 - Qt renderer: Fixed support for horizontal alignment in `TextInput`.
 - Winit backend: Fix detect of dark color scheme in some circumstances.
 - ListView: fix resizing a ListView to empty height would make all items invisible even if resized back (#2545)
 - Fixed compiler panic when accessing unset layout properties such as `spacing` or `alignment` (#2483)
 - Fixed compiler panic when accessing property from parent context in a `init =>` callback
 - Load fontconfig with dlopen instead of dynamic linking.
 - Software renderer: renders the text in TextInput
 - Fixed `TouchArea::has-hover` not becoming false when items become invisible

### Slint Language

 - Fixed parent `FocusScope` objects stealing the focus from inner `FocusScope`s when clicked.
 - Added `TextInputInterface.text-input-focused` to detect when a virtual keyboard should open
 - Added `always-on-top` property of a `Window` to show the window above others
 - The error message when referring to an id reports a suggestion if there is a enum value or a property with the same name.

### C++

 - macOS: Fixed `install_name` for `libslint_cpp.dylib` use `@rpath` instead of absolute paths to the build directory.
 - Fixed memory corruption when embedding images in generated C++ code.
 - Add support for dispatching key press and key release events to `slint::Window` via `dispatch_key_*_event`. This replaces
   the experimental `slint::experimental::platform::WindowAdapter::dispatch_key_event`.
 - MSVC: /bigobj is enabled by default as compile option when linking against the Slint CMake target, removing the need
   for users who run into linking issues to add that to their build.

### LSP

 - Don't throw a protocol error when using the rename function on a symbol that can't be renamed
 - Always auto-complete widgets from the style even if no widgets is imported
 - Don't auto-complete reserved properties or sub components for globals
 - Auto-completion in the document root (component, import, global)

### VSCode extension

 - Added an option to show the preview with wasm in a vscode tab (just like in the online version)
 - Make code lenses work better on Windows

### SlintPad

 - Warn when ServiceWorker could not get set up (e.g. in private browsing mode on Firefox)
 - Add design mode


## [1.0.0] - 2023-04-03

### General

 - `TextEdit` performs better with the FemtoVG renderer when showing many lines.
 - Software renderer: Added support for linear-gradients.
 - Software renderer: Fixed artifacts when components are deleted or elements become invisible.
 - Fixed Infinite loop in the accessibility backend on Windows (#2195).
 - Skia renderer: Enable anti-aliasing for rectangles with border radius.
 - Fluent style: Adjust disabled scrollbar background color.
 - Fixed several panics in the compiler (#2312, #2274, #2319).
 - Winit backend: Fix rendering when moving windows between monitors with a different scale factor (#2282).

### Slint Language

 - The old syntax that declares component with `:=` is now deprecated
 - `Flickable`: don't forward events if the flickable is dragged in a direction that can be dragged, even if at the bounds.
 - The `TextEdit` and `LineEdit` elements now correctly handle double click and triple click to select words or lines,
   as well as support for the "primary" clipboard on X11 and wayland (select to copy, and middle click to paste).

### Rust

 - Minimum Rust version is now 1.66.
 - **Breaking:** Deprecated functions and enums were removed from the API.
 - **Breaking:** `PointerEventButton::None` was renamed `PointerEventButton::Other`
 - **Breaking:** More functions now return `Result`, and the return value needs to be `unwrap()`'ed.
 - **Breaking:** A lifetime parameter was added to `slint::ModelPeer`.
 - **Breaking:** `StandardListViewItem` and `TableColumn` are now marked as `#[non_exhaustive]`.
 - **Breaking:** Removed the `stride()` function from `slint::Image` - use `width()` instead.
 - **Breaking:** In `slint::platform::WindowEvent::KeyPressed` and `KeyReleased`, the `text` field is now
   a `slint::SharedString`.
 - **Breaking:** `slint::platform::WindowEvent` does not derive from `Copy` anymore. You must `clone()` it
   explicitly if you want to create a copy.
 - **Breaking:** The `MAX_BUFFER_AGE` const parameter of `slint::platform::software_renderer::MinimalSoftwareWindow`
   has been removed and replaced by an argument to the `new()` function.
 - **Breaking:** The `compat-0-3-0` mandatory cargo feature flag was renamed to `compat-1-0`.
 - Added a `software-renderer-systemfonts` feature to the Rust crate, to enable the use of fonts from the operating system
   for text rendering with the software renderer.
 - Fixed some clippy warnings in the generated Rust code.

### C++

 - Functions that take a functor as an argument are now using C++ 20 concepts.
 - **Breaking:** In the C++ API, the type for row indexes in models was changed from `int` to `size_t`.
   This includes arguments of virtual functions in `slint::Model` that needs to be adjusted in
   derived classes.
 - **Breaking:** The order of C++ generated struct members is now preserved from the .slint source file.
 - Add constructors to `slint::Image` to create images from raw pixel data.
 - In C++ builds, support all image formats the Rust image-rs crate supports, not just png and jpeg.
 - Added the `SLINT_FEATURE_RENDERER_WINIT_SOFTWARE` option to enable the software renderer.

### Tooling

 - LSP: don't add spaces when auto-completing elements or callbacks, leads to better formatting.
 - The online editor was renamed to SlintPad.

## [0.3.5] - 2023-02-21

### Fixed

 - FemtoVG: Fix cursor placement at end of lines
 - Windows: Fix panic when minimizing windows
 - Fixed some panics in the software renderer when using text
 - Fixed panic when parsing invalid linear gradient syntax
 - Qt: Fixed mapping of the control key
 - Linux: Fix panic when using GLX
 - Fixed const detection when using two-way bindings
 - Fix run-time panic when combining forward-focus with text rendering in no_std environments
 - Rust: Fix compile issues when generated code clashes with user types
 - C++: Fix compilation with structs that have a field with the same name as the struct
 - Fix visible property on the root of a component
 - Fix compiler panic when an component's base is not inlined
 - C++: fix including the generated file in several translation units
 - C++: Fix "make install" on Windows

### Added

 - The StandardListView provides now a set-current-item function to set the selected item and bring it into view.

## [0.3.4] - 2023-01-25

### Changed

 - A new syntax is available that declares the components with `component Xxx { ... }`  instead of `Xxx := ...`.
   The old syntax continues to work in this release.
 - A warning is shown when calling non-pure function or callback from pure context (eg: a property binding).
   Callbacks and functions can be annotated with `pure`.
 - On an `Image`, the default value of `source-clip-width` and `source-clip-height` is now set to
   the size of the image minus the `source-clip-{x,y}`. The source clip size is now used to compute
   the default aspect ratio of the image.
 - Deprecated `invoke_callback` functions in the slint interpreter in favor of `invoke`, which can also
   invoke functions in addition to callbacks.
 - Warn if the last component or singleton in a file is implicitly marked for exporting.

### Added

 - `StandardTableView` widget.
 - LSP: support of Slint features (auto-complete, preview, ...) in `slint!{}` macro in Rust files.
 - The software renderer can now load fonts at run-time, without the need to pre-render glyphs
   at compile time.
 - The preview in the online editor, VS Code extension, and the VS Code web extension highlight
   components while the cursor is on the component type name.

### Fixed

 - Compiler panic for files containing no component (#2005).
 - Calling public functions from native code.
 - Fixed crash when using repeaters in C++ on 32-bit architectures.
 - Conversion of array literal containing struct with array literal (#2023).
 - Structs exported by the main file are always generated in native code (#594).

## [0.3.3] - 2022-12-16

### Changed

 - Minimum rust version is now 1.64.

### Added

 - Added support for declaring functions in the language.
 - Added support for re-exporting types from other files using `export * from "./other_file.slint";`.
 - LSP: highlight and renaming of element id.
 - online editor: Add zoom to the preview.
 - VSCode and online editor: Added UI to edit and remove property bindings.

### Fixed

 - Fixed privacy rules in global properties. #1951
 - Fixed drawing of images with the software renderer.
 - Fixed `visible` property on element with drop shadow. #1460
 - Warn on bad use of ListView. #860
 - Fixed two way bindings between globals.
 - Fixed scrolling of preview area in online editor.
 - Fixed the CMake build to respect `CMAKE_*_OUTPUT_DIRECTORY` variables. #1979
 - Fixed build when using `renderer-winit-skia-opengl` on macOS or Windows.


## [0.3.2] - 2022-11-28

### Changed

 - When using a two way binding `foo <=> bar`, the default value will always be the one of `bar`.
   There was a warning about this change in previous versions (#1394).
 - Disallow overrides or duplicated declarations of callbacks. Previously they were silently overwritten,
   now an error is produced.
 - The name `init` is now a reserved name in callbacks and properties.
 - In the interpreter, calling `set_property` or `get_property` on properties of the base returns an error.
 - Deprecated `slint::WindowEvent` and `slint::PointerEventButton` and moved them to the `slint::platform` module.
 - Renamed the `Keys` namespace for use in `key-pressed`/`key-released` callbacks to `Key`. The
   old name continues to work.
 - The style or the backend now always set a value for the `Window`'s `default-font-size` property.
 - In the Rust API, the `GraphicsAPI`'s `NativeOpenGL` variant uses a function signature for `get_proc_address` that
   takes a `&std::ffi::CStr` instead of a `&str` to match the native APIs and avoid unnecessary conversions.

### Added

 - Added new `material` style based on Material Design, with `material-light` and `material-dark` as variants.
 - Added `Window::is_visible` in Rust and C++.
 - Added `From<char>` for `SharedString` in Rust.
 - Added `KeyPressed` and `KeyReleased` variants to `slint::WindowEvent` in Rust, along
   with `slint::platform::Key`, for use by custom platform backends.
 - Added support for the implicitly declared `init` callback that can be used to run code when
   an element or component is instantiated.
 - Properties can be annotated with `in`, `out`, `in-out`, or `private`.
 - Transitions can now be declared directly within the state.
 - Online editor: The property view can now edit properties.
 - LSP preview: When the cursor is on the name of an element, the element's location is highlighted in the preview.
 - LSP: Added a setting to change the style and the include paths.
 - VSCode extension: added the property view.
 - Added `rem` as unit that represents a relative font size and is multiplied with the `Window.default-font-size` when used.
 - Added `relative-font-size` as type that holds values of `rem`.

### Fixed

 - Fluent style: SpinBox gets focus when buttons are clicked.
 - Software renderer: Fix drawing the background color.
 - Fix Rust code generation when comparing percentages (#1837).
 - Fix `visible` property in `for` and `if` (#1846).

## [0.3.1] - 2022-10-28

### Changed

 - The property `Window::background` is now a brush instead of a color (allowing gradients).
 - Switch to yeslogic-fontconfig-sys from servo-fontconfig dependency. This allows for fontconfig
   to be a run-time dependency via dlopen.
 - Skia renderer: Improvements to text input.

### Added

 - Added `slint::FilterModel`, `slint::MapModel` to the C++ API.
 - Added `slint::SortModel` to Rust and C++ API.
 - Added `VecModel::extend` and `VecModel::extend_from_slice`.
 - Online editor: Added "Properties" and "Outline" tabs.
 - Added initial support for input methods with pre-edit text.
 - Added a dark theme for the Fluent style, which is automatically selected if the system
   color scheme is dark.
 - Added `fluent-light` and `fluent-dark` as explicit styles to select a light/dark variant,
   regardless of the system color scheme setting.

### Fixed

 - TextInput now shows the text mouse cursor.
 - In Flickable, added a small delay before passing the Press pointer event to the children.
 - Online editor: Fixed "go to definition" across files.
 - Fixed a panic in the slint compiler when visiting layout properties for loop analysis (#1659).
 - Fixed compilation error in the generated code (#1733, #1735).

## [0.3.0] - 2022-09-14

### Breaking Changes

 - `mod` now works on any numeric type, not only integers.
 - Minimum rust version is now 1.60.
 - The "backend-gl-*" Rust crate features for configuring the GL renderer have been
   changed and split by renderer.
 - `VecModel::remove` now returns the removed element.
 - `slint::invoke_from_event_loop` and `slint::quit_event_loop` now return a Result.

### Added

 - Added the `platform` module providing API to use slint on bare metal with a software renderer.
 - Added an experimental Skia renderer.
 - `Button`: Add a `checkable` property that turns the button into a toggle
   button. Use the new `checked` property to query whether the toggle button
   is pressed down or not.
 - Added support for `slint::Window::set_position` and `slint::Window::position` to set and get the
   placement of the window on the screen.
 - Added `slint::Window::scale_factor()` as getter to read the system device pixel ratio.
 - Added support for `slint::Window::set_size` and `slint::Window::size` to set and get the
   size of the window on the screen.
 - Added `slint::Window::dispatch_event` and `slint::WindowEvent` to be able to manually
   send a mouse or touch event to a window.
 - Added `animation-tick()`.
 - `SharedString` implements `std::fmt::Write` and added `slint::format!`.
 - `Image` can now be rotated with the `rotation-*` properties.
 - Use docking widgets and integration of slint-lsp into the [Online Code Editor](https://slint.dev/editor).


### Fixed
 - Fixed Ctrl+Backspace/Ctrl+Del not deleting words in text input elements.
 - Resizing of live-preview window in the IDE integrations.
 - Preferred size of the TabWidget in the fluent style take in account the size of the tabs (#1363).
 - Fixed cursor behavior when typing the Enter key at the end of a TextEdit (#1318).
 - Fixed a memory leak of images when using the GL backend.
 - Fixed starting and stopping `slint::Timer` from within their callback (#1532).

## [0.2.5] - 2022-07-06

### Changed

 - Interpreter: Implement `TryFrom<Value>` instead of `TryInto for Value` (#1258)

### Added

 - Added the Model Adapters `FilterModel` and `MapModel`.
 - Added `@radial-gradient(circle, ...)`
 - Added `read-only` property to `TextInput`, `TextEdit` and `LineEdit`.
 - VSCode extension can be installed as a web extension. (eg, from https://vscode.dev)
 - LSP: completion of `@` macros
 - LSP: completion of element that require an import
 - Basic accessibility support using the `accessible-` properties

### Fixed

 - GL backend: Fixed animation sometimes not starting from input event (#1255)
 - C++ fix compilation when writing to the model data
 - Fix mouse exit events not triggered by scrolling a Flickable (#1107)

## [0.2.4] - 2022-05-09

 - Fixed crash when opening a native (Qt) ComboBox

## [0.2.3] - 2022-05-09

### Fixed

 - Fixed crashes with the Qt backend in release mode. (#1230)
 - Fixed panic when drop-shadow is used in a ListView (#1233)
 - Fixed combining a brush and a color to always convert to brush, to avoid losing gradient information (#1235)
 - Fixed properties not having the right default value when set by some states (#1237)
 - Fixed properties with multiples aliases, and default values.
 - Enable fontdb's fontconfig feature to fix finding some fonts (#1240)

## [0.2.2] - 2022-05-04

### Changed
 - On wasm, the input event are handled via a hidden `<input>` element, allowing the keyboard
   to show on mobile platform
 - The size of the window is kept when reloading a window in the preview (instead of being reset to the preferred size)
 - Minimum rust version is now 1.59

### Added

 - Support for keyboard focus with the tab key
 - Support more keyboard shortcut in the editing element
 - Added `From<&str>` and `From<SharedString>` to `StandardListViewItem` to make creation and modification of `StandardListView`'s models easier.
 - Added `on_close_requested` function to `Window` to register callbacks that are emitted when the user tries to close a window.
 - Added `VecModel::set_vec` to replace the entire contents with new data.
 - Added a `cache-rendering-hint` boolean property that can be applied to any element, to hint to the renderer that it should cache the element and its children
   into a cached layer. This may speed up rendering of complex sub-trees if they rarely change.
 - The `brighter` and `lighter` functions also work on values of type brush.
 - Added a `reset` function to C++'s `Model`, Rust's `ModelNotify` and JS's `ModelPeer`
 - Added a `row_data_tracked` function to `ModelExt` (an extension to the Model trait)

### Fixed

 - Fixed application of the `opacity` property evenly to child elements (#725).
 - Windows: Fixed font lookup of strings including several scripts (eg, containing asian characters)
 - Fixed PopupWindow in a repeater (#1113, #1132)
 - LSP: do not always resize the preview window to its preferred each time the code is modified

## [0.2.1] - 2022-03-10

### Added

 - C++ interpreter API: added a `Value::Value(int)` constructor
 - Global singletons in `.slint` files may now refer to other global singletons
 - Added `input-type` property to `TextInput` and `LineEdit` that allows for characters to be replaced in password fields
 - The `SpinBox` widget now handles up and down key events

### Fixed

 - `TouchArea::has-hover` is now properly set to false when the mouse leaves the window
 - Fixed some cases of panics with 'Constant property being changed'
 - Fixed `Flickable` animation
 - Better compilation error when selecting unknown styles
 - Fixed duplicated key event for some keys (such as tab) with the GL backend
 - Improved property optimizations by inlining some bindings and remove more unused properties

## [0.2.0] - 2022-02-10

This version changes some APIs in incompatible ways. For details how to migrate your application code, see the [C++ migration guide](api/cpp/docs/cpp_migration.md)
as well as the [Rust migration guide for the `sixtyfps` crate](api/rs/slint/migration.md) and for the
[`slint-interpreter` crate](internal/interpreter/migration.rs).

### Changed

 - Minimum rust version is now 1.56
 - C++ compiler requires C++20
 - In the C++ interpreter API `std::span` is used for callbacks arguments, instead of `sixtyfps::Slice`
 - `Model::row_data` will now return a `Option<T>` / `std::optional<T>` instead of a plain `T`.
 - `Model::model_tracker` no longer has a default implementation.
 - The deprecated methods `Model::attach_peer` and `ModelNotify::attach` were removed.
 - The interpreter does not differentiate anymore between `Value::Array` and `Value::Model`
   everything is a `Value::Model`, which now contains a `ModelRc`
 - In Rust, `slint::SharedPixelBuffer` and `slint::SharedImageBuffer` now use a `u32` instead of `usize` for `width`, `height` and `stride`.
 - In Rust and C++, `slint::Image::size()` now returns an integer size type.
 - `sixtyfps::interpreter::CallCallbackError` was renamed to `slint::interpreter::InvokeCallbackError`
 - Some deprecation warning in .60 became hard errors
 - Replace `ModelHandle` with `ModelRc`
 - `slint::interpreter::ComponentInstance` in Rust now implements `slint::ComponentHandle`. This removes `sixtyfps_interpreter::WeakComponentInstance` in favor
   of `slint_interpreter::Weak<slint_interpreter::ComponentInstance>`.
 - For the Rust API crate, the Rust Interpreter API crate, the `backend-gl`, `x11`, and `wayland` features were renamed to `backend-gl-all`, `backend-gl-x11`, and `backend-gl-wayland`.
 - For the C++ CMake interface, the `SIXTYFPS_BACKEND_GL`, `SIXTYFPS_FEATURE_X11`, and `SIXTYFPS_FEATURE_WAYLAND` options were renamed to `SLINT_BACKEND_GL_ALL`, `SLINT_FEATURE_BACKEND_GL_X11`, and `SLINT_FEATURE_BACKEND_GL_WAYLAND`.
 - The animation `loop-count` property was replaced by `iteration-count` (which is the same as `loop-count` plus one)

### Added

 - `TextEdit::font-size` and `LineEdit::font-size` have been added to control the size of these widgets.
 - Added `slint::Window::set_rendering_notifier` to get a callback before and after a new frame is being rendered.
 - Added `slint::Window::request_redraw()` to schedule redrawing of the window contents.

### Fixed

 - Models initialized from arrays are now also mutable when run in the interpreter.
 - Fixed compilation error when accessing object members of array through the array index syntax

## [0.1.6] - 2022-01-21

### Changed

 - **Breaking:** The internal key code for the keys left, right, home and end
   has changed. This was undocumented, but if you were handling this in the
   `FocusScope` event, these keys will now be ignored. Use the `Keys.LeftArrow`
   and other code exposed in the `Keys` namespace instead.
 - For `sixtyfps::Timer` (C++ and Rust), it's now possible to call `restart()` after
   a timer has been stopped previously by calling `stop()`.
 - Property access in `.60` was optimized by doing more constant propagation.

### Added

 - Color names can now be accessed through the `Colors` namespace (in `.60`).
 - Math function are now available through the `Math` namespace (in `.60`).
 - `TouchArea` gained a `mouse-cursor` property to change the mouse cursor.
 - C++: Added `SIXTYFPS_VERSION_MAJOR`/`SIXTYFPS_VERSION_MINOR`/`SIXTYFPS_VERSION_PATCH` version macros.
 - More special keyboard key codes are provided in the `FocusScope`, and
   special keys are handled
 - `start()`, `stop()`, `running()` and a default constructor for C++ `sixtyfps::Timer`
 - Added math functions `log`, and `pow`.
 - Property animations now have a `delay` property, which will delay the start
   of the animation. Use this to create sequential animations.
 - Rust: Added `sixtyfps::VecModel::insert(&self, index, value)`.
 - C++: Added `sixtyfps::VecModel::insert(index, value)`.
 - Added ability to access elements of a model with the `[index]` syntax.

### Fixed

 - Memory leak in C++.
 - Native style: Colors are updated automatically when the Windowing system switches to and from dark mode (#687)
 - Ctrl/Command+X in text fields copies the selected text to the clipboard and deletes it (cut).
 - Improved native ComboBox look.
 - Fixed panics or compilation error when using two way bindings on global properties.

## [0.1.5] - 2021-11-24

### Changed

 - The sixtyfps compiler no longer "inline" all the elements, resulting in faster compilation
   time and smaller binaries.
 - Implemented basic constant propagation in the sixtyfps compiler

### Fixed

 - The Slider's changed callback was not being called with the fluent style (#621).
 - Fixed compilation error in C++'s `sixtyfps::blocking_invoke_from_main_loop` when the callable returns `void` (#623).
 - Improve rendering quality on High-DPI screens on Windows when using Qt.
 - Fixed linking errors when selecting the native style on Windows with C++.
 - Fixed the maximization button in the window decoration when a window has a fixed size.

## [0.1.4] - 2021-10-22

### Changed

 - The TouchArea now grabs the mouse for every button instead of just the left button.
 - The ScrollView's default viewport size is no longer hardcoded to 1000px but depends on the contents.
 - In Rust, the `sixtyfps::Model` trait deprecates the `attach_peer` function in favor of `model_tracker`, where all
   you need to do is return a reference to your `sixtyfps::ModelNotify` field.

### Added

 - Enable support for compressed SVG (.svgz).
 - Viewer: added possibility to set shell callback handler with `--on <callback> <handler>`.
 - It is now possible to query the length of a model with `.length`.

### Fixed

 - Fixed the `PointerEvent.kind` always being down.
 - `LineEdit.has-hocus` with the native style

## [0.1.3] - 2021-10-06

### Changed

 - Due to changes in the build system, the C++ build now requires CMake >= 3.19.
 - Fluent style: The Slider and ScrollBar now updates as the mouse moves.
 - Parentheses around callable expression is now deprecated.
 - Naming a callback without calling it is now a hard error instead of producing error in the generated code.

### Added

 - New `no-frame` property of a `Window` which changes it to borderless/frameless
 - sixtyfps-compiler and slint-viewer can read the .60 file content from stdin by passing `-`
 - slint-viewer gained ability to read or save the property values to a json file with `--save-data` and `--load-data`
 - New `StandardButton` widget
 - New `Dialog` element
 - `sixtyfps::Image` has now a `path()` accessor function in Rust and C++ to access the optional path
   of the file on disk that's backing the image.
 - New `moved` and `pointer-event` callback in `TouchArea`
 - New `AboutSixtyFPS` widget

### Fixed

 - Fixed panic when using `TabWidget` with `Text` elements and the native style.
 - Fixed panic when calling `hide()` on a `sixtyfps::Window` from within a callback triggered by keyboard/mouse input
   when using the GL backend.
 - Rust: The implementation of <code>ModelModel::set_row_data</code> now forward the call to the inner model

## [0.1.2] - 2021-09-09

### Changed

 - Apply the default text color from the style for the `color` of `Text` and `TextInput` elements, to contrast
   correctly with the application of `Window`'s `background` property.
 - LineEdit scrolls to keep the cursor visible
 - The `clicked` callbacks are now only emitted if the release event is within the TouchArea's geometry
 - parentheses around the condition are no longer needed in `if` elements: `if condition : Foo { ... }`

### Added

 - One can now set an alias from the root to a global callback
 - It is now possible to access properties and callback of exported global objects from the native code (#96)
 - C++ API: `blocking_invoke_from_event_loop`: a blocking version of `invoke_from_event_loop`
 - TextInput can support multiple line by setting single-line to false
 - The CMake integration now allows enabling/disabling SixtyFPS library features, such as Wayland support
   or the dynamic run-time interpreter.
 - Added `image-rendering` property to Image to control how the image is scaled
 - `TextEdit` widget
 - Support for semantic tokens in LSP

### Fixed
 - The interpreter API correctly return an error instead of panicking when setting properties or calling callbacks
   that don't exist
 - The `has-hover` property is correctly reset the false when releasing the mouse outside the touch area

## [0.1.1] - 2021-08-19

### Changed
 - Fixed lookup scope when resolving model expression in `for` or `if` constructs:
   the `self` element now refers to the correct element instead of the root.
 - Rust: default to the native style if Qt is available
 - Rust: deprecated `SharedVector::as_slice_mut()`. Use `SharedVector::make_mut_slice()` instead.
 - The default non-native widget style is now the new "fluent" style.
 - The internal normalization of identifiers is using `-` instead of `_`, this is an internal
   change, but it can be seen in error messages. When listing properties the identifiers are
   preserved. For fields in structures they are normalized.
- Show a compilation error when there are duplicated element ids.
 - The `clip` property can now be any expression.

### Added

 - `ComboBox` now has a `selected` callback.
 - `Window` now has an `icon` property.
 - Added `sixtyfps::Weak::upgrade_in_event_loop` in the Rust API.
 - Added `sixtyfps::Model::as_any()` in the Rust API.
 - Added conversion between `sixtyfps::Image` and `sixtyfps::interpreter::Value` in the C++ API.
 - Properties of type `angle` and `duration` are allowed in the public API.
 - Every element now has a `visible` property.
 - `Slider` now has a `changed` callback.
 - Added `TabWidget` widget.
 - Rust: `sixtyfps::Image` can now be constructed from image data provided by `sixtyfps::SharedPixelBuffer`.
   This enables integrating with other low-level software rendering or the popular Rust image crate.
 - VSCode extension: added an option to specify command line arguments for the LSP.

### Fixed

 - GridLayout cells with colspan and rowspan respect properly their constraints.
 - Don't panic when replacing programmatically text in a `TextInput` and then editing it.
 - The default height of elements in a ListView no longer defaults to 100%.
 - Fixed support for `*=` and `/=` on types with unit such as length.
 - Don't panic when using a self assignment operator on an invalid type - this produces a compiler error
   instead.
 - Fixed angle conversion for values specified in radians, gradians and turns.
 - Fixed SharedVector sometimes not allocating big enough storage.

## [0.1.0] - 2021-06-30

### Changed

 - Layouts are now conceptually their own elements, meaning that the `x` and `y` properties of items
   within layouts are relative to the layout and no longer to the parent element of layouts.
 - The default spacing and padding of layouts is now 0 instead of being specific to the style.
   There are now `HorizontalBox`, `VerticalBox`, `GridBox` widgets which have default spacing and padding.
 - Setting the window `height` and `width` properties results in a fixed size. The `preferred-width`
   and `preferred-height` property can be used to set the initial size and the window remains resizable
   by the user, if the window manager permits.
 - Binding loops are now detected at compile-time instead of panic at runtime.
 - The `viewer` binary was renamed to `slint-viewer` and is now available via `cargo install` from crates.io.
 - The layout properties `minimum-width`, `maximum-height`, etc. were renamed to a shorter version `min-width`,
   `max-height`. The old names are still supported as a deprecated alias.

### Added

 - Warnings are now shown in the online code editor.
 - `sixtyfps::invoke_from_event_loop` was added to the C++ and Rust APIs, to run a function in the UI thread from any thread.
 - `sixtyfps::run_event_loop()` and `sixtyfps::quit_event_loop()` were added to the Rust and C++ APIs to start and quit the main event loop.
 - `z` property on items.
 - The type in two-way bindings can now be omitted.
 - It's possible to declare aliases for callbacks (`callback clicked <=> other.clicked;`)
 - `abs()` function to get the absolute value
 - The root element of an `if` or `for` can be given a name (`if (condition) name := Rectangle {}`)
 - `sixtyfps::Image` is a new type in the public Rust and C++ API to load images from a path.
 - The width and height of images is now accessible via the `width`or `height` of an `image` type property in .60 files (`some-image.source.width`)

### Fixed

 - Fixed Mouse wheel to work on the `Flickable` element and derivatives.
 - Fixed generated C++ code on Windows.
 - Calling `debug(...)` no longer breaks the LSP.
 - `ComponentDefinition::properties` only exposes public properties as documented.
 - Many more bugfixes

## [0.0.6] - 2021-04-27

### Changed
 - `Rectangle::color` was deprecated and replaced by `Rectangle::background`, same for `Window::color`
 - `Path::fill-color` was renamed to `fill`, and `Path::stroke-color` was renamed to `stroke`, which are now brushes instead of color
 - Many other color property became brush in order to support gradients
 - the `resource` type was renamed to `image`
 - Calling a callback is done from C++/Rust with `invoke_<name>` instead of `call_<name>`

### Added
 - `@linear-gradient` can be used to have gradients on rectangle and paths
 - `Image::colorize` allows to apply a color filter on image
 - `0` can be converted to anything with units
 - Support power of unit in intermediate expression. (eg: `3px * width / height` is now supported but used to be an error)
 - Support for `else if`
 - The path fill rule can now be specified using `Path::fill-rule`.
 - Support for `letter-spacing` in `Text`/`TextInput` elements.
 - `rgb()` / `rgba()`
 - Layout in Flickable
 - LSP server with Live Preview and basic auto completion
 - The viewer tool gained the `--auto-reload` argument
 - `Window.default-font-weight`
 - Added `opacity` property that can be applied to elements
 - Added `clip` property in Rectangle, including clipping for rounded rectangle
 - API to load dynamically .60 files from C++ and Rust, including a way to embed sixtyfps widgets in Qt applications
 - Preferred size in Layouts
 - Math functions such as `sin`, `cos`, `sqrt`, ...
 - New printer demo design
 - Ability to load custom fonts using `import` statements

### Fixed
 - `Image::image-fit`'s `cover` and `contains` variant are fixed to match the CSS spec
 - Flickable without scrollbar
 - Multiplying and dividing different units.
 - Many more bugfixes

## [0.0.5] - 2021-01-29

### Changed
 - Renamed "signal" to "callback"
 - And calling a callback is done from C++/Rust with `call_<name>` instead of `emit_<name>`
 - Renamed "SharedArray" to "SharedVector" in the C++/Rust API
 - Renamed Slider min and max property to minimum and maximum
 - The graphics rendering backend was changed to use femtovg or Qt
 - Renamed `initial-focus` to `forward-focus` as focus related property on elements
 - The "align-" prefix was removed from `TextHorizontalAlignment` and `TextVerticalAlignment`. Either
   change `align-left` to `left` or qualify with `TextHorizontalAlignment.left`.
 - `img!"..."` is replaced by `@image-url("...")`
 - `$children` is replaced by `@children`

### Added
 - `title` property to the Window element
 - `color` property to the Window element
 - `maximum`/`minimum` properties to the `SpinBox`
 - strings can contain escape codes
 - `FocusScope` to handle key events
 - `return` statements
 - `Text` word wrap and elide
 - `drop-shadow-*` properties (limited to `Rectangle` at the moment)
 - `Color.brighter` / `Color.darker`
 - `Window.default-font-family` and `Window.default-font-size`


## [0.0.4] - 2020-12-14

### Changed
 - Changed Rust `build.rs` API to use an opaque compiler configuration type
 - With Rust, image resources are embedded in the binary by default.
 - Updated winit version
 - Updated Neon Version

### Fixed
 - Fixed animations sometimes stopping mid-way.
 - Fixed rendering of C++ components
 - Fixed disabled widgets

## [0.0.3] - 2020-12-09

### Changed
 - In C++, the generated component is now wrapped by a `ComponentHandle` smart pointer that acts like `std::shared_ptr`. New instances
   are created using `T::create()`.
 - In Rust, the generated component implements `Clone` and acts like an `Rc`. `sixtyfps::Weak` can be used to hold weak references.
 - `ARGBColor` was renamed `RgbaColor`
 - `width and `height` of some built-in elements now default to 100% of the parent element.

### Added
 - Allow dashes in identifiers (#52)
 - VerticalLayout / HorizontalLayout
 - Placeholder text in `LineEdit`
 - global components (#96)
 - `Clip` element
 - `ComboBox` element
 - `PopupWindow` element
 - `Image` element: New source-clip-{x, y, width, height} properties
 - `sixtyfps::Timer` in Rust API
 - Transitions are now implemented
 - `round`/`ceil`/`floor`/`mod`/`max`/`min`/`cubic-bezier` functions
 - Signals can have return a value
 - `has_hover` property in `TouchArea`
 - `font-weight` property on Text
 - `viewbox-x/y/width/height` and `clip` properties for `Path`


## [0.0.2] - 2020-10-22

### Changed
 - Default to the native style in the `viewer`, if available.
 - Changed the name of the common logical pixel unit from `lx` to `px`. The less
   often used physical pixel has now the `phx` suffix.

### Added
 - Add support for more keyboard shortcuts to `TextInput`.
 - Added a `current_item` to `StandardListView`.
 - API cleanup in sixtyfps-node

### Fixed
 - Fix occasional hang when navigating in `TextInput` fields with the cursor keys.
 - Fix access to aliased properties from within `for` and `if` expressions.
 - Fix `ScrollView` being scrollable when it shouldn't.
 - Fix appearance of natively styled scrollbars.
 - Allow converting an object type to another even if it is missing some properties.
 - Add missing frame drawing around `ScrollView`.
 - Fix Clipping in scroll views in WASM builds.
 - Fix resizing of `ListView`.
 - Many more bugfixes

## [0.0.1] - 2020-10-13
 - Initial release.

[0.0.1]: https://github.com/slint-ui/slint/releases/tag/v0.0.1
[0.0.2]: https://github.com/slint-ui/slint/releases/tag/v0.0.2
[0.0.3]: https://github.com/slint-ui/slint/releases/tag/v0.0.3
[0.0.4]: https://github.com/slint-ui/slint/releases/tag/v0.0.4
[0.0.5]: https://github.com/slint-ui/slint/releases/tag/v0.0.5
[0.0.6]: https://github.com/slint-ui/slint/releases/tag/v0.0.6
[0.1.0]: https://github.com/slint-ui/slint/releases/tag/v0.1.0
[0.1.1]: https://github.com/slint-ui/slint/releases/tag/v0.1.1
[0.1.2]: https://github.com/slint-ui/slint/releases/tag/v0.1.2
[0.1.3]: https://github.com/slint-ui/slint/releases/tag/v0.1.3
[0.1.4]: https://github.com/slint-ui/slint/releases/tag/v0.1.4
[0.1.5]: https://github.com/slint-ui/slint/releases/tag/v0.1.5
[0.1.6]: https://github.com/slint-ui/slint/releases/tag/v0.1.6
[0.2.0]: https://github.com/slint-ui/slint/releases/tag/v0.2.0
[0.2.1]: https://github.com/slint-ui/slint/releases/tag/v0.2.1
[0.2.2]: https://github.com/slint-ui/slint/releases/tag/v0.2.2
[0.2.3]: https://github.com/slint-ui/slint/releases/tag/v0.2.3
[0.2.4]: https://github.com/slint-ui/slint/releases/tag/v0.2.4
[0.2.5]: https://github.com/slint-ui/slint/releases/tag/v0.2.5
[0.3.0]: https://github.com/slint-ui/slint/releases/tag/v0.3.0
[0.3.1]: https://github.com/slint-ui/slint/releases/tag/v0.3.1
[0.3.2]: https://github.com/slint-ui/slint/releases/tag/v0.3.2
[0.3.3]: https://github.com/slint-ui/slint/releases/tag/v0.3.3
[0.3.4]: https://github.com/slint-ui/slint/releases/tag/v0.3.4
[0.3.5]: https://github.com/slint-ui/slint/releases/tag/v0.3.5
[1.0.0]: https://github.com/slint-ui/slint/releases/tag/v1.0.0
[1.0.1]: https://github.com/slint-ui/slint/releases/tag/v1.0.1
[1.0.2]: https://github.com/slint-ui/slint/releases/tag/v1.0.2
[1.1.0]: https://github.com/slint-ui/slint/releases/tag/v1.1.0
[1.1.1]: https://github.com/slint-ui/slint/releases/tag/v1.1.1
[1.2.0]: https://github.com/slint-ui/slint/releases/tag/v1.2.0
[1.2.1]: https://github.com/slint-ui/slint/releases/tag/v1.2.1
[1.2.2]: https://github.com/slint-ui/slint/releases/tag/v1.2.2
[1.3.0]: https://github.com/slint-ui/slint/releases/tag/v1.3.0
[1.3.1]: https://github.com/slint-ui/slint/releases/tag/v1.3.1
[1.3.2]: https://github.com/slint-ui/slint/releases/tag/v1.3.2
[1.4.0]: https://github.com/slint-ui/slint/releases/tag/v1.4.0
[1.4.1]: https://github.com/slint-ui/slint/releases/tag/v1.4.1
[1.5.0]: https://github.com/slint-ui/slint/releases/tag/v1.5.0
[1.5.1]: https://github.com/slint-ui/slint/releases/tag/v1.5.1
[1.6.0]: https://github.com/slint-ui/slint/releases/tag/v1.6.0
[1.7.0]: https://github.com/slint-ui/slint/releases/tag/v1.7.0
[1.7.1]: https://github.com/slint-ui/slint/releases/tag/v1.7.1
[1.7.2]: https://github.com/slint-ui/slint/releases/tag/v1.7.2
[1.8.0]: https://github.com/slint-ui/slint/releases/tag/v1.8.0
[1.9.0]: https://github.com/slint-ui/slint/releases/tag/v1.9.0
[1.9.1]: https://github.com/slint-ui/slint/releases/tag/v1.9.1
[1.9.2]: https://github.com/slint-ui/slint/releases/tag/v1.9.2
[1.10.0]: https://github.com/slint-ui/slint/releases/tag/v1.10.0
[1.11.0]: https://github.com/slint-ui/slint/releases/tag/v1.11.0
[1.12.0]: https://github.com/slint-ui/slint/releases/tag/v1.12.0
[1.12.1]: https://github.com/slint-ui/slint/releases/tag/v1.12.1
[1.13.0]: https://github.com/slint-ui/slint/releases/tag/v1.13.0
[1.13.1]: https://github.com/slint-ui/slint/releases/tag/v1.13.1
[1.14.0]: https://github.com/slint-ui/slint/releases/tag/v1.14.0
[1.14.1]: https://github.com/slint-ui/slint/releases/tag/v1.14.1
[1.15.0]: https://github.com/slint-ui/slint/releases/tag/v1.15.0
[1.15.1]: https://github.com/slint-ui/slint/releases/tag/v1.15.1
[1.16.0]: https://github.com/slint-ui/slint/releases/tag/v1.16.0
