MudBlazor.Extensions 1.7.68-prev-230918144-refactor-color-edit

This is a prerelease version of MudBlazor.Extensions.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MudBlazor.Extensions --version 1.7.68-prev-230918144-refactor-color-edit
                    
NuGet\Install-Package MudBlazor.Extensions -Version 1.7.68-prev-230918144-refactor-color-edit
                    
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="MudBlazor.Extensions" Version="1.7.68-prev-230918144-refactor-color-edit" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MudBlazor.Extensions" Version="1.7.68-prev-230918144-refactor-color-edit" />
                    
Directory.Packages.props
<PackageReference Include="MudBlazor.Extensions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MudBlazor.Extensions --version 1.7.68-prev-230918144-refactor-color-edit
                    
#r "nuget: MudBlazor.Extensions, 1.7.68-prev-230918144-refactor-color-edit"
                    
#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.
#:package MudBlazor.Extensions@1.7.68-prev-230918144-refactor-color-edit
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MudBlazor.Extensions&version=1.7.68-prev-230918144-refactor-color-edit&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MudBlazor.Extensions&version=1.7.68-prev-230918144-refactor-color-edit&prerelease
                    
Install as a Cake Tool

GitHub Repo stars GitHub GitHub last commit Nuget version Nuget downloads Website

CI Stats

Publish Nuget Preview Package and deploy Test App Publish Nuget Release Package

MudBlazor.Extensions

MudBlazor.Extensions is a extension library for MudBlazor Component library from https://mudblazor.com

Demos

Azure Cloudflare

MudBlazor.Extensions

The MudBlazor.Extensions is a convenient package that extends the capabilities of the MudBlazor component library. This guide will demonstrate the setup process for your project, along with detailed explanations of the components, extensions, and functionalities provided.

It's important to note that this package requires a MudBlazor project and the referenced MudBlazor package. For further information and assistance, please visit the official MudBlazor documentation at MudBlazor and MudBlazor/Templates.

Table of Contents

Installation

The installation process is straightforward. All you need to do is add the MudBlazor.Extensions NuGet package to your Blazor project. You can do this using the following code:

<PackageReference Include="MudBlazor.Extensions" Version="*" />

Setting Up MudBlazor.Extensions

Setting up MudBlazor.Extensions involves three steps:

  1. Update the _Imports.razor with the following lines:
@using MudBlazor.Extensions
@using MudBlazor.Extensions.Components
@using MudBlazor.Extensions.Components.ObjectEdit
  1. Register MudBlazor.Extensions in your Startup.cs in the ConfigureServices method.
// use this to add MudServices and the MudBlazor.Extensions
builder.Services.AddMudServicesWithExtensions();

// or this to add only the MudBlazor.Extensions but please ensure that this is added after mud servicdes are added. That means after `AddMudServices`
builder.Services.AddMudExtensions();
  1. (Optional) Define default dialogOptions.
builder.Services.AddMudServicesWithExtensions(c =>
{
    c.WithDefaultDialogOptions(ex =>
    {
        ex.Position = DialogPosition.BottomRight;
    });
});

if your are running on Blazor Server side, you should also use the MudBlazorExtensionMiddleware you can do this in your startup or program.cs by adding the following line on your WebApplication:

    app.UseMudExtensions();

(Optional) if you have problems with automatic loaded styles you can also load the styles manually by adding the following line to your index.html or _Host.cshtml

<link id="mudex-styles" href="_content/MudBlazor.Extensions/mudBlazorExtensions.min.css" rel="stylesheet">

If you have loaded styles manually you should disable the automatic loading of the styles in the AddMudExtensions or AddMudServicesWithExtensions method. You can do this by adding the following line to your Startup.cs in the ConfigureServices method.

builder.Services.AddMudServicesWithExtensions(c => c.WithoutAutomaticCssLoading());

Showcase Videos

<details> <summary>Expand videos</summary>

Showcase

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/39e06d88-a947-43cd-9151-a7cf96bcd849

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/3c77b8bf-6198-4385-b452-f25cc2852e0a

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/ce9bdf86-aaf9-4f04-b861-bd57698bb7f5

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/6b054bdc-a413-437c-8dbb-ded4e242d2a7

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/57f39cec-c3e9-43aa-8bfe-260d9aa05f63

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/c6a0e47d-2ed6-4a4e-b2b8-f4963274c9f8

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/3fc658d7-7fa2-487e-98d2-91860e00374a

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/aa266253-f1ac-450d-bd7b-510d2b99e3c0

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/cf4ff772-953e-4462-90fc-b32249083fb8

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/79bccec3-9e04-4901-a7d2-a08c9cef031c

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/8963eaaa-0f96-4c76-8e3c-c945920b2c23

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/cd5bab33-75cd-442d-a156-f43cc3a1c78c

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/8545a70c-1ce2-4683-8f1e-40a69efe462b

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/5c736020-94ba-431a-94f7-8e437530978e

</details>

Components

This section introduces you to the various components provided by the MudBlazor.Extensions.

MudExObjectEdit

The MudExObjectEdit is a robust component that allows for object editing and automatically generates the corresponding UI. This component supports automatic validation for DataAnnotation Validations or fluent registered validations for your model.

To use MudExObjectEdit, you can simply use the MudExObjectEditForm and pass your model to it as shown below:

<MudExObjectEditForm OnValidSubmit="@OnSubmit" Value="@MyModel"></MudExObjectEditForm>

You can also utilize the MudExObjectEditDialog to edit your model in a dialog. The easiest way to do this is by using the extension method EditObject on the IDialogService.

dialogService.EditObject(User, "Dialog Title", dialogOptionsEx);

More

GitHub Repo stars GitHub GitHub last commit Nuget version Nuget downloads Website

CI Stats

Publish Nuget Preview Package and deploy Test App Publish Nuget Release Package

MudBlazor.Extensions

MudBlazor.Extensions is a extension library for MudBlazor Component library from https://mudblazor.com

Demos

Azure Cloudflare

MudBlazor.Extensions

The MudBlazor.Extensions is a convenient package that extends the capabilities of the MudBlazor component library. This guide will demonstrate the setup process for your project, along with detailed explanations of the components, extensions, and functionalities provided.

It's important to note that this package requires a MudBlazor project and the referenced MudBlazor package. For further information and assistance, please visit the official MudBlazor documentation at MudBlazor and MudBlazor/Templates.

