Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Taskbar - LauncherEntry Count int -> long
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Sep 28, 2023
1 parent 83febc1 commit 3cce02a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Nickvision.Aura/Nickvision.Aura.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>Nickvision.Aura</PackageId>
<Version>2023.9.7</Version>
<Version>2023.10.0-next</Version>
<Company>Nickvision</Company>
<Authors>Nickvision</Authors>
<Description>A cross-platform base for Nickvision applications</Description>
Expand All @@ -14,7 +14,7 @@
<Copyright>(c) Nickvision 2021-2023</Copyright>
<PackageProjectUrl>https://nickvision.org</PackageProjectUrl>
<RepositoryUrl>https://github.com/NickvisionApps/Aura</RepositoryUrl>
<PackageReleaseNotes>- Taskbar bug fixes</PackageReleaseNotes>
<PackageReleaseNotes>- LauncherEntry's Count property is now long type instead of int to match specs</PackageReleaseNotes>
<PackageIcon>logo-r.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Nickvision.Aura/Taskbar/LauncherEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ internal class LauncherEntry : ILauncherEntry
/// <summary>
/// A number to display on the launcher icon
/// </summary>
public int Count
public long Count
{
get
{
if (_properties.ContainsKey("count"))
{
return (int)_properties["count"];
return (long)_properties["count"];
}
return 0;
}
Expand Down

0 comments on commit 3cce02a

Please sign in to comment.