Browse Source

update assembly/bulid info for 0.5 release.

master
Craig Oates 6 years ago
parent
commit
4cb1440895
  1. BIN
      .github/Images/death-socket-logo.png
  2. 7
      DeathSocket/DeathSocket.fsproj
  3. 7
      DeathSocket/GridPainter.fs
  4. 4
      DeathSocketCLI/AssemblyInfo.fs

BIN
.github/Images/death-socket-logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

7
DeathSocket/DeathSocket.fsproj

@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>0.4-alpha</Version>
<Version>0.5-alpha</Version>
<Authors>Craig Oates</Authors>
<Product>Death Socket</Product>
<Description>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).</Description>
@ -15,8 +15,9 @@
<RepositoryUrl>https://github.com/CraigOates/Death-Socket/tree/master</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>deathsocket craig oates image overlay f#</PackageTags>
<PackageReleaseNotes>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.</PackageReleaseNotes>
<PackageReleaseNotes>With this release comes the ability to draw grids with SkiaSharp, alongside System.Drawing.</PackageReleaseNotes>
<AssemblyVersion>0.5.0.0</AssemblyVersion>
<PackageIconUrl>https://github.com/CraigOates/Death-Socket/blob/master/.github/Images/death-socket-logo.png</PackageIconUrl>
</PropertyGroup>
<ItemGroup>

7
DeathSocket/GridPainter.fs

@ -133,8 +133,6 @@ namespace DeathSocket
// SkiaSharp Functions
// ========================================================================
// NOT TESTED
/// <summary>
/// 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
/// <summary>
/// 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
/// <summary>
/// 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
/// <summary>
/// Uses the information included in spec to create a gridded image.
/// It then asynchronously saves it. Uses .jpg or .png formats only.

4
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:
// [<assembly: AssemblyVersion("1.0.*")>]
[<assembly: AssemblyVersion("0.4.0.0")>]
[<assembly: AssemblyFileVersion("0.4.0.0")>]
[<assembly: AssemblyVersion("0.5.0.0")>]
[<assembly: AssemblyFileVersion("0.5.0.0")>]
do
()
Loading…
Cancel
Save