Table of Contents

Installation

The installation process is straightforward. All you need to do is add the MudBlazor.Extensions NuGet package to your Blazor project. You can do this using the following code:

<PackageReference Include="MudBlazor.Extensions" Version="*" />

Setting Up MudBlazor.Extensions

Setting up MudBlazor.Extensions involves three steps:

  1. Update the _Imports.razor with the following lines:
@using MudBlazor.Extensions
@using MudBlazor.Extensions.Components
@using MudBlazor.Extensions.Components.ObjectEdit
  1. Register MudBlazor.Extensions in your Startup.cs in the ConfigureServices method.
// use this to add MudServices and the MudBlazor.Extensions
builder.Services.AddMudServicesWithExtensions();

// or this to add only the MudBlazor.Extensions but please ensure that this is added after mud servicdes are added. That means after `AddMudServices`
builder.Services.AddMudExtensions();
  1. (Optional) Define default dialogOptions.
builder.Services.AddMudServicesWithExtensions(c =>
{
    c.WithDefaultDialogOptions(ex =>
    {
        ex.Position = DialogPosition.BottomRight;
    });
});

if your are running on Blazor Server side, you should also use the MudBlazorExtensionMiddleware you can do this in your startup or program.cs by adding the following line on your WebApplication:

    app.UseMudExtensions();

(Optional) if you have problems with automatic loaded styles you can also load the styles manually by adding the following line to your index.html or _Host.cshtml

<link id="mudex-styles" href="_content/MudBlazor.Extensions/mudBlazorExtensions.min.css" rel="stylesheet">

If you have loaded styles manually you should disable the automatic loading of the styles in the AddMudExtensions or AddMudServicesWithExtensions method. You can do this by adding the following line to your Startup.cs in the ConfigureServices method.

builder.Services.AddMudServicesWithExtensions(c => c.WithoutAutomaticCssLoading());

Showcase Videos

<details> <summary>Expand videos</summary>

Showcase

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/39e06d88-a947-43cd-9151-a7cf96bcd849

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/3c77b8bf-6198-4385-b452-f25cc2852e0a

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/ce9bdf86-aaf9-4f04-b861-bd57698bb7f5

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/6b054bdc-a413-437c-8dbb-ded4e242d2a7

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/57f39cec-c3e9-43aa-8bfe-260d9aa05f63

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/c6a0e47d-2ed6-4a4e-b2b8-f4963274c9f8

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/3fc658d7-7fa2-487e-98d2-91860e00374a

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/aa266253-f1ac-450d-bd7b-510d2b99e3c0

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/cf4ff772-953e-4462-90fc-b32249083fb8

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/79bccec3-9e04-4901-a7d2-a08c9cef031c

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/8963eaaa-0f96-4c76-8e3c-c945920b2c23

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/cd5bab33-75cd-442d-a156-f43cc3a1c78c

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/8545a70c-1ce2-4683-8f1e-40a69efe462b

https://github.com/fgilde/MudBlazor.Extensions/assets/11070717/5c736020-94ba-431a-94f7-8e437530978e

</details>

Components

This section introduces you to the various components provided by the MudBlazor.Extensions.

MudExObjectEdit

The MudExObjectEdit is a robust component that allows for object editing and automatically generates the corresponding UI. This component supports automatic validation for DataAnnotation Validations or fluent registered validations for your model.

To use MudExObjectEdit, you can simply use the MudExObjectEditForm and pass your model to it as shown below:

<MudExObjectEditForm OnValidSubmit="@OnSubmit" Value="@MyModel"></MudExObjectEditForm>

You can also utilize the MudExObjectEditDialog to edit your model in a dialog. The easiest way to do this is by using the extension method EditObject on the IDialogService.

dialogService.EditObject(User, "Dialog Title", dialogOptionsEx);

More

MudExStructuredDataEditor

The MudExStructuredDataEditor is a component that allows object editing and automatically generates the corresponding UI based on structured data like json, xml or yaml. This component supports all the same as MudExObjectEditForm.

To use MudExStructuredDataEditor, you can simply bind your data string shown as bellow:

    <MudExStructuredDataEditor @bind-Data="_dataString"></MudExStructuredDataEditor>

You can also utilize the MudExStructuredDataEditor to edit your data in a dialog. The easiest way to do this is by using the extension method EditStructuredDataString on the IDialogService.

dialogService.EditStructuredDataString(_dataType, _dataString, $"Auto Generated Editor for {_dataType}", ((_,_) => Task.FromResult("")));

You can find a running Sample here

MudExFileDisplay

The MudExFileDisplay component is designed to display file contents, such as a preview before uploading or for referenced files. This component can automatically handle URLs or streams and deliver the best possible display. Additionally, you can implement IMudExFileDisplay in your own component to register a custom file display. This is excacly what MudExFileDisplayZip does, which is used by MudExFileDisplay to display zip files or what MudExFileDisplayMarkdown does to display markdown files.

Example of using MudExFileDisplay:

 <MudExFileDisplay FileName="NameOfYourFile.pdf" ContentType="application/pdf" Url="@Url"></MudExFileDisplay>

SAMPLE

MudExFileDisplayZip

This component can be automatically utilized by MudExFileDisplay, but can also be used manually if necessary. Note: If you're using the ContentStream it should not be closed or disposed.

 <MudExFileDisplayZip AllowDownload="@AllowDownload" RootFolderName="@FileName" ContentStream="@ContentStream" Url="@Url"></MudExFileDisplayZip>

SAMPLE

MudExFileDisplayDialog

A small dialog for the MudExFileDisplay Component. It can be used with static helpers as shown below:

 await MudExFileDisplayDialog.Show(_dialogService, dataUrl, request.FileName, request.ContentType, ex => ex.JsRuntime = _jsRuntime);

It can be used directly with an IBrowserFile:

 IBrowserFile file = File;
 await MudExFileDisplayDialog.Show(_dialogService, file, ex => ex.JsRuntime = _jsRuntime);

Or it can be used manually with the MudBlazor dialogService:

var parameters = new DialogParameters
{
    {nameof(Icon), BrowserFileExtensions.IconForFile(contentType)},
    {nameof(Url), url},
    {nameof(ContentType), contentType}
};
await dialogService.ShowEx<MudExFileDisplayDialog>(title, parameters, optionsEx);

