Skip to content

Commit 657e268

Browse files
committed
v0.11.1
1 parent 6b31a27 commit 657e268

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

build/Common.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
</PropertyGroup>
4242

4343
<PropertyGroup Condition="'$(Configuration)'!='Debug'">
44+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
4445
<Deterministic>true</Deterministic>
4546
<DebugSymbols>true</DebugSymbols>
4647
<DebugType>portable</DebugType>

src/MagicScaler/WIC/WicCodec.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ internal sealed class WicColorProfile
230230
public static readonly Lazy<WicColorProfile> Cmyk = new Lazy<WicColorProfile>(() => new WicColorProfile(getDefaultColorContext(PixelFormat.Cmyk32Bpp.FormatGuid), null));
231231
public static readonly Lazy<WicColorProfile> Srgb = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.sRgbV4.Value), ColorProfile.sRGB));
232232
public static readonly Lazy<WicColorProfile> Grey = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.sGreyV4.Value), ColorProfile.sGrey));
233-
public static readonly Lazy<WicColorProfile> DisplayP3 = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.DisplayP3V4.Value), ColorProfile.sGrey));
233+
public static readonly Lazy<WicColorProfile> DisplayP3 = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.DisplayP3V4.Value), ColorProfile.DisplayP3));
234234
public static readonly Lazy<WicColorProfile> SrgbCompact = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.sRgbCompact.Value), ColorProfile.sRGB));
235235
public static readonly Lazy<WicColorProfile> GreyCompact = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.sGreyCompact.Value), ColorProfile.sGrey));
236236
public static readonly Lazy<WicColorProfile> AdobeRgb = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.AdobeRgb.Value), ColorProfile.AdobeRgb));
237-
public static readonly Lazy<WicColorProfile> DisplayP3Compact = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.DisplayP3Compact.Value), ColorProfile.AdobeRgb));
237+
public static readonly Lazy<WicColorProfile> DisplayP3Compact = new Lazy<WicColorProfile>(() => new WicColorProfile(CreateContextFromProfile(IccProfiles.DisplayP3Compact.Value), ColorProfile.DisplayP3));
238238

239239
public static WicColorProfile GetDefaultFor(PixelFormat fmt) => fmt.ColorRepresentation switch {
240240
PixelColorRepresentation.Cmyk => Cmyk.Value,

src/WebRSize/WebRSize.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>0.6.0</VersionPrefix>
4+
<VersionPrefix>0.6.1</VersionPrefix>
55
<TargetFrameworks>net461;net472</TargetFrameworks>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)