diff --git a/.github/Images/death-socket-logo.png b/.github/Images/death-socket-logo.png new file mode 100644 index 0000000..85c6c6b Binary files /dev/null and b/.github/Images/death-socket-logo.png differ diff --git a/DeathSocket/DeathSocket.fsproj b/DeathSocket/DeathSocket.fsproj index acfc299..69d8b67 100644 --- a/DeathSocket/DeathSocket.fsproj +++ b/DeathSocket/DeathSocket.fsproj @@ -4,7 +4,7 @@ netstandard2.0 true true - 0.4-alpha + 0.5-alpha Craig Oates Death Socket A .Net Standard library which you can plug into to project and draw gridded overlays onto you images. Please note, Death Socket uses System.Drawing brushes and not System.Media brushes. For futher information, visit the projects repository on GitHub. To get a sense of what Death Socket can do, there is a console program you can download seperately (on GitHub). @@ -15,8 +15,9 @@ https://github.com/CraigOates/Death-Socket/tree/master Git deathsocket craig oates image overlay f# - This release has renamed the ImageSpec to BrushSpec and added a new RGBASpec type. The RGBASpec allows the user to pass in individual RGBA values instead of creating a SolidBrush before adding it to the BrushSpec. -New functions have been added so you can now create a SolidBrush using individual RGBA values or an RGBASpec -- you do not need to do it yourself. Another "apply grid" function has been added , as well, which uses the new RGBASpec. + With this release comes the ability to draw grids with SkiaSharp, alongside System.Drawing. + 0.5.0.0 + https://github.com/CraigOates/Death-Socket/blob/master/.github/Images/death-socket-logo.png diff --git a/DeathSocket/GridPainter.fs b/DeathSocket/GridPainter.fs index 0954f71..e12bd8b 100644 --- a/DeathSocket/GridPainter.fs +++ b/DeathSocket/GridPainter.fs @@ -133,8 +133,6 @@ namespace DeathSocket // SkiaSharp Functions // ======================================================================== - // NOT TESTED - /// /// Determines the (SKPoints) points needed to draw the appropriate /// number of horizontal lines (I.E. rows). Each item in the array @@ -149,8 +147,6 @@ namespace DeathSocket let determineSKHorizontalLines (width: int) (height: int) (rows: int) = createSKHorizontalLines width height rows - // NOT TESTED - /// /// Determines the (SKPoints) points needed to draw the appropriate /// number of vertical lines (I.E. columns). Each item in the array @@ -166,7 +162,6 @@ namespace DeathSocket let determineSKVerticalLines (width: int) (height: int) (columns: int) = createSKVerticalLines width height columns - // NOT TESTED /// /// Uses the information included in spec to create a gridded image. @@ -194,8 +189,6 @@ namespace DeathSocket printfn "File could not be found at %s" ex.Message } - // NOT TESTED - /// /// Uses the information included in spec to create a gridded image. /// It then asynchronously saves it. Uses .jpg or .png formats only. diff --git a/DeathSocketCLI/AssemblyInfo.fs b/DeathSocketCLI/AssemblyInfo.fs index 00d540e..138c923 100644 --- a/DeathSocketCLI/AssemblyInfo.fs +++ b/DeathSocketCLI/AssemblyInfo.fs @@ -38,8 +38,8 @@ open System.Runtime.InteropServices // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [] -[] -[] +[] +[] do () \ No newline at end of file