Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added XPF 1.4.0 release. #602

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xpf/build-feeds.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: build-feeds
title: XPF Versioning
---

The latest stable version of Avalonia XPF is 1.3.0. And if you are planning to make a release of your product you should choose the stable version. But for development purposes you may want to update to the latest development version frequently. The latest version can be found on our [nuget server](https://xpf-nuget-feed.avaloniaui.net/packages/xpf.sdk).
The latest stable version of Avalonia XPF is 1.4.0. And if you are planning to make a release of your product you should choose the stable version. But for development purposes you may want to update to the latest development version frequently. The latest version can be found on our [nuget server](https://xpf-nuget-feed.avaloniaui.net/packages/xpf.sdk).

To log into the web portal, use the following credentials:

Expand Down
2 changes: 1 addition & 1 deletion xpf/embedding/xpf-in-avalonia.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: XPF in Avalonia
Change the SDK in your Avalonia application to [use the XPF SDK](../getting-started.md#step-3-use-the-xpf-sdk):

```xml
<Project Sdk="Xpf.Sdk/1.3.0">
<Project Sdk="Xpf.Sdk/1.4.0">
```

And [disable automatic XPF initialization](../advanced/customizing-init#step-1-disable-automatic-xpf-initialization):
Expand Down
2 changes: 1 addition & 1 deletion xpf/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ In the executable WPF project, change the SDK to use the XPF SDK in the `.csproj
should be changed to:

```xml
<Project Sdk="Xpf.Sdk/1.3.0">
<Project Sdk="Xpf.Sdk/1.4.0">
```

:::note
Expand Down
39 changes: 39 additions & 0 deletions xpf/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,45 @@ id: release-notes
title: Release Notes
---

## XPF 1.4.0

* Remove System.Configuration.ConfigurationManager usages
* Fix ModifierKeys.MacControl value
* Replace WebRequest/WebResponse base ctor calls with RuntimeHelpers.GetUninitializedObject + Frame control fixes
* Fix key remapping exception
* Reset modifier keys on lost focus
* Simple 3d support
* Fix Paragraph TextAlignment
* Fix compilation error in MuceViewport3DVisual
* Add GetAvaloniaTopLevelForWindow
* Window frame for single-view platforms like browser
* Resizable single view windows, fix decorations
* Implemented online licensing tickets
* Include remaining platforms in License check
* Fix avalon dock resizing issue
* Fix lower right corner cursor
* Replace binary formatter
* Stub ShowSystemMenu
* Fix DragOver exposing already disposed IDataObject
* Do not crash when path simplification fails
* Added ScreenToClient win32 API shim.
* Fix XPF popups when embedded in Avalonia.
* Use OpenGL by default on macOS
* Implement JpegMetadata and allow reading the orientation
* Fix NRE in ElementProxy
* Add a runtime flag to enable interop for DataObject custom formats
* Add support for reading and writing the exif MakerNote
* Fix up "control is not in any visual tree"
* Fix Cursors.None
* Fix popup memory leak
* Release mouse capture on Window deactivation.
* Update Avalonia.Licensing
* Ensure visual root dpi is set
* Fix BitmapSource 4 byte alignment
* Normalize some metadata queries to lower case
* Use default WPF behavior if ALC support wasn't explicitly enabled
* Adjust TextLine clipping when the line isn't collapsed

## XPF 1.3.0

* Enable ECDSA-based license keys
Expand Down
Loading