Skip to content

Commit c398bb0

Browse files
committed
Release - V3.0.1
1 parent 827b7df commit c398bb0

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Core/Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<RootNamespace>QuickA_Cleanup.Core</RootNamespace>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<Version>3.0.0</Version>
8+
<Version>3.0.1</Version>
99
<Authors>Ash1421</Authors>
1010
<Copyright>Copyright (c) 2026 Ash1421</Copyright>
1111
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>

QuickA-Cleanup-CLI/QuickA-Cleanup-CLI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>QuickA-Cleanup-CLI</AssemblyName>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
9-
<Version>3.0.0</Version>
9+
<Version>3.0.1</Version>
1010
<Authors>Ash1421</Authors>
1111
<Copyright>Copyright (c) 2026 Ash1421</Copyright>
1212
<ApplicationManifest>app.manifest</ApplicationManifest>

QuickA-Cleanup-GUI/GUI/ThemeManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ private static Color Blend(Color c, double amount)
223223
byte target = amount >= 0 ? (byte)255 : (byte)0;
224224
double t = Math.Abs(amount);
225225

226-
byte Mix(byte channel) => (byte)Math.Clamp(channel + (target - channel) * t, 0, 255);
226+
byte Mix(byte channel) => (byte)Math.Clamp(channel + ((target - channel) * t), 0, 255);
227227

228228
return Color.FromArgb(255, Mix(c.R), Mix(c.G), Mix(c.B));
229229
}

QuickA-Cleanup-GUI/QuickA-Cleanup-GUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AssemblyName>QuickA-Cleanup-GUI</AssemblyName>
99
<ImplicitUsings>enable</ImplicitUsings>
1010
<Nullable>enable</Nullable>
11-
<Version>3.0.0</Version>
11+
<Version>3.0.1</Version>
1212
<Authors>Ash1421</Authors>
1313
<Copyright>Copyright (c) 2026 Ash1421</Copyright>
1414

QuickA-Cleanup-GUI/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="3.0.0.0" name="QuickA-Cleanup-GUI.app"/>
3+
<assemblyIdentity version="3.0.1.0" name="QuickA-Cleanup-GUI.app"/>
44

55
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
66
<security>

0 commit comments

Comments
 (0)