GroupDocs.Signature 24.12.1-alpha-20241210092502

This is a prerelease version of GroupDocs.Signature.
dotnet add package GroupDocs.Signature --version 24.12.1-alpha-20241210092502                
NuGet\Install-Package GroupDocs.Signature -Version 24.12.1-alpha-20241210092502                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Signature" Version="24.12.1-alpha-20241210092502" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GroupDocs.Signature --version 24.12.1-alpha-20241210092502                
#r "nuget: GroupDocs.Signature, 24.12.1-alpha-20241210092502"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GroupDocs.Signature as a Cake Addin
#addin nuget:?package=GroupDocs.Signature&version=24.12.1-alpha-20241210092502&prerelease

// Install GroupDocs.Signature as a Cake Tool
#tool nuget:?package=GroupDocs.Signature&version=24.12.1-alpha-20241210092502&prerelease                

Sign Documents API

Package version Package downloads .NET

banner


Product Page
Docs
Demo
API Reference
Examples
Blog
Search
Free Support
Temporary License


This on-premise .NET API lets your app end-users sign the electronic documents from a wide range of file formats. Supports several types of e-signing methods.

Content


Features

  • Create and add signatures to documents of various file formats.
  • Specify visual attributes of signatures, such as color, font, margins, etc.
  • Search and fetch a list of signatures from a document.
  • Determine if the document contains signatures meeting specified criteria.
  • Extract basic information about the document.
  • Generate image representation of document pages for preview.
  • Distinguish created signatures from the actual document.
  • Put encrypted text into the QR-code signature or embed custom data objects.

Top

Signature Supported Formats

The following section lists the supported file formats for the barcode, image, QR-code, stamp, and text signature types:
Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX
Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM
Microsoft PowerPoint: PPTX, PPTM, PPT, PPSX, PPSM, PPS, POTX, POTM
OpenOffice: ODT, OTT, ODS, OTS, ODP, OTP
Image: BMP, DJVU, GIF, JPG, JPEG, PNG, SVG, TIF, TIFF, WEBP
CorelDraw: CDR, CMX
Photoshop: PSD
Metafile: WMF
Portable: PDF

Top

Digital Signature Supported Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX
Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM
OpenOffice: ODS, OTS
Portable: PDF

Top

FormField Signature Supported Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX
Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM
OpenOffice: ODS, OTS, ODP
Portable: PDF

Top

Metadata Signature Supported Formats

Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX
Microsoft Excel: XLSX, XLS, XLSB, XLSM, XLTX, XLTM
Microsoft PowerPoint: PPTX, PPTM, PPT, PPSX, PPSM, PPS, POTX, POTM
OpenOffice: ODT, OTT, ODS, OTS, ODP, OTP
Image: JPG, JPEG, PNG, SVG, TIF, TIFF
Photoshop: PSD
Portable: PDF

Top

Supported Signature Types

Top

Platform Independence

GroupDocs.Signature for .NET does not require any external software or third-party tool to be installed. GroupDocs.Signature for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:

Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.

Top

Get Started

Are you ready to give GroupDocs.Signature for .NET a try? Simply execute Install-Package GroupDocs.Signature from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Signature assembly in your project. If you already have GroupDocs.Signature for .Net and want to upgrade it, please execute Update-Package GroupDocs.Signature to get the latest version.

Please check the GitHub Repository for other common usage scenarios.

Top

Sign PDF with Digital Signature

The example below shows how to sign a PDF document with a digital e-signature using C# language. We can sign any other supported document format in the same way

 using (Signature signature = new Signature("sample.pdf"))
 {
     // initialize digital option with certificate file path
     DigitalSignOptions options = new DigitalSignOptions("certificate.pfx")
     {
         // set signature position
         Left = 100,
         Top = 100,

         Password = "1234567890"
     };
     signature.Sign("signed.pdf", options);
 }

Source*

Top

Sign with QR Code Signature

