PdfPig 0.1.15-alpha-20260426-aba60

PdfPig

nuget Build and test Build and test [MacOS]

PdfPig supports reading text and content from PDF files. It also supports basic PDF file creation.

Installation

The package is available via the releases tab or from Nuget:

https://www.nuget.org/packages/PdfPig/

Or from the package manager console:

> Install-Package PdfPig

While the version is below 1.0.0 minor versions will change the public API without warning (SemVer will not be followed until 1.0.0 is reached).

Get Started

See the wiki for more examples

Reading text from a PDF

The simplest usage at this stage is to open a document, reading the words from every page:

// using UglyToad.PdfPig.DocumentLayoutAnalysis.TextExtractor;
// using UglyToad.PdfPig.DocumentLayoutAnalysis.WordExtractor;
using (PdfDocument document = PdfDocument.Open(@"C:\Documents\document.pdf"))
{
    foreach (Page page in document.GetPages())
    {
        string text = ContentOrderTextExtractor.GetText(page);
        IEnumerable<Word> words = page.GetWords(NearestNeighbourWordExtractor.Instance);
    }
}

You should not use page.Text directly, unless you know what you're doing. The Text property preserves the internal content order which is rarely ever the text in the order you want.

These layout analysis tools should get you the text you want in most cases.

Create PDF Document

To create documents use the class PdfDocumentBuilder. The Standard 14 fonts provide a quick way to get started:

PdfDocumentBuilder builder = new PdfDocumentBuilder();

PdfPageBuilder page = builder.AddPage(PageSize.A4);

// Fonts must be registered with the document builder prior to use to prevent duplication.
PdfDocumentBuilder.AddedFont font = builder.AddStandard14Font(Standard14Font.Helvetica);

page.AddText("Hello World!", 12, new PdfPoint(25, 700), font);

byte[] documentBytes = builder.Build();

File.WriteAllBytes(@"C:\git\newPdf.pdf", documentBytes);

The output is a 1 page PDF document with the text "Hello World!" in Helvetica near the top of the page:

Image shows a PDF document in Google Chrome's PDF viewer. The text "Hello World!" is visible

Each font must be registered with the PdfDocumentBuilder prior to use enable pages to share the font resources. Only Standard 14 fonts and TrueType fonts (.ttf) are supported.

Document creation supports very limited changes to existing PDF documents. However it does not support any of the following:

  • Editing forms
  • Copying or changing annotations, metadata or document structure data
  • Adding or removing text with existing fonts

Advanced Document Extraction

In this example a more advanced document extraction is performed. PdfDocumentBuilder is used to create a copy of the pdf with debug information (bounding boxes and reading order) added.

//using UglyToad.PdfPig;
//using UglyToad.PdfPig.DocumentLayoutAnalysis.PageSegmenter;
//using UglyToad.PdfPig.DocumentLayoutAnalysis.ReadingOrderDetector;
//using UglyToad.PdfPig.DocumentLayoutAnalysis.WordExtractor;
//using UglyToad.PdfPig.Fonts.Standard14Fonts;
//using UglyToad.PdfPig.Writer;


var sourcePdfPath = "";
var outputPath = "";
var pageNumber = 1;
using (var document = PdfDocument.Open(sourcePdfPath))
{
    var builder = new PdfDocumentBuilder { };
    PdfDocumentBuilder.AddedFont font = builder.AddStandard14Font(Standard14Font.Helvetica);
    var pageBuilder = builder.AddPage(document, pageNumber);
    pageBuilder.SetStrokeColor(0, 255, 0);
    var page = document.GetPage(pageNumber);

    var letters = page.Letters; // no preprocessing

    // 1. Extract words
    var wordExtractor = NearestNeighbourWordExtractor.Instance;

    var words = wordExtractor.GetWords(letters);

    // 2. Segment page
    var pageSegmenter = DocstrumBoundingBoxes.Instance;

    var textBlocks = pageSegmenter.GetBlocks(words);

    // 3. Postprocessing
    var readingOrder = UnsupervisedReadingOrderDetector.Instance;
    var orderedTextBlocks = readingOrder.Get(textBlocks);

    // 4. Add debug info - Bounding boxes and reading order
    foreach (var block in orderedTextBlocks)
    {
        var bbox = block.BoundingBox;
        pageBuilder.DrawRectangle(bbox.BottomLeft, bbox.Width, bbox.Height);
        pageBuilder.AddText(block.ReadingOrder.ToString(), 8, bbox.TopLeft, font);
    }

    // 5. Write result to a file
    byte[] fileBytes = builder.Build();
    File.WriteAllBytes(outputPath, fileBytes); // save to file
}

