Skip to content

Releases: AvaloniaUI/Avalonia

11.3.3

05 Aug 20:05
fdfc537
Compare
Choose a tag to compare

What's Changed

Features

Fixes

  • Core - Properly check if DispatcherOperation is pending when executing/aborting by @kekekeks in #19132
  • Core - Fix memory leak by clearing shared array pool references in LightweightObservableBase by @walterlv in #19167
  • Core - Fix random NRE inside Compositor.CommitCore() callback. by @EgorRudakov2 in #19173
  • Core - Set IsKeyboardFocusWithin to false when control is detached from visual tree by @emmauss in #19369
  • Controls - Fixed ComboBox focus styles not being applied by @0xJins in #19147
  • Controls - Make textbox context menu transient on mobile by @emmauss in #19182
  • Controls - Remove textbox holding handler in text selection handle by @emmauss in #19186
  • Controls - Use captured element if available as source for tap gestures by @emmauss in #19222
  • Controls - Grid: Fix inner size calculation when Row/ColumnDefinition is not set but spacing is set by @zxbmmmmmmmmm in #19227
  • Text - Fix selecting multiple lines in RTL mode by @AhmedZero in #19093
  • Text - Fix TextLineIImpl.GetTextBounds for clustered trailing zero width characters by @Gillibald in #19208
  • Text - Fix multiline selection crash by @kerams in #19337
  • Skia - Explicit dispose of GRBackendRenderTarget and SKSurfaceProperties by @vadimart92 in #19100
  • macOS - Replace manual input tracking with NSEvent by @drasticactions in #19101
  • macOS - Fixes thick titlebar pointer events streaming by @ErtyHackward in #19320
  • X11 - Fix X11Screen info update incorrectly when screen changed by @Handsome08 in #19262
  • X11 - Stopgap fix for Clipboard.ClearAsync not returning by @kekekeks in #19302
  • Android - Restrict souce of input events to avalonia view by @emmauss in #19289
  • Win32 - Enable tray icon creation in all circumstances when running as an admin by @lwz-sabrina in #19382

Full Changelog: 11.3.2...11.3.3

11.3.2

24 Jun 13:28
0e1443a
Compare
Choose a tag to compare

Full Changelog: 11.3.1...11.3.2

What's Changed

Enhancements

  • Documentation – Corrected PointerPointProperties inline documentation, and exposed it on PointerEventArgs by @TomEdwardsEnscape in #19062
  • Controls – Remove the need for MenuItem Icon to be a ILogical by @Doraku in #19075

Fixes

  • Core – Extend dirty rect when UseLayoutRounding=false by @MrJul in #18511
  • Core – Properly handle in cluster ShapedBuffer split by @Gillibald in #19090
  • Controls – Reverse TickBar when Slider direction is reversed by @zrt2399 in #19096
  • Android – Better api level detection for display edge to edge and ignore system bar color changes if on api level 35 by @emmauss in #19034
  • Android – Fix oversight with display edge to edge detection for android 16 by @emmauss in #19067
  • Android – Revert changes preventing status bar theme from being updated by @emmauss in #19076
  • Android – Reset android input method focus and connection state when text input focus is removed by @emmauss in #19083
  • macOS – SuggestedStartLocation is not set if the FileTypeChoices is not null by @Whiletru3 in #19036
  • macOS – Respect info.plist values for setActivationPolicy by @drasticactions in #19066
  • macOS – Add shouldResize value to SetWindowState, don't resize on Window move by @drasticactions in #19088

11.3.1

05 Jun 17:40
d1bf54d
Compare
Choose a tag to compare

Full Changelog: 11.3.0...11.3.1

What's Changed

Enhancements

Fixes

11.3.0

01 May 15:41
d6edb46
Compare
Choose a tag to compare

Full Changelog: 11.2.8...11.3.0

What's changed since 11.2.8

Features

Enhancements

Performance

  • Avoid Select when no boxing required by @YohDeadfall in #16886
  • Fix PopupRoot.ConfigurePosition being called unnecessary by @MrJul in #17322
  • Optimization for Process.GetCurrentProcess() in Avalonia.Win32.Automation by @NeverMorewd in #17422
  • Optimize SKRoundRectCache Clear Method for .NET 6+ by @lindexi in #17605
  • Expanding StringTokenizator with ReadOnlySpan. by @Meloman19 in #17645
  • Use Flat Array Text Blob Cache instead of more expensive ConcurrentDictionary in Avalonia.Skia.GlyphRunImpl by @Washi1337 in #17727
  • [Text] Make BreakUnit a readonly struct by @Gillibald in #17729
  • Add SpanStringTokenizer and avoid many string allocations in FontCollectionBase by @Washi1337 in #17745
  • Optimization: Add an optimized path for notifying property changes for inherited va. by @danwalmsley in #18223
  • Layout performance improvements by @MrJul in #18315
  • Remove List<IObserver<T>>.ToArray() allocations in LightweightObservableBase by @xoofx in #18316