The code snippet below demonstrates how to sign a PDF document with the QR code signature

 using (Signature signature = new Signature("sample.pdf"))
 {
     // create QRCode option with predefined QRCode text
     QrCodeSignOptions options = new QrCodeSignOptions("JohnSmith")
     {
         // setup QRCode encoding type
         EncodeType = QrCodeTypes.QR,
         // set signature position
         Left = 100,
         Top = 100
     };
     signature.Sign("signed.pdf", options);
 }

Source*

Top

Verify Digital Signatures

This example shows how to verify Digital signature in the document

 using (Signature signature = new Signature("sample.pdf"))
 {
     DigitalVerifyOptions options = new DigitalVerifyOptions("certificate.pfx")
     {
         Comments = "Test comment"
     };
     // verify document signatures
     VerificationResult result = signature.Verify(options);
     if (result.IsValid)
     {
         Console.WriteLine("\nDocument was verified successfully!");
     }
     else
     {
         Console.WriteLine("\nDocument failed verification process.");
     }
 }

Source*

Top

Search Signatures in XLSX

This example shows how to search for Digital signature in the document and analyze digital signature certificate

 using (Signature signature = new Signature("spreadsheet.xlsx"))
 {
     // search for signatures in document
     List<DigitalSignature> signatures = signature.Search<DigitalSignature>(SignatureType.Digital);

     Console.WriteLine("\nSource document contains following signatures.");
     foreach (var digitalSignature in signatures)
     {
         Console.WriteLine("Digital signature found from {0} with validation flag {1}. Certificate SN {2}",
         digitalSignature.SignTime, digitalSignature.IsValid, digitalSignature.Certificate?.SerialNumber);
     }
 } 

Source*

Top

Remove Signature from Document

This example shows how to delete Digital signature that was found using Search method

 using (Signature signature = new Signature("signed.pdf"))
 {
     List<DigitalSignature> signatures = 
         signature.Search<DigitalSignature>(SignatureType.Digital);

     if (signatures.Count > 0)
     {
         DigitalSignature digitalSignature = signatures[0];
         bool result = signature.Delete(digitalSignature);

         if (result)
         {
             Console.WriteLine(
                 $"Digital signature #{digitalSignature.Thumbprint} from " +
                 $"{digitalSignature.SignTime.ToShortDateString()} was deleted."
             );
         }
         else
         {
             Console.WriteLine(
                 $"Signature was not deleted from the document! " +
                 $"Signature# {digitalSignature.Thumbprint} was not found!"
             );
         }
     }
 }

Source*

Top

Custom PDF Digital Signature

This example shows how to specify extra appearances

 using (Signature signature = new Signature("sample.docx"))
 {
     DigitalSignOptions options = new DigitalSignOptions("certificate.pfx")
     {
         // certifiate password
         Password = "1234567890",
         // digital certificate details
         Reason = "Sign",
         Contact = "JohnSmith",
         Location = "Office1",   

         // image as digital certificate appearance on document pages
         ImageFilePath = imagePath,
         //
         AllPages = true,
         Width = 80,
         Height = 60,
         VerticalAlignment = VerticalAlignment.Bottom,
         HorizontalAlignment = HorizontalAlignment.Right,
         Margin = new Padding() { Bottom = 10, Right = 10 },
         // Setup signature line appearance.
         // This appearance will add Signature Line on the first page.
         // Could be useful for .xlsx files.
         Appearance = new DigitalSignatureAppearance("John Smith", "Title", "jonny@test.com")    
     };
     signature.Sign("signed.docx", options);
 }

Source


Product Page
Docs
Demo
Reference
Examples
Blog
Search
Support
License


Top

Tags