Image shows a PDF document created by the above code block with the bounding boxes and reading order of the words displayed

See Document Layout Analysis for more information on advanced document analysing.

See Export for more advanced tooling to analyse document layouts.

Usage

PdfDocument

The PdfDocument class provides access to the contents of a document loaded either from file or passed in as bytes. To open from a file use the PdfDocument.Open static method:

using UglyToad.PdfPig;
using UglyToad.PdfPig.Content;

using (PdfDocument document = PdfDocument.Open(@"C:\my-file.pdf"))
{
	int pageCount = document.NumberOfPages;

	// Page number starts from 1, not 0.
	Page page = document.GetPage(1);

	decimal widthInPoints = page.Width;
	decimal heightInPoints = page.Height;

	string text = page.Text;
}

PdfDocument should only be used in a using statement since it implements IDisposable (unless the consumer disposes of it elsewhere).

Encrypted documents can be opened by PdfPig. To provide an owner or user password provide the optional ParsingOptions when calling Open with the Password property defined. For example:

using (PdfDocument document = PdfDocument.Open(@"C:\my-file.pdf",  new ParsingOptions { Password = "password here" }))

You can also provide a list of passwords to try:

using (PdfDocument document = PdfDocument.Open(@"C:\file.pdf", new ParsingOptions
{
	Passwords = new List<string> { "One", "Two" }
}))

The document contains the version of the PDF specification it complies with, accessed by document.Version:

decimal version = document.Version;

Document Creation

The PdfDocumentBuilder creates a new document with no pages or content.

For text content, a font must be registered with the builder. This library supports Standard 14 fonts provided by Adobe by default and TrueType format fonts.

To add a Standard 14 font use:

public AddedFont AddStandard14Font(Standard14Font type)

Or for a TrueType font use:

AddedFont AddTrueTypeFont(IReadOnlyList<byte> fontFileBytes)

Passing in the bytes of a TrueType file (.ttf). You can check the suitability of a TrueType file for embedding in a PDF document using:

bool CanUseTrueTypeFont(IReadOnlyList<byte> fontFileBytes, out IReadOnlyList<string> reasons)

Which provides a list of reasons why the font cannot be used if the check fails. You should check the license for a TrueType font prior to use, since the compressed font file is embedded in, and distributed with, the resultant document.

The AddedFont class represents a key to the font stored on the document builder. This must be provided when adding text content to pages. To add a page to a document use:

PdfPageBuilder AddPage(PageSize size, bool isPortrait = true)

This creates a new PdfPageBuilder with the specified size. The first added page is page number 1, then 2, then 3, etc. The page builder supports adding text, drawing lines and rectangles and measuring the size of text prior to drawing.

To draw lines and rectangles use the methods:

void DrawLine(PdfPoint from, PdfPoint to, decimal lineWidth = 1)
void DrawRectangle(PdfPoint position, decimal width, decimal height, decimal lineWidth = 1)

The line width can be varied and defaults to 1. Rectangles are unfilled and the fill color cannot be changed at present.

To write text to the page you must have a reference to an AddedFont from the methods on PdfDocumentBuilder as described above. You can then draw the text to the page using:

IReadOnlyList<Letter> AddText(string text, decimal fontSize, PdfPoint position, PdfDocumentBuilder.AddedFont font)

Where position is the baseline of the text to draw. Currently only ASCII text is supported. You can also measure the resulting size of text prior to drawing using the method:

IReadOnlyList<Letter> MeasureText(string text, decimal fontSize, PdfPoint position, PdfDocumentBuilder.AddedFont font)

