Skip to content

Commit 694aa50

Browse files
committed
Updates for v25.1.1.
1 parent f56e782 commit 694aa50

File tree

43 files changed

+310
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+310
-172
lines changed

Build/Build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<RootNamespace>ActiproSoftware.Tools.Builds</RootNamespace>
1717
<Company>Actipro Software LLC</Company>
1818
<Authors>Actipro Software LLC</Authors>
19-
<Copyright>Copyright (c) 2021-2024 Actipro Software LLC. All rights reserved.</Copyright>
19+
<Copyright>Copyright (c) 2021-2025 Actipro Software LLC. All rights reserved.</Copyright>
2020

2121
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
2222

Documentation/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"_appTitle": "Actipro Avalonia Docs",
5656
"_docsCompanyHref": "https://www.actiprosoftware.com/products/controls/avalonia",
5757
"_docsCompanyName": "Actipro Software LLC",
58-
"_docsCopyrightYears": "2021-2024",
58+
"_docsCopyrightYears": "2021-2025",
5959
"_docsProductHref": "https://www.actiprosoftware.com/products/controls/avalonia",
6060
"_docsProductName": "Avalonia",
6161
"_docsProductVersion": "25.1",

Documentation/topics/bars/mvvm-support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ The following table shows various bar control view model types defined in the MV
270270
| [BarSplitToggleButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.BarSplitToggleButtonViewModel) | Toggle [split button](controls/split-button.md) control. |
271271
| [BarTextBoxViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.BarTextBoxViewModel) | [Textbox](controls/textbox.md) control. |
272272
| [BarToggleButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.BarToggleButtonViewModel) | Toggle [button](controls/button.md) control. |
273-
| [RibbonApplicationButton](xref:@ActiproUIRoot.Controls.Bars.RibbonApplicationButton) | [Application button](ribbon-features/application-button.md) control. |
273+
| [RibbonApplicationButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonApplicationButtonViewModel) | [Application button](ribbon-features/application-button.md) control. |
274274
| [RibbonBackstageHeaderButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonBackstageHeaderButtonViewModel) | [Backstage](ribbon-features/backstage.md) header button control. |
275275
| [RibbonBackstageHeaderSeparatorViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonBackstageHeaderSeparatorViewModel) | [Backstage](ribbon-features/backstage.md) header separator control. |
276276
| [RibbonBackstageTabViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonBackstageTabViewModel) | [Backstage](ribbon-features/backstage.md) tab control. |
@@ -303,7 +303,7 @@ The following table shows various bar control view model types defined in the MV
303303
| [BarTextBoxViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.BarTextBoxViewModel) | [Textbox](controls/textbox.md) control. |
304304
| [BarToggleButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.BarToggleButtonViewModel) | Toggle [button](controls/button.md) control. |
305305
| [MiniToolBarViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.MiniToolBarViewModel) | [Mini-toolbar](toolbar-features/mini-toolbars.md) control. |
306-
| [RibbonApplicationButton](xref:@ActiproUIRoot.Controls.Bars.RibbonApplicationButton) | [Application button](ribbon-features/application-button.md) control. |
306+
| [RibbonApplicationButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonApplicationButtonViewModel) | [Application button](ribbon-features/application-button.md) control. |
307307
| [RibbonBackstageHeaderButtonViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonBackstageHeaderButtonViewModel) | [Backstage](ribbon-features/backstage.md) header button control. |
308308
| [RibbonBackstageHeaderSeparatorViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonBackstageHeaderSeparatorViewModel) | [Backstage](ribbon-features/backstage.md) header separator control. |
309309
| [RibbonBackstageTabViewModel](xref:@ActiproUIRoot.Controls.Bars.Mvvm.RibbonBackstageTabViewModel) | [Backstage](ribbon-features/backstage.md) tab control. |

Documentation/topics/fundamentals/controls/avatar-group.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Use the [ItemLength](xref:@ActiproUIRoot.Controls.AvatarGroup.ItemLength) proper
1717

1818
By default, each avatar will slightly overlap with the avatar that appears before it. Use the [OverlapPercentage](xref:@ActiproUIRoot.Controls.AvatarGroup.OverlapPercentage) property to define the extent of the overlap. The default value is `0.2` for a 20% overlap.
1919

