Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Prefix your items with `(Template)` if the change is about the template and not
- Cleanup (fixes warnings on Windows, fixes vulnerabilities and renamed extensions) & Update packages.
- Updated the Segoe MDL2 Assets font to fix an issue with the Flip View icons on Windows.
- Optimized the .NET workloads install process.
- Fixed the iOS application icon size.

## 3.8.X
- Updated from .NET 8 to .NET 9.
Expand Down
4 changes: 2 additions & 2 deletions build/templates/dotnet-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ steps:

- powershell: |
& dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
& uno-check -v --ci --non-interactive --fix --skip ios --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
& uno-check -v --ci --non-interactive --fix --target android --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
displayName: Install Android .NET Workloads | Uno Check
errorActionPreference: continue
ignoreLASTEXITCODE: true
Expand All @@ -35,7 +35,7 @@ steps:

- powershell: |
& dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
& uno-check -v --ci --non-interactive --fix --skip android --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
& uno-check -v --ci --non-interactive --fix --target ios --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
displayName: Install iOS .NET Workloads | Uno Check
errorActionPreference: continue
ignoreLASTEXITCODE: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
<PropertyGroup>
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
<BundleAssemblies>False</BundleAssemblies>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
</PropertyGroup>
<Choose>
<When Condition="'$(Configuration)'=='Debug'">
<PropertyGroup>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
<UseHighDPIResources>False</UseHighDPIResources>
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk>
Expand Down Expand Up @@ -152,7 +152,7 @@
<PropertyGroup>
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs>
<MtouchExtraArgs>$(MtouchExtraArgs) --xml=./iOS/LinkerExclusions.xml --linkskip=$(AssemblyName)</MtouchExtraArgs>
<MtouchInterpreter>-all,ByteSize,Uno.Core.Extensions,Uno.Core.Extensions.Collections,Uno.Core.Extensions.Equality,Uno.Core.Extensions.Threading,Uno.Core.Extensions.Disposables,Uno.Core.Extensions.Logging,Nventive.Persistence.Reactive,Reactive.Annex,ReviewService.Abstractions,MallardMessageHandlers,FluentValidation,Chinook.DataLoader.Abstractions,Chinook.DynamicMvvm.Abstractions,Chinook.SectionsNavigation.Abstractions,Chinook.StackNavigation.Abstractions,Chinook.BackButtonManager.Abstractions,ApplicationTemplate.Business,Uno.Injectable,Chinook.DynamicMvvm.FluentValidation,Chinook.DataLoader.DynamicMvvm,Chinook.DataLoader</MtouchInterpreter>
<MtouchInterpreter>-all,ByteSize,Uno.Core.Extensions,Uno.Core.Extensions.Collections,Uno.Core.Extensions.Equality,Uno.Core.Extensions.Threading,Uno.Core.Extensions.Disposables,Uno.Core.Extensions.Logging,Nventive.Persistence.Reactive,Reactive.Annex,ReviewService.Abstractions,MallardMessageHandlers,FluentValidation,Chinook.DataLoader.Abstractions,Chinook.DynamicMvvm.Abstractions,Chinook.SectionsNavigation.Abstractions,Chinook.StackNavigation.Abstractions,Chinook.BackButtonManager.Abstractions,ApplicationTemplate.Business,Uno.Injectable,Chinook.DynamicMvvm.FluentValidation,Chinook.DataLoader.DynamicMvvm,Chinook.DataLoader,Microsoft.Maui.Controls.HotReload.Forms</MtouchInterpreter>
<!-- See https://github.com/unoplatform/uno/issues/9430 for more details. -->
<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs>
<!-- See https://github.com/xamarin/xamarin-macios/issues/14812 for more details. -->
Expand Down Expand Up @@ -215,12 +215,8 @@
</ItemGroup>
<ItemGroup>
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon.png" />
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon%402x.png" />
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon%403x.png" />
<!--
Removing this fix release build.
<InterfaceDefinition Include="iOS\LaunchScreen.storyboard" />
-->
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon@2x.png" />
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon@3x.png" />
<ImageAsset Include="iOS\Media.xcassets\AppIcons.appiconset\Contents.json">
<Visible>false</Visible>
</ImageAsset>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,54 +1,39 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<!--
TODO: BLUE 50218 - ThemeResource causes leak when used in defalt Style-level setter for HeaderBackgroundBrush or HeaderForegroundBrush
When the bug is fixed, uncomment and use the inverted colors below for the "Dark" theme.
Also, change the ThemeResources for SettingsFlyout.HeaderBackgroundBrush and
SettingsFlyout.HeaderForegroundBrush setters to ThemeResources in the default style, below.

<SolidColorBrush x:Key="SettingsFlyoutHeaderBackgroundThemeBrush" Color="#FFB9B9B9" />
<SolidColorBrush x:Key="SettingsFlyoutHeaderForegroundThemeBrush" Color="#FF000000" />
-->

<FontFamily x:Key="ContentControlThemeFontFamily">Segoe UI</FontFamily>
<x:Double x:Key="ControlContentThemeFontSize">14.667</x:Double>
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">

<!--
******************************************************************
PLATFORM-DEPENDENT RESOURCES
******************************************************************
******************************************************************
PLATFORM-DEPENDENT RESOURCES
******************************************************************
-->

<!--

These resources are programmatically added at runtime,
and their values change depending on the platform/device.

<!--
These resources are programmatically added at runtime, and their values change depending on the platform/device.

StatusBarDouble
StatusBarThickness
StatusBarGridLength

ApplicationBarDouble
ApplicationBarGridLength

SplitViewPaneDouble
SplitViewPaneGridLength

OnePixel
OnePixelDouble
OnePixelGridLength
OnePixelThicknessTop
OnePixelThicknessBottom

-->

<!--
******************************************************************
PLATFORM-SPECIFIC RESOURCES
******************************************************************
******************************************************************
PLATFORM-SPECIFIC RESOURCES
******************************************************************
-->

<!-- ANDROID -->
Expand All @@ -65,5 +50,4 @@
<CornerRadius x:Key="ButtonCornerRadius">2</CornerRadius>
<CornerRadius x:Key="CardCornerRadius">2</CornerRadius>
<CornerRadius x:Key="TextBoxCornerRadius">2</CornerRadius>

</ResourceDictionary>