Document Singing | Digital Signature| Sign PDF | Sign DOCX | Sign XLSX | Sign Digitally| Digital Signature| esing| Cross Platform | Document Manipulation | High Performance | DotNet | API | Signature Verification | GroupDocs.Signature | Secure Signing | Document Security | Digital Certificate | X.509 Certificate | Batch Signing | Signature Management | Code Signing | Signature Workflow | Digital Signature API | Electronic Signature API | GroupDocs SDK | Document Integrity | Multi-format Signing

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.12.1-alpha-20241210092502 0 12/10/2024
24.12.0-alpha-20241205152521 0 12/5/2024
24.11.1-alpha-20241129154505 1 11/29/2024
24.11.0-alpha-20241118083429 4 11/18/2024
24.10.0-alpha-20241031082307 0 10/31/2024
24.9.0-alpha-20240919131712 2 9/19/2024
24.9.0-alpha-20240919120728 2 9/19/2024
24.9.0-alpha-20240919105029 1 9/19/2024
24.9.0-alpha-20240919094457 1 9/19/2024
24.8.0-alpha-20240824171931 3 8/24/2024
24.7.0-alpha-20240731162708 2 7/31/2024
24.6.0-alpha-20240705074022 2 7/5/2024
24.6.0-alpha-20240701144806 2 7/1/2024
24.6.0-alpha-20240701134645 1 7/1/2024
24.5.0-alpha-20240530040034 2 5/30/2024
24.5.0-alpha-20240530001301 3 5/30/2024
24.4.0-alpha-20240430122900 4 4/30/2024
24.4.0-alpha-20240430114853 3 4/30/2024
24.3.0-alpha-20240401190836 2 4/2/2024
24.3.0-alpha-20240401180704 3 4/1/2024
24.2.0-alpha-20240229122339 3 2/29/2024
24.2.0-alpha-20240229090639 2 2/29/2024
24.1.0-alpha-20240131172725 3 2/1/2024
23.12.0-alpha-20231227072318 3 12/27/2023
23.11.3-alpha-20231219014709 5 12/19/2023
23.11.2-alpha-20231218080220 3 12/18/2023
23.11.1-alpha-20231218090522 1 12/18/2023
23.11.0-alpha-20231128102751 3 11/28/2023
23.10.0-alpha-20231025033508 4 10/25/2023
23.10.0-alpha-20231024094716 2 10/24/2023
23.9.1-alpha-20231006092517 4 10/6/2023
23.9.0-alpha-20230926080916 8 9/26/2023
23.9.0-alpha-20230926063438 2 9/26/2023
23.8.0-alpha-20230829072428 3 8/29/2023
23.8.0-alpha-20230829055454 2 8/29/2023
23.8.0-alpha-20230828074349 2 8/28/2023
23.7.0-alpha-20230728045214 3 7/28/2023
23.6.0-alpha-20230709100444 3 7/9/2023
23.6.0-alpha-20230709054227 3 7/9/2023
23.6.0-alpha-20230708184100 1 7/8/2023
23.6.0-alpha-20230708162511 2 7/8/2023
23.6.0-alpha-20230708081517 3 7/8/2023
23.6.0-alpha-20230707100409 2 7/7/2023
23.6.0-alpha-20230706192022 4 7/7/2023
23.5.0-alpha-20230530180649 3 5/30/2023
23.4.0-alpha-20230429110932 2 4/29/2023
23.4.0-alpha-20230428150740 2 4/28/2023
23.4.0-alpha-20230428092806 3 4/28/2023
23.4.0-alpha-20230428061046 3 4/28/2023
23.4.0-alpha-20230427163656 2 4/27/2023
23.4.0-alpha-20230426063657 1 4/26/2023
23.4.0-alpha-20230425095843 4 4/25/2023
23.4.0-alpha-20230425084751 3 4/25/2023
23.4.0-alpha-20230424155718 5 4/24/2023
23.3.0-alpha-20230330144049 4 3/30/2023
23.3.0-alpha-20230328124324 3 3/28/2023
23.3.0-alpha-20230327121333 2 3/27/2023
23.3.0-alpha-20230327085806 4 3/27/2023
23.3.0-alpha-20230318155248 2 3/18/2023
23.2.0-alpha-20230301040606 5 3/1/2023
23.2.0-alpha-20230228162013 4 2/28/2023
23.2.0-alpha-20230228153325 2 2/28/2023
23.2.0-alpha-20230228123640 3 2/28/2023
23.2.0-alpha-20230218052949 2 2/18/2023
23.2.0-alpha-20230217112203 3 2/17/2023
23.1.0-alpha-20230131085202 4 1/31/2023
22.12.0-alpha-20230131081522 3 1/31/2023
22.12.0-alpha-20221230152403 3 12/30/2022
22.12.0-alpha-20221225164937 34 12/25/2022
22.12.0-alpha-20221223073918 2 12/23/2022
22.11.0-alpha-20221201095627 2 12/1/2022
22.11.0-alpha-20221201054839 3 12/1/2022
22.11.0-alpha-20221130170247 5 11/30/2022
22.11.0-alpha-20221130161519 2 11/30/2022
22.11.0-alpha-20221130140139 2 11/30/2022
22.11.0-alpha-20221129181127 3 11/30/2022
22.10.0-alpha-20221103070216 2 11/3/2022
22.10.0-alpha-20221101153122 2 11/1/2022
22.10.0-alpha-20221101045303 3 11/1/2022
22.10.0-alpha-20221031172728 2 10/31/2022
22.10.0-alpha-20221031142959 2 10/31/2022
22.10.0-alpha-20221031121004 2 10/31/2022
22.10.0-alpha-20221025071302 4 10/25/2022
22.9.0-alpha-20221002053810 3 10/2/2022
22.9.0-alpha-20221001172706 2 10/1/2022
22.9.0-alpha-20220928125003 2 9/28/2022
22.9.0-alpha-20220928112604 2 9/28/2022
22.9.0-alpha-20220924172832 2 9/24/2022
22.9.0-alpha-20220923101704 4 9/23/2022
22.9.0-alpha-20220912090725 2 9/12/2022
22.8.0-alpha-20220830173101 4 8/30/2022
22.7.0-alpha-20220731101044 2 7/31/2022
22.7.0-alpha-20220731094255 2 7/31/2022
22.7.0-alpha-20220731085544 3 7/31/2022
22.6.0-alpha-20220630164753 2 6/30/2022
22.6.0-alpha-20220630071326 3 6/30/2022
22.4.0-alpha-20220405070959 2 4/5/2022
22.3.0-alpha-20220403150600 2 4/3/2022
21.11.0-alpha-20211201051623 7 12/1/2021
21.11.0-alpha-20211130163337 2 11/30/2021
21.11.0-alpha-20211130152455 2 11/30/2021
21.9.0-alpha-20210930172558 5 9/30/2021
21.7.0-alpha-20210731124053 4 7/31/2021
21.6.0-alpha-20210629111428 4 6/29/2021
21.6.0-alpha-20210629092947 3 6/29/2021
21.6.0-alpha-20210603123549 7 6/3/2021
21.4.0-alpha-20210503170030 7 5/3/2021
21.4.0-alpha-20210502170528 3 5/2/2021
21.3.0-alpha-20210331164717 5 3/31/2021
21.3.0-alpha-20210331043106 3 3/31/2021
21.1.0-alpha-20210127163656 70 1/27/2021
21.1.0-alpha-20210125155245 3 1/25/2021
20.11.0-alpha-20201130124346 17 11/30/2020
20.10.0-alpha-20201101183839 29 11/2/2020
20.9.0-alpha-20200930103235 18 9/30/2020
20.8.0-alpha-20200831183811 18 8/31/2020
20.8.0-alpha-20200831174001 3 8/31/2020
20.8.0-alpha-20200831103434 7 8/31/2020
20.7.0-alpha-20200802155940 67 8/2/2020
20.7.0-alpha-20200801164437 2 8/1/2020
20.7.0-alpha-20200730132912 8 7/30/2020
20.6.0-alpha-20200630203300 15 7/1/2020
20.6.0-alpha-20200628174710 9 6/28/2020
20.5.0-alpha-20200531182225 25 5/31/2020
20.5.0-alpha-20200529122153 2 5/29/2020
20.4.0-alpha-20200430182039 14 4/30/2020
20.4.0-alpha-20200429055754 7 4/29/2020
20.4.0-alpha-20200427110537 15 4/27/2020
20.4.0-alpha-20200427033713 6 4/27/2020
20.4.0-alpha-20200426151607 2 4/26/2020
20.4.0-alpha-20200426071758 1 4/26/2020
20.4.0-alpha-20200424112608 3 4/24/2020
20.4.0-alpha-20200423033408 3 4/23/2020
20.4.0-alpha-20200422062403 3 4/22/2020
20.4.0-alpha-20200421120915 3 4/21/2020
20.3.0-alpha-20200331141754 2 3/31/2020
20.3.0-alpha-20200330165807 2 3/30/2020
20.3.0-alpha-20200329164401 2 3/29/2020
20.3.0-alpha-20200326165428 2 3/26/2020
20.2.0-alpha-20200229121046 8 2/29/2020
20.2.0-alpha-20200227160114 8 2/27/2020
20.2.0-alpha-20200223132712 5 2/23/2020
20.2.0-alpha-20200219112656 9 2/19/2020
20.1.0-alpha-20200203032149 4 2/3/2020
20.1.0-alpha-20200130125335 7 1/30/2020
20.1.0-alpha-20200106192402 13 1/7/2020
20.1.0-alpha-20200106010846 2 1/6/2020
19.12.1-alpha-20200110131936 2 1/10/2020
19.12.1-alpha-20200110113820 2 1/10/2020
19.12.1-alpha-20200110084737 2 1/10/2020
19.12.1-alpha-20200110064239 2 1/10/2020
19.12.0-alpha-20191230150147 5 12/30/2019
19.12.0-alpha-20191230131906 3 12/30/2019
19.12.0-alpha-20191227171355 4 12/27/2019
19.12.0-alpha-20191226121332 6 12/26/2019
19.12.0-alpha-20191224102318 7 12/24/2019
19.12.0-alpha-20191222133226 12 12/22/2019
19.11.0-alpha-20191114095045 35 11/14/2019
19.10.0-alpha-20191031130653 28 10/31/2019
19.10.0-alpha-20191031064122 5 10/31/2019
19.10.0-alpha-20191030055315 5 10/30/2019
19.10.0-alpha-20191023071226 5 10/23/2019
19.10.0-alpha-20191023044802 6 10/23/2019
19.9.0-alpha-20190930094313 1 9/30/2019
19.9.0-alpha-20190929172021 2 9/29/2019
19.9.0-alpha-20190929170122 2 9/29/2019
19.9.0-alpha-20190929163015 2 9/29/2019
19.9.0-alpha-20190929160548 1 9/29/2019
19.8.0-alpha-20190825071415 13 8/25/2019
19.8.0-alpha-20190823145459 1 8/23/2019
19.8.0-alpha-20190823013150 3 8/23/2019
19.8.0-alpha-20190822173320 2 8/22/2019
19.8.0-alpha-20190820183837 2 8/20/2019
19.8.0-alpha-20190819063820 3 8/19/2019
19.6.0-alpha-20190626174205 5 6/26/2019
19.5.0-alpha-20190531015611 2 5/31/2019
19.5.0-alpha-20190531014157 1 5/31/2019
19.5.0-alpha-20190530140248 2 5/30/2019
19.5.0-alpha-20190529032652 4 5/29/2019
19.4.0-alpha-20190528165030 1 5/28/2019
19.4.0-alpha-20190430161813 3 4/30/2019
19.4.0-alpha-20190430064522 2 4/30/2019
19.4.0-alpha-20190430053302 2 4/30/2019
19.4.0-alpha-20190430044355 2 4/30/2019
19.4.0-alpha-20190429184718 2 4/29/2019
19.3.0-alpha-20190429183836 2 4/29/2019
19.3.0-alpha-20190330135648 14 3/30/2019
19.3.0-alpha-20190329074957 1 3/29/2019
19.3.0-alpha-20190328140209 2 3/28/2019
19.3.0-alpha-20190328125859 2 3/28/2019
19.3.0-alpha-20190327204533 3 3/28/2019
19.3.0-alpha-20190325154702 3 3/25/2019
19.1.0-alpha-20190131180122 7 2/1/2019
19.1.0-alpha-20190130135803 2 1/30/2019
18.12.0-alpha-20181231092402 2 12/31/2018
18.12.0-alpha-20181230164627 2 12/30/2018
18.12.0-alpha-20181228041128 2 12/28/2018
18.11.0-alpha-20181129120633 2 11/29/2018
18.11.0-alpha-20181128172949 2 11/28/2018
18.10.0-alpha-20181030105508 2 10/30/2018
18.10.0-alpha-20181029150111 2 10/29/2018
18.9.1-alpha-20180915035833 3 9/15/2018
18.9.0-alpha-20180909153518 4 9/9/2018
18.9.0-alpha-20180908191440 5 9/9/2018
18.9.0-alpha-20180906025939 4 9/6/2018
18.8.0-alpha-20180827172919 5 8/27/2018
18.8.0-alpha-20180821164216 5 8/21/2018
18.8.0-alpha-20180803093926 25 8/3/2018
18.8.0-alpha-20180802103352 5 8/2/2018
18.7.1-alpha-20180801165902 3 8/1/2018
18.7.1-alpha-20180801074438 3 8/1/2018
18.7.0-alpha-20180801073856 3 8/1/2018
18.7.0-alpha-20180730182523 4 7/30/2018
18.7.0-alpha-20180730032757 5 7/30/2018
18.7.0-alpha-20180729195228 4 7/30/2018
18.7.0-alpha-20180727042148 3 7/27/2018
18.7.0-alpha-20180719065425 6 7/19/2018
18.6.0-alpha-20180618101810 10 6/18/2018
18.6.0-alpha-20180617191156 10 6/18/2018
18.6.0-alpha-20180603101035 11 6/3/2018
18.5.0-alpha-20180615122749 9 6/15/2018
18.5.0-alpha-20180615101927 9 6/15/2018
18.5.0-alpha-20180613124317 9 6/13/2018
18.5.0-alpha-20180613053954 8 6/13/2018
18.5.0-alpha-20180612093306 9 6/12/2018
18.5.0-alpha-20180612085234 9 6/12/2018
18.5.0-alpha-20180612082000 9 6/12/2018
18.5.0-alpha-20180612063050 9 6/12/2018
18.5.0-alpha-20180612052115 9 6/12/2018
18.5.0-alpha-20180612044923 11 6/12/2018
18.5.0-alpha-20180611113056 11 6/11/2018
18.5.0-alpha-20180611072527 8 6/11/2018
18.5.0-alpha-20180607165149 9 6/7/2018
18.5.0-alpha-20180603165914 9 6/3/2018
18.5.0-alpha-20180603142830 8 6/3/2018
18.5.0-alpha-20180603103748 9 6/3/2018
18.5.0-alpha-20180531032013 10 5/31/2018
18.5.0-alpha-20180530155124 9 5/30/2018
18.5.0-alpha-20180530121259 12 5/30/2018
18.5.0-alpha-20180529144203 9 5/29/2018
18.5.0-alpha-20180528181043 11 5/28/2018
18.5.0-alpha-20180524091647 9 5/24/2018
18.5.0-alpha-20180523144341 9 5/23/2018
18.3.0-alpha-20180321114124 48 3/21/2018
18.3.0-alpha-20180321070637 10 3/21/2018
18.3.0-alpha-20180318184012 11 3/18/2018
18.2.0-alpha-20180219143641 11 2/19/2018
18.2.0-alpha-20180216025327 44 2/16/2018
18.2.0-alpha-20180215061312 11 2/15/2018
18.1.1-alpha-20180122040638 40 1/22/2018
18.1.0-alpha-20180121094202 11 1/21/2018
18.1.0-alpha-20180121085857 10 1/21/2018
18.1.0-alpha-20180121084206 10 1/21/2018
18.1.0-alpha-20180118180701 11 1/19/2018
17.12.0-alpha-20171206080806 10 12/6/2017
17.12.0-alpha-20171206075530 10 12/6/2017
17.11.0-alpha-20171107044019 7 11/7/2017
17.11.0-alpha-20171106131603 7 11/6/2017
17.11.0-alpha-20171105181445 7 11/6/2017
17.10.0-alpha-20171002070621 11 10/2/2017
17.8.0-alpha-20170927003453 6 9/27/2017
17.8.0-alpha-20170920103929 7 9/20/2017
17.1.0-alpha-20171002053622 7 10/2/2017