Skip to content

Commit

Permalink
[release] 1.4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zxbmmmmmmmmm committed Oct 13, 2024
1 parent 5c25054 commit 33d0fa7
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion FluentWeather.DIContainer/FluentWeather.DIContainer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenMeteoApi" Version="1.2.0" />
<PackageReference Include="OpenMeteoApi" Version="1.3.0" />
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion FluentWeather.Tasks/FluentWeather.Tasks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<Version>1.0.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection">
<Version>8.0.0</Version>
<Version>8.0.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.14</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm">
<Version>8.2.2</Version>
<Version>8.3.2</Version>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection">
<Version>8.0.0</Version>
<Version>8.0.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.14</Version>
Expand Down
2 changes: 1 addition & 1 deletion FluentWeather.Uwp.Shared/FluentWeather.Uwp.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Text.Json">
<Version>8.0.4</Version>
<Version>8.0.5</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
18 changes: 9 additions & 9 deletions FluentWeather.Uwp/FluentWeather.Uwp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -635,19 +635,19 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm">
<Version>8.2.2</Version>
<Version>8.3.2</Version>
</PackageReference>
<PackageReference Include="CommunityToolkit.Uwp.Controls.Primitives">
<Version>8.0.240109</Version>
<Version>8.1.240916</Version>
</PackageReference>
<PackageReference Include="CommunityToolkit.Uwp.Controls.Segmented">
<Version>8.0.240109</Version>
<Version>8.1.240916</Version>
</PackageReference>
<PackageReference Include="CommunityToolkit.Uwp.Controls.SettingsControls">
<Version>8.0.240109</Version>
<Version>8.1.240916</Version>
</PackageReference>
<PackageReference Include="CommunityToolkit.Uwp.Controls.Sizers">
<Version>8.0.240109</Version>
<Version>8.1.240916</Version>
</PackageReference>
<PackageReference Include="MetroLog">
<Version>1.0.1</Version>
Expand All @@ -665,10 +665,10 @@
<Version>5.0.3</Version>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection">
<Version>8.0.0</Version>
<Version>8.0.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.Gaming.XboxGameBar">
<Version>6.1.240122001</Version>
<Version>7.2.240903001</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.14</Version>
Expand All @@ -695,13 +695,13 @@
<Version>2.0.1</Version>
</PackageReference>
<PackageReference Include="System.Text.Json">
<Version>8.0.4</Version>
<Version>8.0.5</Version>
</PackageReference>
<PackageReference Include="Telerik.UI.for.UniversalWindowsPlatform">
<Version>1.0.2.11</Version>
</PackageReference>
<PackageReference Include="ValueConverters">
<Version>3.0.26</Version>
<Version>3.1.22</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion FluentWeather.Uwp/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="BettaFish.SkylineWeather"
Publisher="CN=F75CF79A-52F1-4629-8214-C9C6D329E85A"
Version="1.4.0.0" />
Version="1.4.1.0" />

<mp:PhoneIdentity PhoneProductId="8b462067-d8ec-428c-a0f1-2f4fb5f9b377" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
3 changes: 2 additions & 1 deletion FluentWeather.Uwp/Themes/Generic.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ public sealed partial class Generic:ResourceDictionary
public Generic()
{
this.InitializeComponent();
var isEnglish = CultureInfo.CurrentCulture.Name.Contains("en");
var isEnglish = CultureInfo.CurrentCulture.Name.Contains("en")
|| CultureInfo.CurrentCulture.Name.Contains("fr");
this.Add("WeatherDescriptionFontSize", isEnglish ? 16 : 18);
this.Add("HourlyWeatherDescriptionVisibility", isEnglish ? Visibility.Collapsed : Visibility.Visible);
}
Expand Down

0 comments on commit 33d0fa7

Please sign in to comment.