Fixes

Read more

11.3.0-rc1

25 Apr 10:23
48d205b
Compare
Choose a tag to compare
11.3.0-rc1 Pre-release
Pre-release

Full Changelog: 11.3.0-beta2...11.3.0-rc1

What's Changed

This list contains only changes made since 11.3.0-beta2.

Enhancements

Fixes

Only in 11.3.0-rc1:

  • Fix height queries not matching when container name is set, remove unused query grammer and allow nesting selector in container styles by @emmauss in #18659

Ported from 11.2.8:

  • Keep SelectingItemsControl selection values until ItemsSource is set by @MrJul in #18634
  • Fix Windows IME by @MrJul in #18645
  • Fix crash when creating documents in an opened folder on android by @emmauss in #18651
  • Fix MenuItem enabled state in the presence of sub-items. by @grokys in #18679

11.2.8

20 Apr 11:07
595be47
Compare
Choose a tag to compare

Full Changelog: 11.2.7...11.2.8

What's Changed

Fixes

  • Keep SelectingItemsControl selection values until ItemsSource is set by @MrJul in #18634
  • Fix Windows IME by @MrJul in #18645
  • Fix crash when creating documents in an opened folder on android by @emmauss in #18651
  • Fix MenuItem enabled state in the presence of sub-items. by @grokys in #18679

11.3.0-beta2

12 Apr 17:55
36ec2fe
Compare
Choose a tag to compare
11.3.0-beta2 Pre-release
Pre-release

Full Changelog: 11.3.0-beta1...11.3.0-beta2

What's Changed

This list contains only changes made since 11.3.0-beta1.

Fixes

Only in 11.3.0-beta2:

  • Fix binding null conditional operator not working with AvaloniaProperty by @MrJul in #18583
  • Fix DateTimePickerPanel scrolling exception by @MrJul in #18584
  • [Grid] Fix ColumnSpacing property name by @kebox7 in #18603
  • Fix Window.Show when MinWidth > MaxWidth by @MrJul in #18604
  • Disable Metal by default on macOS for 11.3 by @MrJul in #18605
  • [Grid] Fix size calculation for ranges by @kebox7 in #18621

Ported from 11.2.7:

11.2.7

11 Apr 17:47
8cbf39e
Compare
Choose a tag to compare

Full Changelog: 11.2.6...11.2.7

What's Changed

Fixes

11.3.0-beta1

03 Apr 15:40
3fe35b5
Compare
Choose a tag to compare
11.3.0-beta1 Pre-release
Pre-release

Full Changelog: 11.2.6...11.3.0-beta1

What's Changed

Features

Enhancements

  • Use the himetric location instead of the pixel location. by @walterlv in #16850
  • Fixes and improves several access key (accelerator) related issues by @StefanKoell in #17292
  • Add _NET_WM_PID atom to Linux X11 window by @lindexi in #17470
  • Throw ObjectDisposedException for ClipboardImpl/ClipboardDataObject by @MrJul in #17472
  • Nullable annotations for LinuxFramebuffer by @MrJul in #17489
  • Align bitmap memory to 4 bytes by @Gillibald in #17774
  • Nullable annotations for X11 by @MrJul in #17814
  • Add FontSize property validation by @maxkatz6 in #18198
  • Improve KeyGesture.ToString() output in case when Key is set to Key.None by @Samael7777 in #18353
  • Bring control into view only if control isn't properly visible in viewport by @emmauss in #18359
  • Raise pointer events on captured element by @MrJul in #18420
  • Prevented setting 0 to ColumnSpan or RowSpan. by @abenedik in #18516

Performance

  • Avoid Select when no boxing required by @YohDeadfall in #16886
  • Fix PopupRoot.ConfigurePosition being called unnecessary by @MrJul in #17322
  • Optimization for Process.GetCurrentProcess() in Avalonia.Win32.Automation by @NeverMorewd in #17422
  • Optimize SKRoundRectCache Clear Method for .NET 6+ by @lindexi in #17605
  • Expanding StringTokenizator with ReadOnlySpan. by @Meloman19 in #17645
  • Use Flat Array Text Blob Cache instead of more expensive ConcurrentDictionary in Avalonia.Skia.GlyphRunImpl by @Washi1337 in #17727
  • [Text] Make BreakUnit a readonly struct by @Gillibald in #17729
  • Add SpanStringTokenizer and avoid many string allocations in FontCollectionBase by @Washi1337 in #17745
  • Optimization: Add an optimized path for notifying property changes for inherited va. by @danwalmsley in #18223
  • Layout performance improvements by @MrJul in #18315
  • Remove List<IObserver<T>>.ToArray() allocations in LightweightObservableBase by @xoofx in #18316

Fixes

Read more

11.2.6

29 Mar 12:35
6a34161
Compare
Choose a tag to compare

Full Changelog: 11.2.5...11.2.6

What's Changed

Enhancements

Fixes