Skip to content

Commit

Permalink
Merge pull request #17 from DarthAffe/DataHandlingRework
Browse files Browse the repository at this point in the history
Data handling rework
  • Loading branch information
DarthAffe committed Sep 10, 2023
2 parents 0675b65 + 5e6acc6 commit c2aed2b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 16 deletions.
File renamed without changes.
12 changes: 5 additions & 7 deletions ScreenCapture.NET.DX11/ScreenCapture.NET.DX11.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<AssemblyTitle>ScreenCapture.NET.DX11</AssemblyTitle>
<PackageId>ScreenCapture.NET.DX11</PackageId>
<RootNamespace>ScreenCapture.NET</RootNamespace>
<Description>Vortice based Screen-Capturing</Description>
<Summary>Vortice based Screen-Capturing using Desktop Duplication</Summary>
<Description>DirectX 11 based Screen-Capturing using the Desktop Duplication API</Description>
<Summary>DirectX 11 based Screen-Capturing using the Desktop Duplication API</Summary>
<Copyright>Copyright © Darth Affe 2023</Copyright>
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
<PackageIcon>icon.png</PackageIcon>
Expand All @@ -26,13 +26,11 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>

<PackageReleaseNotes>
The downscale-level is now automatically limited if it would scale the image below a size of 1x1 px.
This is change that can potentially break existing behavior but should only affect cases that are expected to crash with earlier versions.
</PackageReleaseNotes>

<Version>1.3.2</Version>
<AssemblyVersion>1.3.2</AssemblyVersion>
<FileVersion>1.3.2</FileVersion>
<Version>2.0.0</Version>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>

<OutputPath>..\bin\</OutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
4 changes: 2 additions & 2 deletions ScreenCapture.NET.DX9/ScreenCapture.NET.DX9.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<AssemblyTitle>ScreenCapture.NET.DX9</AssemblyTitle>
<PackageId>ScreenCapture.NET.DX9</PackageId>
<RootNamespace>ScreenCapture.NET</RootNamespace>
<Description>Vortice based Screen-Capturing</Description>
<Summary>Vortice based Screen-Capturing using Desktop Duplication</Summary>
<Description>DirectX 9 based Screen-Capturing</Description>
<Summary>DirectX 9 based Screen-Capturing. Use DX11 if possible!</Summary>
<Copyright>Copyright © Darth Affe 2023</Copyright>
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
<PackageIcon>icon.png</PackageIcon>
Expand Down
4 changes: 2 additions & 2 deletions ScreenCapture.NET.X11/ScreenCapture.NET.X11.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<AssemblyTitle>ScreenCapture.NET.X11</AssemblyTitle>
<PackageId>ScreenCapture.NET.X11</PackageId>
<RootNamespace>ScreenCapture.NET</RootNamespace>
<Description>Vortice based Screen-Capturing</Description>
<Summary>Vortice based Screen-Capturing using Desktop Duplication</Summary>
<Description>libX11 based Screen-Capturing</Description>
<Summary>libX11 based Screen-Capturing</Summary>
<Copyright>Copyright © Darth Affe 2023</Copyright>
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
<PackageIcon>icon.png</PackageIcon>
Expand Down
9 changes: 4 additions & 5 deletions ScreenCapture.NET/ScreenCapture.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>

<PackageReleaseNotes>
The downscale-level is now automatically limited if it would scale the image below a size of 1x1 px.
This is change that can potentially break existing behavior but should only affect cases that are expected to crash with earlier versions.
Reworked most of the data handling and splitted capture-logic into separate packages.
</PackageReleaseNotes>

<Version>1.3.2</Version>
<AssemblyVersion>1.3.2</AssemblyVersion>
<FileVersion>1.3.2</FileVersion>
<Version>2.0.0</Version>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>

<OutputPath>..\bin\</OutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit c2aed2b

Please sign in to comment.