SAMPLE

More

MudExUploadEdit

This component provides multi-file upload functionality, with features like duplicate checks, max size, specific allowed content types, max items, zip auto-extract, and many more.

SAMPLE Download Video

More

Extensions

Resizable or Draggable Dialogs

You can make your dialogs resizable or draggable using the following code snippet:

var options = new DialogOptionsEx { Resizeable = true, DragMode = MudDialogDragMode.Simple, CloseButton = true, FullWidth = true };
var dialog = await _dialogService.ShowEx<YourMudDialog>("Your Dialog Title", parameters, options);

Adding a Maximize Button

You can add a maximize button to your dialogs with the following code:

var options = new DialogOptionsEx { MaximizeButton = true, CloseButton = true };
var dialog = await _dialogService.ShowEx<YourMudDialog>("Your Dialog Title", parameters, options);

Adding Custom Buttons

To add custom buttons to your dialog, first define the callback methods as JSInvokable in your component code:

[JSInvokable]
public void AlarmClick()
{
   // OnAlarmButton Click
}

[JSInvokable]
public void ColorLensClick()
{
   // OnColorLensButton Click
}

Next, define your custom buttons:

var buttons = new[]
{
    new MudDialogButton( DotNetObjectReference.Create(this as object), nameof(AlarmClick)) {Icon = Icons.Material.Filled.Alarm},
    new MudDialogButton( DotNetObjectReference.Create(this as object), nameof(ColorLensClick)) {Icon = Icons.Material.Filled.ColorLens},
};

Finally, add your custom buttons to the dialog:

var options = new DialogOptionsEx { MaximizeButton = true, CloseButton = true, Buttons = buttons };
var dialog = await _dialogService.ShowEx<YourMudDialog>("Your Dialog Title", parameters, options);

Your dialog can now look like this:

SAMPLE

Using Animation to Show Dialog

You can use animation to display your dialog. This is done by setting the Animation property of DialogOptionsEx.

var options = new DialogOptionsEx { 
    MaximizeButton = true, 
    CloseButton = true, 
    Buttons = buttons, 
    Position = DialogPosition.CenterRight, 
    Animation = AnimationType.SlideIn, 
    AnimationDuration = TimeSpan.FromMilliseconds(500),
    FullHeight = true
};
var dialog = await _dialogService.ShowEx<YourMudDialog>("Your Dialog Title", parameters, options);

SAMPLE

When you animate a dialog with dialogServiceEx, it's recommended to add the class mud-ex-dialog-initial to your dialog to ensure no visibility before animation.

<MudDialog Class="mud-ex-dialog-initial">

NOTE: All animations can be used on other components as well. Currently, the following animations are supported: SlideIn,FadeIn,Scale,Slide,Fade,Zoom,Roll,JackInTheBox,Hinge,Rotate,Bounce,Back,Jello,Wobble,Tada,Swing,HeadShake,Shake,RubberBand,Pulse,Flip,FlipX,FlipY.

Using Extension Method with an Action<YourDialog>

Instead of using DialogParameters, you can call the extension method with an Action<YourDialog>

await dialogService.ShowEx<SampleDialog>("Simple Dialog", dialog => { dialog.ContentMessage = "Hello"; },options);

More

Conclusion

This README file provides an overview of the MudBlazor.Extensions library, which is designed to simplify and enhance the development process in Blazor using MudBlazor. The library contains a variety of components, extensions, and features that aim to reduce the time and effort required to build intricate UIs. For additional information or help, visit the official MudBlazor website or MudBlazor GitHub repository.

We hope you find this library helpful and encourage you to provide any feedback or contribute to its development.

License

MudBlazor.Extensions is released under the MIT License. See the bundled LICENSE file for details.

Change Log

Latest Changes:

Full change log can be found here

Planned Features

Notice this is just a first preview version. There are some features planned like

  • Dragging with snap behaviour

If you like this package, please star it on GitHub and share it with your friends If not, you can give a star anyway and let me know what I can improve to make it better for you.

GitHub NuGet

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on MudBlazor.Extensions:

Package Downloads
MudExRichTextEditor

MudExRichTextEditor is a custom reusable control that allows us to easily consume Quill combining in a MudBlazor project.

Corsinvest.AppHero.Core.MudBlazorUI

Package Description

MudExObjectEdit.CodeGatorAdapter

This is a small package to combine CG.Blazor.Forms with the MudExObjectEdit from MudBlazor.Extensions

MudraX.Blazor.Core

MudraX Blazor Core Library

MudEx.Volo.Abp.AspNetCore.Components.Web.MudExTheme

A Theme for ABP Blazor WebAssembly applications using MudBlazor and MudBlazor.Extensions from https://www.mudex.org.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on MudBlazor.Extensions:

