Skip to content

Commit 424d4f9

Browse files
Merge pull request #1777 from SixLabors/js/v2-builds
Update Infrastructure Files and Base Build Number for V2
2 parents d81c511 + 944d8f9 commit 424d4f9

File tree

388 files changed

+514
-652
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+514
-652
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,7 @@ artifacts/
223223
**/Images/ReferenceOutput
224224
**/Images/Input/MemoryStress
225225
.DS_Store
226+
227+
#lfs
228+
hooks/**
229+
lfs/**

src/ImageSharp/Advanced/ParallelExecutionSettings.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System;
55
using System.Threading.Tasks;
6-
76
using SixLabors.ImageSharp.Memory;
87

98
namespace SixLabors.ImageSharp.Advanced

src/ImageSharp/Color/Color.Conversions.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System.Numerics;
55
using System.Runtime.CompilerServices;
6-
76
using SixLabors.ImageSharp.PixelFormats;
87

98
namespace SixLabors.ImageSharp
@@ -95,4 +94,4 @@ public readonly partial struct Color
9594
[MethodImpl(InliningOptions.ShortMethod)]
9695
internal Vector4 ToVector4() => this.data.ToVector4();
9796
}
98-
}
97+
}

src/ImageSharp/Color/Color.WebSafePalette.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,4 @@ private static Color[] CreateWebSafePalette() => new[]
163163
YellowGreen
164164
};
165165
}
166-
}
166+
}

src/ImageSharp/Color/Color.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Numerics;
66
using System.Runtime.CompilerServices;
77
using System.Runtime.InteropServices;
8-
98
using SixLabors.ImageSharp.PixelFormats;
109

1110
namespace SixLabors.ImageSharp

src/ImageSharp/ColorSpaces/CieLab.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@ public bool Equals(CieLab other)
136136
&& this.WhitePoint.Equals(other.WhitePoint);
137137
}
138138
}
139-
}
139+
}

src/ImageSharp/ColorSpaces/CieLch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ public float Saturation()
162162
return result;
163163
}
164164
}
165-
}
165+
}

src/ImageSharp/ColorSpaces/CieLchuv.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ public float Saturation()
157157
return result;
158158
}
159159
}
160-
}
160+
}

src/ImageSharp/ColorSpaces/CieLuv.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ public bool Equals(CieLuv other)
137137
&& this.WhitePoint.Equals(other.WhitePoint);
138138
}
139139
}
140-
}
140+
}

0 commit comments

Comments
 (0)