mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-13 05:48:39 +00:00
Compare commits
No commits in common. "762e2fefe02e44b2f96e3f9e4e9337df16c3c0a3" and "b6132a4ee310d44460cd4eabf895f0520b82ceb2" have entirely different histories.
762e2fefe0
...
b6132a4ee3
@ -27,12 +27,11 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
- Added .net8 build-target
|
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.3</Version>
|
<Version>2.0.2</Version>
|
||||||
<AssemblyVersion>2.0.3</AssemblyVersion>
|
<AssemblyVersion>2.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.0.3</FileVersion>
|
<FileVersion>2.0.2</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
@ -27,12 +27,11 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
- Added .net8 build-target
|
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.3</Version>
|
<Version>2.0.2</Version>
|
||||||
<AssemblyVersion>2.0.3</AssemblyVersion>
|
<AssemblyVersion>2.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.0.3</FileVersion>
|
<FileVersion>2.0.2</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
@ -27,12 +27,11 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
- Added .net8 build-target
|
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.3</Version>
|
<Version>2.0.2</Version>
|
||||||
<AssemblyVersion>2.0.3</AssemblyVersion>
|
<AssemblyVersion>2.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.0.3</FileVersion>
|
<FileVersion>2.0.2</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
@ -269,7 +269,7 @@ public sealed class Image<TColor> : IImage
|
|||||||
if (destination == null) throw new ArgumentNullException(nameof(destination));
|
if (destination == null) throw new ArgumentNullException(nameof(destination));
|
||||||
if (destination.Length < SizeInBytes) throw new ArgumentException("The destination is too small to fit this image.", nameof(destination));
|
if (destination.Length < SizeInBytes) throw new ArgumentException("The destination is too small to fit this image.", nameof(destination));
|
||||||
|
|
||||||
MemoryMarshal.Cast<byte, TColor>(_buffer).Slice(_start, _length).CopyTo(MemoryMarshal.Cast<byte, TColor>(destination));
|
_buffer.AsSpan(_start, SizeInBytes).CopyTo(destination);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
|
|||||||
@ -26,13 +26,12 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
- Added .net8 build-target
|
Fixed issues with .NET 6
|
||||||
- Fixed an issue in ImageRow.ToArray (and indirect Image.ToArray) that caused the resulting data to be weirdly interlaced
|
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.3</Version>
|
<Version>2.0.2</Version>
|
||||||
<AssemblyVersion>2.0.3</AssemblyVersion>
|
<AssemblyVersion>2.0.2</AssemblyVersion>
|
||||||
<FileVersion>2.0.3</FileVersion>
|
<FileVersion>2.0.2</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user