Which does not change the state of the page, unlike AddText.

Changing the RGB color of text, lines and rectangles is supported using:

void SetStrokeColor(byte r, byte g, byte b)
void SetTextAndFillColor(byte r, byte g, byte b)

Which take RGB values between 0 and 255. The color will remain active for all operations called after these methods until reset is called using:

void ResetColor()

Which resets the color for stroke, fill and text drawing to black.

Document Information

The PdfDocument provides access to the document metadata as DocumentInformation defined in the PDF file. These tend not to be provided therefore most of these entries will be null:

PdfDocument document = PdfDocument.Open(fileName);

// The name of the program used to convert this document to PDF.
string producer = document.Information.Producer;

// The title given to the document
string title = document.Information.Title;
// etc...

Document Structure

The PdfDocument has a Structure member:

UglyToad.PdfPig.Structure structure = document.Structure;

This provides access to tokenized PDF document content:

Catalog catalog = structure.Catalog;
DictionaryToken pagesDictionary = catalog.PagesDictionary;

The pages dictionary is the root of the pages tree within a PDF document. The structure also exposes a GetObject(IndirectReference reference) method which allows random access to any object in the PDF as long as its identifier number is known. This is an identifier of the form 69 0 R where 69 is the object number and 0 is the generation.

Page

The Page contains the page width and height in points as well as mapping to the PageSize enum:

PageSize size = Page.Size;

bool isA4 = size == PageSize.A4;

Page provides access to the text of the page but you should use ContentOrderTextExtractor or alternatives if indexing the text, e.g. for RAG/LLMs:

string text = page.Text;

There is a method which provides access to the words. The default method uses basic heuristics. For advanced cases, You can also implement your own IWordExtractor or use the NearestNeighbourWordExtractor:

IEnumerable<Word> words = page.GetWords();

You can also access the raw operations used in the page's content stream for drawing graphics and content on the page:

IReadOnlyList<IGraphicsStateOperation> operations = page.Operations;

Consult the PDF specification for the meaning of individual operators.

There is also an API for retrieving the PDF image objects per page:

IEnumerable<XObjectImage> images = page.GetImages();

Please read the wiki on Images.

Letter

Due to the way a PDF is structured internally the page text may not be a readable representation of the text as it appears in the document. Since PDF is a presentation format, text can be drawn in any order, not necessarily reading order. This means spaces may be missing or words may be in unexpected positions in the text.

To help users resolve actual text order on the page, the Page file provides access to a list of the letters:

IReadOnlyList<Letter> letters = page.Letters;

These letters contain:

  • The text of the letter: letter.Value.
  • The location of the lower left of the letter: letter.Location.
  • The width of the letter: letter.Width.
  • The font size in unscaled relative text units (these sizes are internal to the PDF and do not correspond to sizes in pixels, points or other units): letter.FontSize.
  • The name of the font used to render the letter if available: letter.FontName.
  • A rectangle which is the smallest rectangle that completely contains the visible region of the letter/glyph: letter.GlyphRectangle.
  • The points at the start and end of the baseline StartBaseLine and EndBaseLine which indicate if the letter is rotated. The TextDirection indicates if this is a commonly used rotation or a custom rotation.

Letter position is measured in PDF coordinates where the origin is the lower left corner of the page. Therefore a higher Y value means closer to the top of the page.

Annotations

Retrieving annotations on each page is provided using the method:

page.GetAnnotations()

This call is not cached and the document must not have been disposed prior to use. Annotations cannot be edited.

Bookmarks

The bookmarks (outlines) of a document may be retrieved at the document level:

bool hasBookmarks = document.TryGetBookmarks(out Bookmarks bookmarks);

This will return false if the document does not define any bookmarks.

Forms

Form fields for interactive forms (AcroForms) can be retrieved using:

bool hasForm = document.TryGetForm(out AcroForm form);

This will return false if the document does not contain a form.

The fields can be accessed using the AcroForm's Fields property. Since the form is defined at the document level this will return fields from all pages in the document. Fields are of the types defined by the enum AcroFieldType, for example PushButton, Checkbox, Text, etc.