20+
The [Orientation](xref:@ActiproUIRoot.Controls.AvatarGroup.Orientation) property determines if the non-overflowed avatars are arranged horizontally or vertically. The default is `Horizontal`.
21+
2022
## Overflow
2123

2224
Individual [Avatar](avatar.md) controls can optionally be overflowed when there is not enough room to display them all inline. When overflow is necessary, a button is added at the end of the group that, when clicked, will display the additional items in a popup.
@@ -27,6 +29,8 @@ By default, the group will display as many avatars as possible in the space avai
2729

2830
The overflow button indicates the number of overflowed items. Use the [OverflowStringFormat](xref:@ActiproUIRoot.Controls.AvatarGroup.OverflowStringFormat) property to customize how the count is formatted. The default is `"+{0}"`, where `{0}` is the placeholder for the current value of [OverflowedItemCount](xref:@ActiproUIRoot.Controls.AvatarGroup.OverflowedItemCount) (e.g., `"+9"`).
2931

32+
The [OverflowOrientation](xref:@ActiproUIRoot.Controls.AvatarGroup.OverflowOrientation) property determines if the overflowed avatars are arranged horizontally or vertically, and is configured separately from the [Orientation](xref:@ActiproUIRoot.Controls.AvatarGroup.Orientation) property. The default is `Horizontal`.
33+
3034
## Configuring Avatar Items
3135

3236
The [AvatarGroup](xref:@ActiproUIRoot.Controls.AvatarGroup) is an `ItemsControl` for [Avatar](avatar.md) controls.

Documentation/topics/supported-technologies.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ The assemblies have dependencies on the Avalonia framework as follows:
4545

4646
- Avalonia v11.1.0 or later
4747
- Native themes compatible up to Avalonia v11.1.0
48-
- *Minor updates to Avalonia are expected to be supported and will be verified as they are released*
4948

5049
</td>
5150
</tr>

License.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Actipro Software LLC.
3+
Copyright (c) 2025 Actipro Software LLC.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Samples/SampleBrowser/Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Nullable>enable</Nullable>
88
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
99

10-
<Version>25.1.0.0</Version>
11-
<InformationalVersion>25.1.0.0 - 20241106</InformationalVersion>
10+
<Version>25.1.1.0</Version>
11+
<InformationalVersion>25.1.1.0 - 20250116</InformationalVersion>
1212

1313
<Product>Actipro Avalonia Controls Sample Browser</Product>
1414
<Title>$(Product)</Title>
@@ -17,7 +17,7 @@
1717

1818
<RootNamespace>ActiproSoftware</RootNamespace>
1919
<Authors>Actipro Software LLC</Authors>
20-
<Copyright>Copyright (c) 2022-2024 Actipro Software LLC. All rights reserved.</Copyright>
20+
<Copyright>Copyright (c) 2022-2025 Actipro Software LLC. All rights reserved.</Copyright>
2121

2222
<DefineConstants>AVALONIA</DefineConstants>
2323
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>

Samples/SampleBrowser/References/ActiproSoftware.References.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33

44
<PropertyGroup>
5-
<ActiproVersion>25.1.0</ActiproVersion>
5+
<ActiproVersion>25.1.1</ActiproVersion>
66
</PropertyGroup>
77

88
<ItemGroup>

Samples/SampleBrowser/References/Avalonia.References.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33

44
<PropertyGroup>
5-
<AvaloniaVersion>11.2.0</AvaloniaVersion>
5+
<AvaloniaVersion>11.2.3</AvaloniaVersion>
66
</PropertyGroup>
77

88
<ItemGroup>

Samples/SampleBrowser/SampleBrowser.Common/ProductSamples/BarsSamples/Common/ViewModels/GalleryItems/CustomBarGalleryItemResources.axaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<Border Margin="3" Background="{actipro:ThemeResource Container1BackgroundBrush}"
2222
BorderThickness="1" BorderBrush="{actipro:ThemeResource Container3BorderBrush}">
23-
<localCommon:NumberingPresenter LineBrush="{actipro:ThemeResource Container2BorderBrush}}" />
23+
<localCommon:NumberingPresenter LineBrush="{actipro:ThemeResource Container2BorderBrush}" />
2424
</Border>
2525

2626
</DataTemplate>

0 commit comments

Comments
 (0)