Skip to content

Commit c4893bd

Browse files
authored
feat: Bump Icons and version (#1638)
* chore: Prepare tools * chore: Format code * fix: Disable border when inactive in Win11 * chore: Fix readme header * chore: Update sitemap * feat: Update icons
1 parent b44391b commit c4893bd

10 files changed

Lines changed: 1706 additions & 27 deletions

File tree

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<BuildToolsDirectory>$(RepositoryDirectory)build\</BuildToolsDirectory>
55
</PropertyGroup>
66
<PropertyGroup>
7-
<Version>4.1.0</Version>
8-
<AssemblyVersion>4.1.0</AssemblyVersion>
7+
<Version>4.2.0</Version>
8+
<AssemblyVersion>4.2.0</AssemblyVersion>
99
</PropertyGroup>
1010
<PropertyGroup>
1111
<Company>lepo.co</Company>

src/Wpf.Ui.Extension.Template.Blank/Wpf.Ui.Blank.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="WPF-UI" Version="4.1.0" />
19-
<PackageReference Include="WPF-UI.DependencyInjection" Version="4.1.0" />
20-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
18+
<PackageReference Include="WPF-UI" Version="4.2.0" />
19+
<PackageReference Include="WPF-UI.DependencyInjection" Version="4.2.0" />
20+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
2121
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0 "/>
2222
</ItemGroup>
2323

src/Wpf.Ui.Extension.Template.Compact/Wpf.Ui.Compact.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="WPF-UI" Version="4.1.0" />
19-
<PackageReference Include="WPF-UI.DependencyInjection" Version="4.1.0" />
20-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
18+
<PackageReference Include="WPF-UI" Version="4.2.0" />
19+
<PackageReference Include="WPF-UI.DependencyInjection" Version="4.2.0" />
20+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
2121
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0 "/>
2222
</ItemGroup>
2323

src/Wpf.Ui.Extension.Template.Fluent/Wpf.Ui.Fluent.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="WPF-UI" Version="4.1.0" />
19-
<PackageReference Include="WPF-UI.DependencyInjection" Version="4.1.0" />
20-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
18+
<PackageReference Include="WPF-UI" Version="4.2.0" />
19+
<PackageReference Include="WPF-UI.DependencyInjection" Version="4.2.0" />
20+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
2121
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0 "/>
2222
</ItemGroup>
2323

src/Wpf.Ui.Extension/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="WPFUI.f1be4a7a-6073-492b-ac8c-dc46e836e926" Version="4.0.4" Language="en-US" Publisher="lepo.co" />
4+
<Identity Id="WPFUI.f1be4a7a-6073-492b-ac8c-dc46e836e926" Version="4.2.0" Language="en-US" Publisher="lepo.co" />
55
<DisplayName>WPF UI</DisplayName>
66
<Description xml:space="preserve">WPF UI provides the Fluent experience in your known and loved WPF framework. Intuitive design, themes, navigation and new immersive controls. All natively and effortlessly.</Description>
77
<MoreInfo>https://github.com/lepoco/wpfui</MoreInfo>

src/Wpf.Ui.FontMapper/Program.cs

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,21 @@
2727
"generated\\SymbolFilled.cs"
2828
);
2929

30-
async Task<string> FetchVersion()
30+
Task<string> FetchVersion()
3131
{
32-
using var httpClient = new HttpClient();
33-
httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; AcmeInc/1.0)");
34-
35-
return (
36-
await httpClient.GetFromJsonAsync<IEnumerable<GitTag>>(
37-
@"https://api.github.com/repos/microsoft/fluentui-system-icons/git/refs/tags"
38-
)
39-
)
40-
?.Last()
41-
?.Ref.Replace("refs/tags/", string.Empty)
42-
.Trim()
43-
?? throw new Exception("Unable to parse the version string");
32+
// using var httpClient = new HttpClient();
33+
// httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; AcmeInc/1.0)");
34+
//
35+
// return (
36+
// await httpClient.GetFromJsonAsync<IEnumerable<GitTag>>(
37+
// @"https://api.github.com/repos/microsoft/fluentui-system-icons/git/refs/tags"
38+
// )
39+
// )
40+
// ?.Last()
41+
// ?.Ref.Replace("refs/tags/", string.Empty)
42+
// .Trim()
43+
// ?? throw new Exception("Unable to parse the version string");
44+
return Task.FromResult("1.1.316");
4445
}
4546

4647
string FormatIconName(string rawIconName)

0 commit comments

Comments
 (0)