Please note the forms are readonly and values cannot be changed or added using PdfPig.

A page has a method to extract hyperlinks (annotations of link type):

IReadOnlyList<UglyToad.PdfPig.Content.Hyperlink> hyperlinks = page.GetHyperlinks();

Hyperlinks cannot be added or edited when building documents.

TrueType

The classes used to work with TrueType fonts in the PDF file are available for public consumption. Given an input file:

using UglyToad.PdfPig.Fonts.TrueType;
using UglyToad.PdfPig.Fonts.TrueType.Parser;

byte[] fontBytes = System.IO.File.ReadAllBytes(@"C:\font.ttf");
TrueTypeDataBytes input = new TrueTypeDataBytes(fontBytes);
TrueTypeFont font = TrueTypeFontParser.Parse(input);

The parsed font can then be inspected.

Embedded Files

PDF files may contain other files entirely embedded inside them for document annotations. The list of embedded files and their byte content may be accessed:

if (document.Advanced.TryGetEmbeddedFiles(out IReadOnlyList<EmbeddedFile> files)
    && files.Count > 0)
{
    var firstFile = files[0];
    string name = firstFile.Name;
    IReadOnlyList<byte> bytes = firstFile.Bytes;
}

Merging

You can merge 2 or more existing PDF files using the PdfMerger class:

var resultFileBytes = PdfMerger.Merge(filePath1, filePath2);
File.WriteAllBytes(@"C:\pdfs\outputfilename.pdf", resultFileBytes);

Wiki

Check out our wiki for more examples and detailed guides on the API.

Issues

Please do file an issue if you encounter a bug. See our issue policy and contributing guide for details.

API Reference

If you wish to generate doxygen documentation, run doxygen doxygen-docs and open docs/doxygen/html/index.html.

Credit

This project started as an effort to port PDFBox to C#. This project wouldn't be possible without the work done by the PDFBox team and the Apache Foundation.

No packages depend on PdfPig.

.NET Framework 4.6.2

.NET Framework 4.7.1

.NET 6.0

  • No dependencies.

.NET 8.0

  • No dependencies.

.NET Standard 2.0