Repository Stars
DragoQCC/CrucibleC2
A C# Command & Control framework
CervantesSec/cervantes
Cervantes is an open-source, collaborative platform designed specifically for pentesters and red teams. It serves as a comprehensive management tool, streamlining the organization of projects, clients, vulnerabilities, and reports in a single, centralized location.
Version Downloads Last Updated
8.11.0-prev-2508221733-main 40 8/22/2025
8.9.1-prev-2508221732-main 35 8/22/2025
8.9.1-prev-2507151845-main 252 7/15/2025
8.9.1-prev-2507141426-copil... 136 7/14/2025
8.9.1-prev-2507101858-main 151 7/10/2025
8.9.0 3,082 7/10/2025
8.9.0-prev-2507101716-main 135 7/10/2025
8.9.0-prev-2507101713-main 132 7/10/2025
8.9.0-prev-2507101529-main 144 7/10/2025
8.9.0-prev-2507101517-main 138 7/10/2025
8.8.1-prev-250627149-main 117 6/27/2025
8.8.0 1,601 6/27/2025
8.8.0-prev-2506271245-main 103 6/27/2025
8.7.0 2,524 6/10/2025
8.7.0-prev-2506060936-main 114 6/6/2025
8.6.2-prev-2506060717-main 125 6/6/2025
8.6.2-prev-2505191247-main 170 5/19/2025
8.6.2-prev-2505191235-main 153 5/19/2025
8.6.2-prev-2505191234-main 154 5/19/2025
8.6.2-prev-2505191046-main 159 5/19/2025
8.6.2-prev-250518183-main 158 5/18/2025
8.6.2-prev-2505161151-main 216 5/16/2025
8.6.2-prev-2505160912-main 212 5/16/2025
8.6.2-prev-2505151223-main 235 5/15/2025
8.6.2-prev-2505150941-main 243 5/15/2025
8.6.1 2,810 5/15/2025
8.6.1-prev-2505150926-main 232 5/15/2025
8.6.1-prev-2505141854-main 247 5/14/2025
8.6.1-prev-2505122135-main 245 5/12/2025
8.6.1-prev-2505121747-main 235 5/12/2025
8.6.1-prev-2505121729-main 231 5/12/2025
8.6.1-prev-2505121728-main 237 5/12/2025
8.6.1-prev-2505121631-main 248 5/12/2025
8.6.1-prev-250511169-main 157 5/11/2025
8.6.1-prev-2505051052-main 173 5/5/2025
8.6.0 2,412 5/5/2025
8.6.0-prev-2505051020-main 156 5/5/2025
8.6.0-prev-2504301038-main 174 4/30/2025
8.6.0-prev-2504301026-main 159 4/30/2025
8.5.2 11,701 4/21/2025
8.5.2-prev-250422226-main 176 4/22/2025
8.5.2-prev-2504171323-main 219 4/17/2025
8.5.2-prev-2504161749-main 221 4/16/2025
8.5.2-prev-250416134-main 201 4/16/2025
8.5.2-prev-2504161310-main 212 4/16/2025
8.5.2-prev-250411104-main 153 4/11/2025
8.5.2-prev-250408191-main 167 4/8/2025
8.5.2-prev-2504071927-main 176 4/7/2025
8.5.1-prev-2504071347-main 180 4/7/2025
8.5.1-prev-2504071141-main 169 4/7/2025
8.5.0 1,671 4/7/2025
8.5.0-prev-2504071924-main 172 4/7/2025
8.3.2-prev-250403198-main 239 4/3/2025
8.3.2-prev-2503241458-main 710 3/24/2025
8.3.1 3,647 3/24/2025
8.3.1-prev-2503241450-main 418 3/24/2025
8.3.0 5,920 3/24/2025
8.3.0-prev-2503241447-main 407 3/24/2025
8.3.0-prev-2503181038-main 174 3/18/2025
8.3.0-prev-2503132013-main 171 3/13/2025
8.3.0-prev-2503101617-main 182 3/10/2025
8.3.0-prev-2503100817-main 177 3/10/2025
8.3.0-prev-2503061553-main 223 3/6/2025
8.2.2-prev-2502201313-main 365 2/20/2025
8.2.1 6,165 2/20/2025
8.2.1-prev-2502201311-main 112 2/20/2025
8.2.1-prev-2502141923-main 169 2/14/2025
8.2.1-prev-2502141921-main 110 2/14/2025
8.2.1-prev-2502141918-main 109 2/14/2025
8.2.0 3,413 2/14/2025
8.2.0-prev-2502141916-main 103 2/14/2025
8.0.2-prev-2501302211-main 233 1/30/2025
8.0.2-prev-2501301013-main 123 1/30/2025
8.0.2-prev-2501291421-42-no... 118 1/29/2025
8.0.2-prev-250128211-main 113 1/28/2025
8.0.2-prev-2501281520-main 109 1/28/2025
8.0.2-prev-2501280925-main 112 1/28/2025
8.0.2-prev-2501271442-main 115 1/27/2025
8.0.2-prev-2501261259-main 133 1/26/2025
8.0.2-prev-2501261222-main 106 1/26/2025
8.0.2-prev-2501261152-main 98 1/26/2025
8.0.1 2,286 1/26/2025
8.0.0 12,935 1/19/2025
8.0.0-prev-2501261143-main 109 1/26/2025
8.0.0-prev-2501191926-main 110 1/19/2025
8.0.0-prev-2501191920-mudbl... 115 1/19/2025
8.0.0-prev-2501131732-mudbl... 166 1/13/2025
8.0.0-prev-2501131730-mudbl... 76 1/13/2025
8.0.0-prev-250112136-mudbla... 84 1/12/2025
8.0.0-prev-2501121047-mudbl... 81 1/12/2025
8.0.0-prev-250112102-mudbla... 81 1/12/2025
8.0.0-prev-2501021023-mudbl... 114 1/2/2025
8.0.0-prev-2501011221-mudbl... 108 1/1/2025
8.0.0-prev-2501011220-mudbl... 96 1/1/2025
8.0.0-prev-2501011218-mudbl... 98 1/1/2025
8.0.0-prev-2412171357-mudbl... 121 12/17/2024
8.0.0-prev-2412151332-mudbl... 111 12/15/2024
8.0.0-prev-2412151237-mudbl... 83 12/15/2024
8.0.0-prev-2412121028-mudbl... 112 12/12/2024
8.0.0-prev-241208136-mudbla... 88 12/8/2024
8.0.0-prev-2411232146-mudbl... 130 11/23/2024
8.0.0-prev-2411231411-mudbl... 125 11/23/2024
2.1.1-prev-241217157-main 109 12/17/2024
2.1.0 6,634 12/17/2024
2.1.0-prev-241217140-main 132 12/17/2024
2.1.0-prev-2412171354-main 92 12/17/2024
2.1.0-prev-2412171226-main 105 12/17/2024
2.1.0-prev-2412151328-main 104 12/15/2024
2.1.0-prev-2412151250-main 126 12/15/2024
2.0.9-prev-2412151234-main 120 12/15/2024
2.0.9-prev-2412151211-main 126 12/15/2024
2.0.8 7,399 11/24/2024
2.0.8-prev-2412151156-main 109 12/15/2024
2.0.8-prev-2411231921-main 102 11/23/2024
2.0.8-prev-2411231414-main 98 11/23/2024
2.0.8-prev-2411221214-main 105 11/22/2024
2.0.8-prev-2411221019-main 105 11/22/2024
2.0.7.1 6,053 11/18/2024
2.0.7.1-prev-2411220950-main 115 11/22/2024
2.0.7.1-prev-2411181238-main 108 11/18/2024
2.0.7 422 11/17/2024
2.0.7-prev-2411171939-main 105 11/17/2024
2.0.7-prev-2411152211-main 114 11/15/2024
2.0.7-prev-2411121224-main 131 11/12/2024
2.0.7-prev-2411111731-main 126 11/11/2024
2.0.7-prev-2411110931-main 128 11/11/2024
2.0.7-prev-241111092-main 121 11/11/2024
2.0.7-prev-2411101417-main 118 11/10/2024
2.0.7-prev-2411051728-main 131 11/5/2024
2.0.7-prev-2411032052-main 127 11/3/2024
2.0.7-prev-241031237-main 132 10/31/2024
2.0.7-prev-2410312310-main 101 10/31/2024
2.0.7-prev-2410281059-main 106 10/28/2024
2.0.7-prev-241027214-main 111 10/27/2024
2.0.7-prev-2410261937-main 113 10/26/2024
2.0.7-prev-2410252028-main 115 10/25/2024
2.0.7-prev-2410250745-main 132 10/25/2024
2.0.7-prev-2410211158-main 130 10/21/2024
2.0.7-prev-2410122330-main 137 10/12/2024
2.0.6 8,244 10/12/2024
2.0.6-prev-2410122326-main 102 10/12/2024
2.0.6-prev-2410122324-main 102 10/12/2024
2.0.6-prev-241012219-main 121 10/12/2024
2.0.6-prev-2410121210-main 123 10/12/2024
2.0.6-prev-2410121158-main 122 10/12/2024
2.0.6-prev-2410112244-main 116 10/11/2024
2.0.6-prev-2410112222-main 133 10/11/2024
2.0.6-prev-2410112142-main 121 10/11/2024
2.0.6-prev-2410112114-main 124 10/11/2024
2.0.6-prev-2410112052-main 117 10/11/2024
2.0.6-prev-2410112021-main 126 10/11/2024
2.0.6-prev-2409240850-main 153 9/24/2024
2.0.6-prev-2409231432-main 120 9/23/2024
2.0.6-prev-2409231336-main 105 9/23/2024
2.0.6-prev-2409231328-main 124 9/23/2024
2.0.6-prev-2409231228-main 124 9/23/2024
2.0.6-prev-2409101419-main 204 9/10/2024
2.0.6-prev-2409101324-main 124 9/10/2024
2.0.6-prev-2409101031-main 144 9/10/2024
2.0.5 3,808 9/10/2024
2.0.5-prev-2409101025-main 128 9/10/2024
2.0.4 587 9/2/2024
2.0.4-prev-2409021559-main 111 9/2/2024
2.0.4-prev-2409021543-main 119 9/2/2024
2.0.4-prev-2408301757-main 128 8/30/2024
2.0.4-prev-240806216-main 168 8/6/2024
2.0.3 5,721 8/6/2024
2.0.3-prev-2408060651-main 108 8/6/2024
2.0.3-prev-2407162111-main 174 7/16/2024
2.0.2 7,231 7/16/2024
2.0.2-prev-240716212-main 123 7/16/2024
2.0.1-prev-2407161734-main 131 7/16/2024
2.0.0 1,707 7/9/2024
2.0.0-prev-2407080832-main 150 7/8/2024
2.0.0-prev-2407080828-main 130 7/8/2024
2.0.0-prev-2407080824-for-m... 91 7/8/2024
2.0.0-prev-2407080757-for-m... 83 7/8/2024
2.0.0-prev-2407041714-for-m... 122 7/4/2024
2.0.0-prev-2407041643-for-m... 85 7/4/2024
2.0.0-prev-2407031525-for-m... 104 7/3/2024
2.0.0-prev-2407031417-for-m... 95 7/3/2024
2.0.0-prev-2407011629-for-m... 132 7/1/2024
2.0.0-prev-2406301522-for-m... 151 6/30/2024
1.7.89 2,814 6/28/2024
1.7.89-prev-2406281250-main 128 6/28/2024
1.7.88-prev-2406281119-main 139 6/28/2024
1.7.88-prev-2406271513-main 136 6/27/2024
1.7.88-prev-2406241329-main 111 6/24/2024
1.7.88-prev-2406201445-main 130 6/20/2024
1.7.88-prev-2406201321-main 94 6/20/2024
1.7.88-prev-2406200938-main 125 6/20/2024
1.7.88-prev-240619108-main 142 6/19/2024
1.7.88-prev-2406191018-main 143 6/19/2024
1.7.88-prev-2406171154-main 139 6/17/2024
1.7.88-prev-2406051024-main 167 6/5/2024
1.7.88-prev-2406050857-main 125 6/5/2024
1.7.88-prev-2406042343-main 142 6/4/2024
1.7.88-prev-2406042336-main 133 6/4/2024
1.7.88-prev-2406042253-main 131 6/4/2024
1.7.88-prev-2406041330-main 120 6/4/2024
1.7.88-prev-2406041236-main 139 6/4/2024
1.7.88-prev-240526158-main 155 5/26/2024
1.7.88-prev-2405261413-main 159 5/26/2024
1.7.88-prev-2405141254-main 154 5/14/2024
1.7.88-prev-2405061530-main 209 5/6/2024
1.7.88-prev-2405020855-main 142 5/2/2024
1.7.88-prev-240429142-main 135 4/29/2024
1.7.88-prev-240425199-main 125 4/25/2024
1.7.88-prev-2404231313-main 135 4/23/2024
1.7.87 28,379 4/23/2024
1.7.87-prev-240423135-main 131 4/23/2024
1.7.87-prev-2404231253-main 146 4/23/2024
1.7.87-prev-2404011353-main 229 4/1/2024
1.7.87-prev-2404011345-main 139 4/1/2024
1.7.87-prev-2404011246-main 126 4/1/2024
1.7.87-prev-2403220933-main 141 3/22/2024
1.7.86 7,031 3/22/2024
1.7.86-prev-2403220928-main 127 3/22/2024
1.7.86-prev-2403171653-main 115 3/17/2024
1.7.86-prev-2403132130-main 141 3/13/2024
1.7.86-prev-2403130931-main 146 3/13/2024
1.7.86-prev-2403081028-main 143 3/8/2024
1.7.85 7,050 3/8/2024
1.7.85-prev-2403081025-main 117 3/8/2024
1.7.85-prev-2403081022-main 136 3/8/2024
1.7.85-prev-2403041240-main 206 3/4/2024
1.7.85-prev-240222126-main 179 2/22/2024
1.7.85-prev-2402221216-main 141 2/22/2024
1.7.85-prev-2402221115-main 151 2/22/2024
1.7.85-prev-2402190751-main 172 2/19/2024
1.7.85-prev-2402190729-main 128 2/19/2024
1.7.85-prev-2402190713-main 130 2/19/2024
1.7.84 1,825 2/18/2024
1.7.84-prev-2402180010-main 140 2/18/2024
1.7.84-prev-2402172351-main 148 2/17/2024
1.7.84-prev-2402172339-main 136 2/17/2024
1.7.84-prev-2402091223-main 191 2/9/2024
1.7.84-prev-240209113-main 147 2/9/2024
1.7.83 6,891 1/22/2024
1.7.83-prev-2401221429-main 143 1/22/2024
1.7.83-prev-2401121446-main 353 1/12/2024
1.7.83-prev-2401101129-main 164 1/10/2024
1.7.83-prev-2401092213-main 160 1/9/2024
1.7.82 2,666 1/7/2024
1.7.81 279 1/5/2024
1.7.81-prev-2401051055-main 150 1/5/2024
1.7.81-prev-2401051015-main 162 1/5/2024
1.7.81-prev-2401041559-main 161 1/4/2024
1.7.81-prev-2401041556-main 133 1/4/2024
1.7.81-prev-2401041328-main 172 1/4/2024
1.7.81-prev-2401040943-main 168 1/4/2024
1.7.81-prev-231229177-main 175 12/29/2023
1.7.81-prev-2312291458-main 169 12/29/2023
1.7.81-prev-2312291325-main 142 12/29/2023
1.7.81-prev-2312291316-main 162 12/29/2023
1.7.80 1,232 12/27/2023
1.7.80-prev-2312221335-main 132 12/22/2023
1.7.80-prev-2312221224-main 152 12/22/2023
1.7.80-prev-231222116-main 137 12/22/2023
1.7.80-prev-2312221146-main 150 12/22/2023
1.7.80-prev-231221168-main 124 12/21/2023
1.7.80-prev-2312191356-main 143 12/19/2023
1.7.80-prev-2312190726-main 157 12/19/2023
1.7.79 1,938 12/19/2023
1.7.79-prev-2312190722-main 133 12/19/2023
1.7.79-prev-2312190720-main 162 12/19/2023
1.7.79-prev-2312190625-main 141 12/19/2023
1.7.79-prev-231218186-main 169 12/18/2023
1.7.79-prev-2312180725-main 153 12/18/2023
1.7.79-prev-2312171656-main 142 12/17/2023
1.7.78 351 12/17/2023
1.7.78-prev-2312171653-main 135 12/17/2023
1.7.78-prev-231208136-main 175 12/8/2023
1.7.78-prev-2312081239-main 147 12/8/2023
1.7.78-prev-231125227-main 216 11/25/2023
1.7.78-prev-231125183-main 144 11/25/2023
1.7.78-prev-2311251743-main 142 11/25/2023
1.7.78-prev-2311231527-main 148 11/23/2023
1.7.78-prev-2311231154-main 128 11/23/2023
1.7.78-prev-2311231145-main 130 11/23/2023
1.7.77 2,542 11/23/2023
1.7.77-prev-2311201432-main 142 11/20/2023
1.7.77-prev-2311201358-main 100 11/20/2023
1.7.77-prev-2311190052-main 141 11/19/2023
1.7.77-prev-2311171311-main 142 11/17/2023
1.7.77-prev-2311161753-main 129 11/16/2023
1.7.77-prev-2311161216-main 119 11/16/2023
1.7.77-prev-2311121951-main 147 11/12/2023
1.7.77-prev-2311121934-main 122 11/12/2023
1.7.77-prev-2311121925-main 131 11/12/2023
1.7.77-prev-2311091211-main 115 11/9/2023
1.7.77-prev-2311091156-main 123 11/9/2023
1.7.77-prev-2311060859-main 151 11/6/2023
1.7.77-prev-2311060848-main 131 11/6/2023
1.7.77-prev-2311050019-main 142 11/5/2023
1.7.77-prev-2311041315-main 108 11/4/2023
1.7.76 4,729 11/4/2023
1.7.76-prev-231104016-main 134 11/4/2023
1.7.76-prev-2311032342-main 122 11/3/2023
1.7.76-prev-2311031311-main 133 11/3/2023
1.7.76-prev-2311031256-main 121 11/3/2023
1.7.76-prev-2311031251-main 120 11/3/2023
1.7.76-prev-2311031027-main 137 11/3/2023
1.7.76-prev-2311022342-main 152 11/2/2023
1.7.76-prev-2311021936-main 132 11/2/2023
1.7.76-prev-231102154-main 118 11/2/2023
1.7.76-prev-2311021449-main 131 11/2/2023
1.7.76-prev-2311012343-main 134 11/1/2023
1.7.76-prev-2311012314-main 145 11/1/2023
1.7.76-prev-2311012314-ext-... 106 11/1/2023
1.7.76-prev-231031150-ext-f... 120 10/31/2023
1.7.76-prev-2310301549-ext-... 147 10/30/2023
1.7.76-prev-2310280957-main 147 10/28/2023
1.7.76-prev-2310280956-main 135 10/28/2023
1.7.76-prev-2310271059-main 154 10/27/2023
1.7.76-prev-2310241548-main 158 10/24/2023
1.7.76-prev-231022130-main 159 10/22/2023
1.7.75 854 10/22/2023
1.7.75-prev-2310212254-main 146 10/21/2023
1.7.75-prev-2310211835-main 150 10/21/2023
1.7.75-prev-231021163-main 158 10/21/2023
1.7.75-prev-2310121838-main 268 10/12/2023
1.7.75-prev-2310121149-main 494 10/12/2023
1.7.75-prev-231010155-main 150 10/10/2023
1.7.74 1,798 10/10/2023
1.7.74-prev-2310101053-main 155 10/10/2023
1.7.74-prev-2310091858-main 148 10/9/2023
1.7.74-prev-2310090849-main 147 10/9/2023
1.7.73 289 10/9/2023
1.7.73-prev-2310081110-main 140 10/8/2023
1.7.73-prev-231008111-main 136 10/8/2023
1.7.73-prev-2310081017-main 153 10/8/2023
1.7.73-prev-231008100-main 159 10/8/2023
1.7.73-prev-2310080956-main 130 10/8/2023
1.7.73-prev-2310080917-main 157 10/8/2023
1.7.73-prev-2310071939-main 136 10/7/2023
1.7.72 532 10/7/2023
1.7.72-prev-2310071923-main 149 10/7/2023
1.7.72-prev-231006178-main 144 10/6/2023
1.7.72-prev-231006167-main 147 10/6/2023
1.7.72-prev-2310061631-main 128 10/6/2023
1.7.72-prev-2310061526-main 152 10/6/2023
1.7.72-prev-2310061333-main 176 10/6/2023
1.7.72-prev-2310051926-main 148 10/5/2023
1.7.72-prev-2310051653-main 142 10/5/2023
1.7.72-prev-231005106-main 146 10/5/2023
1.7.72-prev-231004133-main 140 10/4/2023
1.7.72-prev-2310041222-main 153 10/4/2023
1.7.72-prev-2310032119-main 152 10/3/2023
1.7.72-prev-2310032118-fgil... 134 10/3/2023
1.7.72-prev-2310031840-main 152 10/3/2023
1.7.72-prev-2310021853-main 154 10/2/2023
1.7.71 4,215 10/2/2023
1.7.71-prev-2310021827-main 139 10/2/2023
1.7.71-prev-2310021435-main 135 10/2/2023
1.7.71-prev-2310011635-main 222 10/1/2023
1.7.71-prev-2310011354-main 143 10/1/2023
1.7.71-prev-2310011345-main 147 10/1/2023
1.7.70 214 10/1/2023
1.7.70-prev-2310011336-main 144 10/1/2023
1.7.70-prev-2310011335-main 138 10/1/2023
1.7.70-prev-2310011324-main 142 10/1/2023
1.7.70-prev-2310011118-try-... 134 10/1/2023
1.7.70-prev-2310011118-main 141 10/1/2023
1.7.70-prev-2309302143-try-... 160 9/30/2023
1.7.70-prev-2309302141-try-... 131 9/30/2023
1.7.70-prev-2309302139-try-... 135 9/30/2023
1.7.70-prev-2309301923-try-... 139 9/30/2023
1.7.70-prev-2309301858-try-... 130 9/30/2023
1.7.70-prev-2309301051-try-... 141 9/30/2023
1.7.70-prev-2309281230-main 137 9/28/2023
1.7.70-prev-2309281230-fgil... 134 9/28/2023
1.7.70-prev-2309251813-try-... 162 9/25/2023
1.7.70-prev-230925161-try-m... 163 9/25/2023
1.7.70-prev-2309251213-try-... 150 9/25/2023
1.7.70-prev-2309241830-main 145 9/24/2023
1.7.70-prev-2309211820-main 145 9/21/2023
1.7.69 1,132 9/21/2023
1.7.69-prev-2309201754-main 121 9/20/2023
1.7.68 190 9/20/2023
1.7.68-prev-2309201120-main 163 9/20/2023
1.7.68-prev-2309182049-stre... 144 9/18/2023
1.7.68-prev-230918145-main 160 9/18/2023
1.7.68-prev-230918144-refac... 131 9/18/2023
1.7.68-prev-2309181059-main 127 9/18/2023
1.7.68-prev-2309180958-main 138 9/18/2023
1.7.68-prev-2309180956-open... 113 9/18/2023
1.7.68-prev-2309171718-open... 132 9/17/2023
1.7.68-prev-2309151317-main 152 9/15/2023
1.7.68-prev-2309151125-main 151 9/15/2023
1.7.68-prev-2309151111-main 140 9/15/2023
1.7.68-prev-230915091-main 138 9/15/2023
1.7.68-prev-2309150859-main 136 9/15/2023
1.7.68-prev-2309150848-for-... 116 9/15/2023
1.7.68-prev-2309150839-main 129 9/15/2023
1.7.68-prev-2309141720-main 158 9/14/2023
1.7.68-prev-2309141624-main 121 9/14/2023
1.7.68-prev-2309140951-main 146 9/14/2023
1.7.68-prev-2309132130-main 162 9/13/2023
1.7.68-prev-2309132129-main 143 9/13/2023
1.7.68-prev-2309131352-main 150 9/13/2023
1.7.67 1,748 9/11/2023
1.7.67-prev-2309111714-main 152 9/11/2023
1.7.67-prev-230908125-main 151 9/8/2023
1.7.67-prev-2309011638-main 167 9/1/2023
1.7.67-prev-2309011345-main 133 9/1/2023
1.7.67-prev-2309011325-main 145 9/1/2023
1.7.67-prev-2309011132-main 153 9/1/2023
1.7.67-prev-2309010947-main 162 9/1/2023
1.7.67-prev-230831169-main 135 8/31/2023
1.7.67-prev-230830177-main 177 8/30/2023
1.7.67-prev-230829129-main 157 8/29/2023
1.7.66 742 8/29/2023
1.7.66-prev-230829124-main 163 8/29/2023
1.7.66-prev-2308290944-main 178 8/29/2023
1.7.66-prev-230825191-main 358 8/25/2023
1.7.66-prev-2308251844-main 152 8/25/2023
1.7.66-prev-2308251828-main 159 8/25/2023
1.7.66-prev-2308251247-main 168 8/25/2023
1.7.65 318 8/25/2023
1.7.65-prev-2308251231-main 164 8/25/2023
1.7.65-prev-2308251228-main 152 8/25/2023
1.7.65-prev-2308251226-main 171 8/25/2023
1.7.65-prev-2308250947-main 161 8/25/2023
1.7.65-prev-2308241938-main 166 8/24/2023
1.7.65-prev-2308241926-main 156 8/24/2023
1.7.65-prev-2308241849-feat... 159 8/24/2023
1.7.65-prev-2308150852-main 182 8/15/2023
1.7.65-prev-2308150844-TEST... 145 8/15/2023
1.7.65-d2308141450 161 8/14/2023
1.7.65-d2308141444 176 8/14/2023
1.7.65-d2308141158 167 8/14/2023
1.7.65-d2308141150 166 8/14/2023
1.7.65-d2308141146 158 8/14/2023
1.7.65-d2308140839 164 8/14/2023
1.7.65-d2308122013 180 8/12/2023
1.7.65-d230802214 196 8/2/2023
1.7.65-d230802213 177 8/2/2023
1.7.65-d2308022035 192 8/2/2023
1.7.65-d2308022032 184 8/2/2023
1.7.65-d2307302336 179 7/30/2023
1.7.65-d2307302320 156 7/30/2023
1.7.64 1,134 7/30/2023
1.7.64-d2307302317 176 7/30/2023
1.7.64-d2307302247 194 7/30/2023
1.7.64-d2307291444 197 7/29/2023
1.7.64-d2307291441 191 7/29/2023
1.7.64-d2307291440 197 7/29/2023
1.7.64-d230728177 188 7/28/2023
1.7.64-d2307281652 181 7/28/2023
1.7.64-d2307221851 208 7/22/2023
1.7.64-d2307200948 190 7/20/2023
1.7.64-d2307200916 188 7/20/2023
1.7.64-d230720090 170 7/20/2023
1.7.64-d2307191235 197 7/19/2023
1.7.64-d230718144 212 7/18/2023
1.7.64-d230718143 191 7/18/2023
1.7.64-d230718137 187 7/18/2023
1.7.64-d2307181322 189 7/18/2023
1.7.64-d2307181313 185 7/18/2023
1.7.64-d230718130 184 7/18/2023
1.7.64-d2307181252 186 7/18/2023
1.7.64-d230718121 185 7/18/2023
1.7.64-d2307181158 192 7/18/2023
1.7.64-d2307171630 198 7/17/2023
1.7.64-d2307151446 211 7/15/2023
1.7.63 825 7/14/2023
1.7.63-d2307141132 189 7/14/2023
1.7.63-d2307121411 174 7/12/2023
1.7.62 323 7/12/2023
1.7.62-d2307120842 188 7/12/2023
1.7.62-d2307112153 192 7/11/2023
1.7.62-d2307101518 185 7/10/2023
1.7.62-d2307101423 191 7/10/2023
1.7.62-d230710142 188 7/10/2023
1.7.62-d2307101318 180 7/10/2023
1.7.61 574 7/7/2023
1.7.61-d230707173 192 7/7/2023
1.7.61-d230707170 182 7/7/2023
1.7.61-d230707119 190 7/7/2023
1.7.61-d2307071021 194 7/7/2023
1.7.61-d230706145 202 7/6/2023
1.7.61-d2307061444 186 7/6/2023
1.7.61-d2307061410 167 7/6/2023
1.7.61-d2307061334 186 7/6/2023
1.7.61-d2307061322 171 7/6/2023
1.7.61-d2307061311 181 7/6/2023
1.7.61-d2307061127 180 7/6/2023
1.7.61-d2307061047 184 7/6/2023
1.7.61-d2307060938 183 7/6/2023
1.7.60 440 7/3/2023
1.7.60-d230703103 174 7/3/2023
1.7.60-d2307030954 171 7/3/2023
1.7.59 671 6/27/2023
1.7.59-d2307030945 177 7/3/2023
1.7.59-d2307030929 174 7/3/2023
1.7.58 210 6/27/2023
1.7.57 582 6/26/2023
1.7.55 252 6/24/2023
1.7.54 374 6/21/2023
1.7.49 1,102 6/13/2023
1.7.48 592 6/12/2023
1.7.47 259 6/12/2023
1.7.46 1,035 6/6/2023
1.7.45 322 6/2/2023
1.7.44 252 6/2/2023
1.7.43 223 6/1/2023
1.7.42 380 5/31/2023
1.7.41 5,086 5/8/2023
1.7.40 2,178 5/2/2023
1.7.39 232 5/2/2023
1.7.38 352 5/1/2023
1.7.37 268 4/28/2023
1.7.36 243 4/28/2023
1.7.35 602 4/17/2023
1.7.34 467 4/10/2023
1.7.33 5,277 3/2/2023
1.7.32 1,860 2/15/2023
1.7.31 2,761 2/2/2023
1.7.30 1,027 1/4/2023
1.7.29 394 1/3/2023
1.7.28 371 1/3/2023
1.7.27 599 12/25/2022
1.7.26 394 12/23/2022
1.7.24 429 12/19/2022
1.7.23 375 12/19/2022
1.7.22 384 12/19/2022
1.7.21 811 12/13/2022
1.7.20 526 12/12/2022
1.7.11 673 11/30/2022
1.7.10 669 11/19/2022
1.6.76 2,612 11/14/2022
1.6.75 430 11/14/2022
1.6.74 459 11/13/2022
1.6.73 537 11/7/2022
1.6.72 429 11/7/2022
1.6.71 568 11/4/2022
1.6.70 441 11/4/2022
1.6.69 441 11/3/2022
1.6.68 426 11/3/2022
1.6.67 528 10/24/2022
1.6.66 732 10/12/2022
1.6.65 501 10/11/2022
1.6.64 768 9/26/2022
1.6.63 548 9/23/2022
1.6.62 586 9/19/2022
1.6.6 566 9/18/2022
1.6.5 813 9/17/2022
1.6.4 534 9/17/2022
1.6.3 547 9/17/2022
1.6.2 527 9/16/2022
1.6.1 552 9/16/2022
1.6.0 533 9/15/2022
1.5.9 605 9/14/2022
1.5.8 540 9/13/2022
1.5.6 537 9/11/2022
1.5.5 514 9/11/2022
1.5.4 558 9/9/2022
1.5.2 520 9/8/2022
1.5.1 552 9/8/2022
1.5.0 569 9/8/2022
1.4.3 633 8/30/2022
1.4.2 548 8/30/2022
1.4.1 524 8/29/2022
1.4.0 508 8/29/2022
1.3.91 522 8/29/2022
1.3.9 538 8/29/2022
1.3.8 523 8/28/2022
1.3.7 503 8/28/2022
1.3.6 543 8/26/2022
1.3.5 613 8/22/2022
1.3.4 503 8/22/2022
1.3.3 522 8/22/2022
1.3.2 526 8/22/2022
1.3.1 572 8/19/2022
1.3.0 733 8/1/2022
1.2.9 542 8/1/2022
1.2.8 594 7/21/2022
1.2.7 2,657 6/19/2022
1.2.6 553 6/18/2022
1.2.5 576 6/9/2022
1.2.3 658 5/30/2022
1.2.2 780 3/31/2022
1.2.1 565 3/24/2022
1.2.0 761 12/27/2021
1.1.0 1,395 12/5/2021
1.0.0-preview.211002142256 290 10/2/2021