Version Downloads Last updated
0.1.15-alpha-20260426-aba60 1 26.04.2026
0.1.15-alpha-20260328-e5c04 2 31.03.2026
0.1.15-alpha-20260325-ba490 5 31.03.2026
0.1.15-alpha-20260323-4e0bd 2 31.03.2026
0.1.14 9 31.03.2026
0.1.14-alpha-20260315-fb715 5 22.03.2026
0.1.14-alpha-20260310-471ae 6 14.03.2026
0.1.14-alpha-20260228-f3e37 5 01.03.2026
0.1.14-alpha-20260223-a4047 7 01.03.2026
0.1.14-alpha-20260219-adb57 7 20.02.2026
0.1.14-alpha-20260217-66562 8 17.02.2026
0.1.14-alpha-20260216-7e370 7 17.02.2026
0.1.14-alpha-20260215-0a2b1 4 17.02.2026
0.1.14-alpha-20260211-d6e86 4 12.02.2026
0.1.14-alpha-20260211-d69e3 4 12.02.2026
0.1.14-alpha-20260202-c27f1 4 09.02.2026
0.1.14-alpha-20251224-7c4f5 5 22.01.2026
0.1.13 6 21.01.2026
0.1.13-alpha-20251207-ee0cb 6 17.12.2025
0.1.13-alpha-20251203-c70b3 6 17.12.2025
0.1.13-alpha-20251124-ce563 6 17.12.2025
0.1.13-alpha-20251122-37a5d 6 17.12.2025
0.1.13-alpha-20251115-aef0a 7 17.12.2025
0.1.13-alpha-20251114-005e5 6 17.12.2025
0.1.12 6 16.12.2025
0.1.12-alpha-20251107-9d3cd 7 09.11.2025
0.1.12-alpha-20251107-599ce 8 09.11.2025
0.1.12-alpha-20251104-181fa 7 09.11.2025
0.1.12-alpha-20251030-6ce69 7 09.11.2025
0.1.12-alpha-20251029-e11dc 7 09.11.2025
0.1.12-alpha-20251026-94d51 7 09.11.2025
0.1.12-alpha-20251026-40bcc 7 09.11.2025
0.1.12-alpha-20251023-35555 7 09.11.2025
0.1.12-alpha-20251020-6fba5 9 25.10.2025
0.1.12-alpha-20251015-3592f 8 24.10.2025
0.1.12-alpha-20251015-255e7 7 24.10.2025
0.1.12-alpha-20251014-cf0c3 8 25.10.2025
0.1.12-alpha-20251013-b14f4 8 24.10.2025
0.1.12-alpha-20251002-c28d1 8 24.10.2025
0.1.12-alpha-20250930-d7d01 8 24.10.2025
0.1.12-alpha-20250929-ca284 8 24.10.2025
0.1.12-alpha-20250922-b2f4c 8 25.10.2025
0.1.12-alpha-20250921-00895 8 24.10.2025
0.1.12-alpha-20250915-efded 8 25.10.2025
0.1.12-alpha-20250914-44e63 8 24.10.2025
0.1.12-alpha-20250914-304d7 8 24.10.2025
0.1.12-alpha-20250913-0ef12 9 15.09.2025
0.1.12-alpha-20250913-07df6 8 24.10.2025
0.1.12-alpha-20250910-22eab 9 15.09.2025
0.1.12-alpha-20250909-8408c 9 15.09.2025
0.1.12-alpha-20250908-dd5aa 9 15.09.2025
0.1.12-alpha-20250903-e4ed4 9 16.09.2025
0.1.12-alpha-20250815-3650e 11 21.08.2025
0.1.12-alpha-20250810-a43b9 10 21.08.2025
0.1.12-alpha-20250809-f1923 10 21.08.2025
0.1.12-alpha-20250809-1031d 10 21.08.2025
0.1.12-alpha-20250805-e6dd2 10 21.08.2025
0.1.12-alpha-20250804-bdf3b 10 21.08.2025
0.1.12-alpha-20250803-bdf3b 10 21.08.2025
0.1.12-alpha-20250728-83d6f 11 02.08.2025
0.1.12-alpha-20250727-52c06 11 03.08.2025
0.1.11 10 30.07.2025
0.1.11-alpha-20250726-50f87 9 02.08.2025
0.1.11-alpha-20250725-50f87 10 03.08.2025
0.1.11-alpha-20250721-5abdf 10 03.08.2025
0.1.11-alpha-20250720-377eb 10 02.08.2025
0.1.11-alpha-20250719-6a064 9 02.08.2025
0.1.11-alpha-20250717-31658 10 02.08.2025
0.1.11-alpha-20250715-016b7 10 03.08.2025
0.1.11-alpha-20250711-b11f9 10 02.08.2025
0.1.11-alpha-20250710-7fe60 10 03.08.2025
0.1.11-alpha-20250708-78199 9 02.08.2025
0.1.11-alpha-20250707-daaac 10 06.08.2025
0.1.11-alpha-20250706-daaac 10 06.08.2025
0.1.11-alpha-20250630-bf664 9 02.08.2025
0.1.11-alpha-20250629-bf664 10 02.08.2025
0.1.11-alpha-20250629-73ce5 9 02.08.2025
0.1.11-alpha-20250628-73ce5 10 02.08.2025
0.1.11-alpha-20250626-d1d79 10 02.08.2025
0.1.11-alpha-20250602-89abf 15 07.06.2025
0.1.11-alpha-20250601-8f919 15 05.06.2025
0.1.11-alpha-20250531-fe3d1 14 05.06.2025
0.1.11-alpha-20250530-4bdb8 15 03.06.2025
0.1.11-alpha-20250529-2b54a 15 01.06.2025
0.1.11-alpha-20250528-5b566 15 31.05.2025
0.1.11-alpha-20250519-67d3d 14 31.05.2025
0.1.11-alpha-20250518-67d3d 15 31.05.2025
0.1.11-alpha-20250514-bf7c3 15 30.05.2025
0.1.11-alpha-20250513-bf7c3 15 31.05.2025
0.1.11-alpha-20250512-4dab2 13 31.05.2025
0.1.11-alpha-20250511-4dab2 14 31.05.2025
0.1.11-alpha-20250425-47584 14 31.05.2025
0.1.11-alpha-20250424-47584 16 01.06.2025
0.1.11-alpha-20250421-afdd1 15 03.06.2025
0.1.11-alpha-20250413-58085 15 17.04.2025
0.1.11-alpha-20250407-24902 15 09.04.2025
0.1.11-alpha-20250331-4fbcc 16 08.04.2025
0.1.11-alpha-20250330-5fb36 14 09.04.2025
0.1.11-alpha-20250330-4fbcc 15 08.04.2025
0.1.11-alpha-20250327-74d61 14 29.03.2025
0.1.11-alpha-20250324-0754e 16 27.03.2025
0.1.11-alpha-20250310-204f4 16 13.03.2025
0.1.11-alpha-20250309-a4a0f 15 13.03.2025
0.1.10 16 14.03.2025
0.1.10-alpha-20250303-1b3c7 16 13.03.2025
0.1.10-alpha-20250224-f26e7 16 13.03.2025
0.1.10-alpha-20250223-f26e7 16 13.03.2025
0.1.10-alpha-20250223-d973e 16 13.03.2025
0.1.10-alpha-20250222-d973e 16 13.03.2025
0.1.10-alpha-20250222-c4a23 15 13.03.2025
0.1.10-alpha-20250220-5a06e 16 13.03.2025
0.1.10-alpha-20250209-1660c 15 13.03.2025
0.1.10-alpha-20250208-1660c 15 13.03.2025
0.1.10-alpha-20250203-fdb88 17 13.03.2025
0.1.10-alpha-20250122-52098 16 08.02.2025
0.1.10-alpha-20250120-b7e22 17 01.02.2025
0.1.10-alpha-20250115-92d34 15 19.02.2025
0.1.10-alpha-20250106-f86cc 16 05.02.2025
0.1.10-alpha-20250105-d1779 16 29.01.2025
0.1.10-alpha-20250101-2b14a 16 24.01.2025
0.1.10-alpha-20241229-50dca 16 24.01.2025
0.1.10-alpha-20241216-7ec4e 16 27.01.2025
0.1.10-alpha-20241215-7ec4e 16 27.01.2025
0.1.10-alpha-20241121-7db34 16 27.01.2025
0.1.10-alpha-20241114-8ca53 16 27.01.2025
0.1.10-alpha-20241103-132ad 16 28.01.2025
0.1.10-alpha-20241031-d3bf6 16 24.01.2025
0.1.10-alpha-20241026-40af4 16 30.01.2025
0.1.10-alpha-20241019-e1060 16 28.01.2025
0.1.10-alpha-20241018-ea95a 16 28.01.2025
0.1.10-alpha-20241016-e903b 17 23.01.2025
0.1.10-alpha-20241013-f4054 16 23.01.2025
0.1.10-alpha-20241008-a2580 16 28.01.2025
0.1.10-alpha-20241007-c4672 16 28.01.2025
0.1.9 30 23.10.2024
0.1.9-alpha-20240930-eb9a1 16 28.01.2025
0.1.9-alpha-20240910-4845f 15 23.01.2025
0.1.9-alpha-20240909-09bdd 16 24.01.2025
0.1.9-alpha-20240904-cd2a8 15 28.01.2025
0.1.9-alpha-20240903-f4d14 16 28.01.2025
0.1.9-alpha-20240902-cf45d 15 28.01.2025
0.1.9-alpha-20240901-b824f 15 27.01.2025
0.1.9-alpha-20240821-b4649 16 29.01.2025
0.1.9-alpha-20240721-a99c0 15 28.01.2025
0.1.9-alpha-20240702-65c64 16 28.01.2025
0.1.9-alpha-20240628-bac00 16 27.01.2025
0.1.9-alpha-20240626-14e70 14 24.01.2025
0.1.9-alpha-20240625-dc933 16 23.01.2025
0.1.9-alpha-20240612-d2cae 15 27.01.2025
0.1.9-alpha-20240609-affc1 16 28.01.2025
0.1.9-alpha-20240601-65a18 16 27.01.2025
0.1.9-alpha-20240530-d7e43 16 24.01.2025
0.1.9-alpha-20240510-d86c2 16 30.01.2025
0.1.9-alpha-20240509-5a8e6 16 23.01.2025
0.1.9-alpha-20240508-995f2 16 29.01.2025
0.1.9-alpha-20240507-93779 16 27.01.2025
0.1.9-alpha-20240506-b6e03 16 27.01.2025
0.1.9-alpha-20240504-da44e 15 27.01.2025
0.1.9-alpha-20240429-7f42a 16 28.01.2025
0.1.9-alpha-20240419-1ef2e 16 30.01.2025
0.1.9-alpha-20240413-0f707 16 28.01.2025
0.1.9-alpha-20240406-2d6cb 16 24.01.2025
0.1.9-alpha-20240402-f6292 16 28.01.2025
0.1.9-alpha-20240324-e7896 15 27.01.2025
0.1.9-alpha-20240318-69e2b 16 28.01.2025
0.1.9-alpha-20240312-845e3 15 23.01.2025
0.1.9-alpha-20240307-ac027 16 28.01.2025
0.1.9-alpha-20240219-c2536 15 23.01.2025
0.1.9-alpha-20240217-f4e75 16 28.01.2025
0.1.9-alpha-20240216-f78b1 15 28.01.2025
0.1.9-alpha-20240215-3bdc9 16 27.01.2025
0.1.9-alpha-20240208-19734 16 28.01.2025
0.1.9-alpha-20240207-23445 17 24.01.2025
0.1.9-alpha-20240128-f886e 16 28.01.2025
0.1.9-alpha-20240121-04fc8 16 28.01.2025
0.1.9-alpha-20240117-096eb 16 28.01.2025
0.1.9-alpha-20240116-4e63e 16 28.01.2025
0.1.9-alpha-20240115-0da7b 16 28.01.2025
0.1.9-alpha-20240114-5953c 16 27.01.2025
0.1.9-alpha-20240112-83519 16 28.01.2025
0.1.9-alpha-20240111-88a14 16 28.01.2025
0.1.9-alpha-20240109-8cfaa 15 24.01.2025
0.1.9-alpha-20240108-18144 16 30.01.2025
0.1.9-alpha-20231119-4537e 16 28.01.2025
0.1.9-alpha-20231113-1bc0e 15 28.01.2025
0.1.9-alpha-20231029-17d50 16 31.01.2025
0.1.9-alpha-20231026-63096 17 28.01.2025
0.1.9-alpha-20231023-ba865 14 24.01.2025
0.1.9-alpha-20231019-c6e2d 17 28.01.2025
0.1.9-alpha-20230930-06ac8 15 23.01.2025
0.1.9-alpha-20230914-d59d2 17 27.01.2025
0.1.9-alpha-20230827-ee756 17 31.01.2025
0.1.9-alpha-20230806-4a480 16 28.01.2025
0.1.8 16 16.07.2024
0.1.8-alpha-20230605-7fe5f 15 28.01.2025
0.1.8-alpha-20230529-6daa2 16 28.01.2025
0.1.8-alpha-20230528-5126d 16 27.01.2025
0.1.8-alpha-20230524-20d3c 15 27.01.2025
0.1.8-alpha-20230523-11df5 16 28.01.2025
0.1.8-alpha-20230522-c3dd6 15 08.02.2025
0.1.8-alpha-20230423-3898f 18 28.01.2025
0.1.8-alpha-20230420-147b8 16 28.01.2025
0.1.8-alpha-20230419-2d72d 16 29.01.2025
0.1.8-alpha-20230417-cdc3d 15 28.01.2025
0.1.8-alpha-20230415-9eb79 15 27.01.2025
0.1.8-alpha-20230414-42e41 15 30.01.2025
0.1.8-alpha-20230413-46a04 16 28.01.2025
0.1.8-alpha-20230412-db058 16 23.01.2025
0.1.8-alpha-20230411-0e39b 16 27.01.2025
0.1.8-alpha-20230403-2e062 16 28.01.2025
0.1.8-alpha-20230331-bd4ee 15 28.01.2025
0.1.8-alpha-20230327-2daba 14 28.01.2025
0.1.8-alpha-20230326-58b33 15 28.01.2025
0.1.8-alpha-20230324-a3a9d 17 28.01.2025
0.1.8-alpha-20230323-a4861 17 28.01.2025
0.1.8-alpha-20230320-c024e 16 23.01.2025
0.1.8-alpha-20230318-a5c91 15 29.01.2025
0.1.8-alpha-20230219-999f9 16 27.01.2025
0.1.8-alpha-20230117-88aad 16 28.01.2025
0.1.8-alpha-20230109-65bc7 15 27.01.2025
0.1.7 15 28.01.2025
0.1.7-alpha-20221212-c8874 16 24.01.2025
0.1.7-alpha-20221210-2aed9 17 27.01.2025
0.1.7-alpha-20220814-2f9a9 15 28.01.2025
0.1.7-alpha-20220703-545d1 15 30.01.2025
0.1.7-alpha-20220622-fc71a 16 28.01.2025
0.1.7-alpha-20220618-f2188 15 28.01.2025
0.1.7-alpha-20220525-559f3 16 28.01.2025
0.1.7-alpha-20220511-ddab5 14 28.01.2025
0.1.7-alpha-20220503-4e490 16 27.01.2025
0.1.7-alpha-20220426-03692 16 28.01.2025
0.1.6 14 30.01.2025
0.1.6-alpha-20220425-2576c 17 28.01.2025
0.1.6-alpha-20220423-801a3 16 24.01.2025
0.1.6-alpha-20220415-cbd02 15 23.01.2025
0.1.6-alpha-20220411-09a62 15 24.01.2025
0.1.6-alpha-20220405-c2ecb 13 06.02.2025
0.1.6-alpha-20220404-6b085 16 04.02.2025
0.1.6-alpha-20220315-9c83e 15 17.02.2025
0.1.6-alpha-20220220-b0a5f 16 23.01.2025
0.1.6-alpha-20220116-e54cd 15 07.02.2025
0.1.6-alpha-20220113-5b66e 17 18.02.2025
0.1.6-alpha-20220112-b89c8 16 30.01.2025
0.1.6-alpha-20220111-41bfa 16 24.01.2025
0.1.5 15 28.01.2025
0.1.5-alpha002 15 27.01.2025
0.1.5-alpha001 15 28.01.2025
0.1.5-alpha-20211231-a57e5 17 04.01.2025
0.1.5-alpha-20211026-55244 16 24.01.2025
0.1.5-alpha-20210929-615e8 16 27.01.2025
0.1.5-alpha-20210918-4c36f 16 20.02.2025
0.1.5-alpha-20210828-e8f91 16 24.01.2025
0.1.5-alpha-20210827-e8f91 15 23.01.2025
0.1.5-alpha-20210817-b1f88 16 28.01.2025
0.1.4 15 28.01.2025
0.1.3 15 28.01.2025
0.1.3-alpha001 15 28.01.2025
0.1.2 15 28.01.2025
0.1.2-alpha003 15 28.01.2025
0.1.2-alpha002 15 28.01.2025
0.1.2-alpha001 15 28.01.2025
0.1.1 15 28.01.2025
0.1.1-alpha001 14 28.01.2025
0.1.0 15 28.01.2025
0.1.0-beta002 15 28.01.2025
0.1.0-beta001 13 30.01.2025
0.0.11 15 28.01.2025
0.0.10 16 28.01.2025
0.0.9 15 28.01.2025
0.0.7 15 28.01.2025
0.0.6 15 28.01.2025
0.0.5 15 28.01.2025
0.0.3 15 28.01.2025
0.0.1 15 27.01.2025
0.0.1-alpha-002 15 28.01.2025
0.0.1-alpha-001 16 04.01.2025