MudBlazor.Extensions 8.14.3-prev-2511281031-copilot-restructure-demo-navigation

This is a prerelease version of MudBlazor.Extensions.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MudBlazor.Extensions --version 8.14.3-prev-2511281031-copilot-restructure-demo-navigation
                    
NuGet\Install-Package MudBlazor.Extensions -Version 8.14.3-prev-2511281031-copilot-restructure-demo-navigation
                    
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="8.14.3-prev-2511281031-copilot-restructure-demo-navigation" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MudBlazor.Extensions" Version="8.14.3-prev-2511281031-copilot-restructure-demo-navigation" />
                    
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 8.14.3-prev-2511281031-copilot-restructure-demo-navigation
                    
#r "nuget: MudBlazor.Extensions, 8.14.3-prev-2511281031-copilot-restructure-demo-navigation"
                    
#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@8.14.3-prev-2511281031-copilot-restructure-demo-navigation
                    
#: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=8.14.3-prev-2511281031-copilot-restructure-demo-navigation&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MudBlazor.Extensions&version=8.14.3-prev-2511281031-copilot-restructure-demo-navigation&prerelease
                    
Install as a Cake Tool

GitHub Repo stars GitHub GitHub last commit Nuget version Nuget downloads Website Publish Nuget Preview Package and deploy Test App Publish Nuget Release Package Deploy TryMudEx

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.

Demos

Azure Cloudflare

Try Online

TryMudEx

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.Use(MudExWebApp.MudExMiddleware);

(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

MudExUploadEdit is a versatile file upload component with a wide range of features such as MIME and extension whitelisting/blacklisting, folder upload, drag and drop, copy and paste, renaming, and integration with Dropbox, Google Drive, and OneDrive.

SAMPLE

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:

  • 8.14.1 > New Component MudExRangeSlider
  • 8.14.1 > New Component MudExEditConfiguration
  • 8.14.0 > Update to MudBlazor 8.14.0
  • 8.14.0 > Add support for .net 10
  • 8.14.0 > Add simple demo for MudExPicker combined with MudExTreeView here
  • 8.13.0 > Move MudExComponentPropertyGrid to MudEx, to have the easy possibility to add and component grid
  • 8.13.0 > Drag and Drop in MudExGrid here
  • 8.13.0 > New GroupMode DockPanel for MudExObjectEdit sample here
  • 8.13.0 > New Component MudExDockLayout sample here
  • 8.13.0 > New Component MudExGravatarCard sample here
  • 8.11.0 > MudExObject edit now supports grouping by tabs and accordions. See sample here
  • 8.11.0 > Small bug fixes
  • 8.9.0 > Support touch events for dialog dragging
  • 8.9.0 > Fixes bug with icon picker if no value is specified
  • 8.9.0 > Fixes bug with custom size in non modal dialogs
  • 8.9.0 > Update MudBlazor to 8.9.0 and other Packages to latest version
  • 8.8.0 > Update MudBlazor to 8.8.0 and other Packages to latest version
  • 8.8.0 > Fix Bug in MudExOneDriveFilePicker where the file couldnt be loaded when AutoLoadDataBytes is true
  • 8.7.0 > Update MudBlazor to 8.7.0
  • 8.7.0 > Fix bug in SnapDrag Mode for dialog

Full change log can be found here

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 net8.0 is compatible.  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 is compatible.  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 is compatible.  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

VaultForce.SharedClient

shared resources

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

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.14.3-prev-2511281137-copi... 57 11/28/2025
8.14.3-prev-2511281031-copi... 61 11/28/2025
8.14.3-prev-2511261642-main 147 11/26/2025
8.14.3-prev-2511241848-main 180 11/24/2025
8.14.3-prev-2511232224-main 163 11/23/2025
8.14.2 464 11/23/2025
8.14.2-prev-2511231813-main 155 11/23/2025
8.14.2-prev-2511221756-main 164 11/22/2025
8.14.1 228 11/22/2025
8.14.1-prev-2511221748-main 165 11/22/2025
8.14.1-prev-2511221748-feat... 162 11/22/2025
8.14.1-prev-2511221739-feat... 173 11/22/2025
8.14.1-prev-2511212347-feat... 244 11/21/2025
8.14.1-prev-2511211834-feat... 263 11/21/2025
8.14.1-prev-251121138-feat-... 301 11/21/2025
8.14.1-prev-251121099-feat-... 317 11/21/2025
8.14.1-prev-2511202132-feat... 379 11/20/2025
8.14.1-prev-2511180928-feat... 395 11/18/2025
8.14.1-prev-251116225-feat-... 264 11/16/2025
8.14.1-prev-2511142037-feat... 213 11/14/2025
8.14.1-prev-2511142027-feat... 199 11/14/2025
8.14.1-prev-251114159-feat-... 208 11/14/2025
8.14.1-prev-251114144-feat-... 212 11/14/2025
8.14.1-prev-251113221-feat-... 260 11/13/2025
8.14.1-prev-2511132048-feat... 256 11/13/2025
8.14.1-prev-2511131959-feat... 259 11/13/2025
8.14.1-prev-2511131922-feat... 254 11/13/2025
8.14.1-prev-251113154-feat-... 255 11/13/2025
8.14.1-prev-2511131419-feat... 253 11/13/2025
8.14.1-prev-251113107-feat-... 258 11/13/2025
8.14.1-prev-251112208-feat-... 257 11/12/2025
8.14.1-prev-2511120831-feat... 262 11/12/2025
8.14.1-prev-2511111626-feat... 265 11/11/2025
8.14.1-prev-2511111618-feat... 262 11/11/2025
8.14.0 3,672 11/9/2025
8.14.0-prev-2511091335-main 181 11/9/2025
8.14.0-prev-2511091324-main 184 11/9/2025
8.13.2-prev-2511091242-main 198 11/9/2025
8.13.2-prev-2511071113-main 150 11/7/2025
8.13.2-prev-2511071112-feat... 132 11/7/2025
8.13.2-prev-2511061719-main 179 11/6/2025
8.13.2-prev-2511061718-copi... 171 11/6/2025
8.13.2-prev-2511061620-main 174 11/6/2025
8.13.2-prev-2511061520-main 177 11/6/2025
8.13.2-prev-2511031912-main 187 11/3/2025
8.13.2-prev-251028101-main 237 10/28/2025
8.13.2-prev-2510242328-main 104 10/24/2025
8.13.2-prev-2510232059-main 167 10/23/2025
8.13.1 2,830 10/21/2025
8.13.1-prev-2510210835-main 162 10/21/2025
8.13.1-prev-251016192-main 186 10/16/2025
8.13.1-prev-2510161737-main 158 10/16/2025
8.13.1-prev-251016089-main 161 10/16/2025
8.13.1-prev-2510160833-main 160 10/16/2025
8.13.1-prev-2510160822-main 172 10/16/2025
8.13.1-prev-2510160636-main 166 10/16/2025
8.13.1-prev-2510151431-main 160 10/15/2025
8.13.1-prev-2510150727-main 163 10/15/2025
8.13.1-prev-2510142030-main 163 10/14/2025
8.13.0 2,957 10/14/2025
8.13.0-prev-2510142018-main 157 10/14/2025
8.13.0-prev-2510142014-main 162 10/14/2025
8.13.0-prev-2510142013-dock 161 10/14/2025
8.13.0-prev-2510122148-dock 175 10/12/2025
8.13.0-prev-2510070626-dock 168 10/7/2025
8.13.0-prev-2510051753-dock 157 10/5/2025
8.13.0-prev-2509231017-dock 179 9/23/2025
8.13.0-prev-2509221754-dock 183 9/22/2025
8.13.0-prev-2509211852-main 214 9/21/2025
8.12.0 8,848 9/9/2025
8.12.0-prev-2509191258-main 248 9/19/2025
8.12.0-prev-2509171448-main 289 9/17/2025
8.12.0-prev-2509171435-main 297 9/17/2025
8.12.0-prev-250909099-main 163 9/9/2025
8.11.1-prev-2509011814-main 202 9/1/2025
8.11.1-prev-250901100-main 179 9/1/2025
8.11.1-prev-2508301232-main 217 8/30/2025
8.11.0 2,212 8/30/2025
8.11.0-prev-250830124-main 207 8/30/2025
8.11.0-prev-2508301226-main 202 8/30/2025
8.11.0-prev-2508301216-main 200 8/30/2025
8.11.0-prev-2508221733-main 142 8/22/2025
8.9.1-prev-2508221732-main 118 8/22/2025
8.9.1-prev-2507151845-main 718 7/15/2025
8.9.1-prev-2507141426-copil... 168 7/14/2025
8.9.1-prev-2507101858-main 185 7/10/2025
8.9.0 8,628 7/10/2025
8.9.0-prev-2507101716-main 167 7/10/2025
8.9.0-prev-2507101713-main 168 7/10/2025
8.9.0-prev-2507101529-main 188 7/10/2025
8.9.0-prev-2507101517-main 168 7/10/2025
8.8.1-prev-250627149-main 151 6/27/2025
8.8.0 2,974 6/27/2025
8.8.0-prev-2506271245-main 133 6/27/2025
8.7.0 3,714 6/10/2025
8.7.0-prev-2506060936-main 157 6/6/2025
8.6.2-prev-2506060717-main 174 6/6/2025
8.6.2-prev-2505191247-main 201 5/19/2025
8.6.2-prev-2505191235-main 182 5/19/2025
8.6.2-prev-2505191234-main 202 5/19/2025
8.6.2-prev-2505191046-main 189 5/19/2025
8.6.2-prev-250518183-main 199 5/18/2025
8.6.2-prev-2505161151-main 270 5/16/2025
8.6.2-prev-2505160912-main 243 5/16/2025
8.6.2-prev-2505151223-main 279 5/15/2025
8.6.2-prev-2505150941-main 292 5/15/2025
8.6.1 3,863 5/15/2025
8.6.1-prev-2505150926-main 285 5/15/2025
8.6.1-prev-2505141854-main 295 5/14/2025
8.6.1-prev-2505122135-main 290 5/12/2025
8.6.1-prev-2505121747-main 268 5/12/2025
8.6.1-prev-2505121729-main 263 5/12/2025
8.6.1-prev-2505121728-main 283 5/12/2025
8.6.1-prev-2505121631-main 294 5/12/2025
8.6.1-prev-250511169-main 202 5/11/2025
8.6.1-prev-2505051052-main 222 5/5/2025
8.6.0 3,223 5/5/2025
8.6.0-prev-2505051020-main 205 5/5/2025
8.6.0-prev-2504301038-main 223 4/30/2025
8.6.0-prev-2504301026-main 206 4/30/2025
8.5.2 27,275 4/21/2025
8.5.2-prev-250422226-main 224 4/22/2025
8.5.2-prev-2504171323-main 247 4/17/2025
8.5.2-prev-2504161749-main 263 4/16/2025
8.5.2-prev-250416134-main 258 4/16/2025
8.5.2-prev-2504161310-main 254 4/16/2025
8.5.2-prev-250411104-main 210 4/11/2025
8.5.2-prev-250408191-main 195 4/8/2025
8.5.2-prev-2504071927-main 219 4/7/2025
8.5.1-prev-2504071347-main 238 4/7/2025
8.5.1-prev-2504071141-main 201 4/7/2025
8.5.0 2,093 4/7/2025
8.5.0-prev-2504071924-main 225 4/7/2025
8.3.2-prev-250403198-main 266 4/3/2025
8.3.2-prev-2503241458-main 1,073 3/24/2025
8.3.1 4,618 3/24/2025
8.3.1-prev-2503241450-main 462 3/24/2025
8.3.0 7,682 3/24/2025
8.3.0-prev-2503241447-main 439 3/24/2025
8.3.0-prev-2503181038-main 238 3/18/2025
8.3.0-prev-2503132013-main 219 3/13/2025
8.3.0-prev-2503101617-main 214 3/10/2025
8.3.0-prev-2503100817-main 225 3/10/2025
8.3.0-prev-2503061553-main 262 3/6/2025
8.2.2-prev-2502201313-main 427 2/20/2025
8.2.1 7,230 2/20/2025
8.2.1-prev-2502201311-main 165 2/20/2025
8.2.1-prev-2502141923-main 216 2/14/2025
8.2.1-prev-2502141921-main 157 2/14/2025
8.2.1-prev-2502141918-main 159 2/14/2025
8.2.0 3,677 2/14/2025
8.2.0-prev-2502141916-main 130 2/14/2025
8.0.2-prev-2501302211-main 285 1/30/2025
8.0.2-prev-2501301013-main 169 1/30/2025
8.0.2-prev-2501291421-42-no... 143 1/29/2025
8.0.2-prev-250128211-main 155 1/28/2025
8.0.2-prev-2501281520-main 161 1/28/2025
8.0.2-prev-2501280925-main 159 1/28/2025
8.0.2-prev-2501271442-main 156 1/27/2025
8.0.2-prev-2501261259-main 188 1/26/2025
8.0.2-prev-2501261222-main 149 1/26/2025
8.0.2-prev-2501261152-main 147 1/26/2025
8.0.1 2,489 1/26/2025
8.0.0 14,679 1/19/2025
8.0.0-prev-2501261143-main 158 1/26/2025
8.0.0-prev-2501191926-main 136 1/19/2025
8.0.0-prev-2501191920-mudbl... 160 1/19/2025
8.0.0-prev-2501131732-mudbl... 204 1/13/2025
8.0.0-prev-2501131730-mudbl... 104 1/13/2025
8.0.0-prev-250112136-mudbla... 91 1/12/2025
8.0.0-prev-2501121047-mudbl... 106 1/12/2025
8.0.0-prev-250112102-mudbla... 102 1/12/2025
8.0.0-prev-2501021023-mudbl... 138 1/2/2025
8.0.0-prev-2501011221-mudbl... 135 1/1/2025
8.0.0-prev-2501011220-mudbl... 119 1/1/2025
8.0.0-prev-2501011218-mudbl... 119 1/1/2025
8.0.0-prev-2412171357-mudbl... 130 12/17/2024
8.0.0-prev-2412151332-mudbl... 133 12/15/2024
8.0.0-prev-2412151237-mudbl... 91 12/15/2024
8.0.0-prev-2412121028-mudbl... 120 12/12/2024
8.0.0-prev-241208136-mudbla... 95 12/8/2024
8.0.0-prev-2411232146-mudbl... 158 11/23/2024
8.0.0-prev-2411231411-mudbl... 148 11/23/2024
2.1.1-prev-241217157-main 151 12/17/2024
2.1.0 8,701 12/17/2024
2.1.0-prev-241217140-main 171 12/17/2024
2.1.0-prev-2412171354-main 119 12/17/2024
2.1.0-prev-2412171226-main 146 12/17/2024
2.1.0-prev-2412151328-main 131 12/15/2024
2.1.0-prev-2412151250-main 176 12/15/2024
2.0.9-prev-2412151234-main 167 12/15/2024
2.0.9-prev-2412151211-main 172 12/15/2024
2.0.8 7,724 11/24/2024
2.0.8-prev-2412151156-main 138 12/15/2024
2.0.8-prev-2411231921-main 132 11/23/2024
2.0.8-prev-2411231414-main 123 11/23/2024
2.0.8-prev-2411221214-main 151 11/22/2024
2.0.8-prev-2411221019-main 132 11/22/2024
2.0.7.1 6,940 11/18/2024
2.0.7.1-prev-2411220950-main 154 11/22/2024
2.0.7.1-prev-2411181238-main 152 11/18/2024
2.0.7 507 11/17/2024
2.0.7-prev-2411171939-main 157 11/17/2024
2.0.7-prev-2411152211-main 142 11/15/2024
2.0.7-prev-2411121224-main 157 11/12/2024
2.0.7-prev-2411111731-main 153 11/11/2024
2.0.7-prev-2411110931-main 170 11/11/2024
2.0.7-prev-241111092-main 155 11/11/2024
2.0.7-prev-2411101417-main 147 11/10/2024
2.0.7-prev-2411051728-main 185 11/5/2024
2.0.7-prev-2411032052-main 169 11/3/2024
2.0.7-prev-241031237-main 173 10/31/2024
2.0.7-prev-2410312310-main 134 10/31/2024
2.0.7-prev-2410281059-main 134 10/28/2024
2.0.7-prev-241027214-main 138 10/27/2024
2.0.7-prev-2410261937-main 147 10/26/2024
2.0.7-prev-2410252028-main 153 10/25/2024
2.0.7-prev-2410250745-main 175 10/25/2024
2.0.7-prev-2410211158-main 169 10/21/2024
2.0.7-prev-2410122330-main 168 10/12/2024
2.0.6 9,344 10/12/2024
2.0.6-prev-2410122326-main 128 10/12/2024
2.0.6-prev-2410122324-main 129 10/12/2024
2.0.6-prev-241012219-main 166 10/12/2024
2.0.6-prev-2410121210-main 170 10/12/2024
2.0.6-prev-2410121158-main 166 10/12/2024
2.0.6-prev-2410112244-main 158 10/11/2024
2.0.6-prev-2410112222-main 182 10/11/2024
2.0.6-prev-2410112142-main 164 10/11/2024
2.0.6-prev-2410112114-main 155 10/11/2024
2.0.6-prev-2410112052-main 164 10/11/2024
2.0.6-prev-2410112021-main 163 10/11/2024
2.0.6-prev-2409240850-main 201 9/24/2024
2.0.6-prev-2409231432-main 168 9/23/2024
2.0.6-prev-2409231336-main 140 9/23/2024
2.0.6-prev-2409231328-main 168 9/23/2024
2.0.6-prev-2409231228-main 166 9/23/2024
2.0.6-prev-2409101419-main 250 9/10/2024
2.0.6-prev-2409101324-main 173 9/10/2024
2.0.6-prev-2409101031-main 187 9/10/2024
2.0.5 3,983 9/10/2024
2.0.5-prev-2409101025-main 171 9/10/2024
2.0.4 660 9/2/2024
2.0.4-prev-2409021559-main 136 9/2/2024
2.0.4-prev-2409021543-main 167 9/2/2024
2.0.4-prev-2408301757-main 181 8/30/2024
2.0.4-prev-240806216-main 211 8/6/2024
2.0.3 6,149 8/6/2024
2.0.3-prev-2408060651-main 154 8/6/2024
2.0.3-prev-2407162111-main 201 7/16/2024
2.0.2 7,669 7/16/2024
2.0.2-prev-240716212-main 167 7/16/2024
2.0.1-prev-2407161734-main 168 7/16/2024
2.0.0 1,781 7/9/2024
2.0.0-prev-2407080832-main 176 7/8/2024
2.0.0-prev-2407080828-main 158 7/8/2024
2.0.0-prev-2407080824-for-m... 121 7/8/2024
2.0.0-prev-2407080757-for-m... 113 7/8/2024
2.0.0-prev-2407041714-for-m... 146 7/4/2024
2.0.0-prev-2407041643-for-m... 93 7/4/2024
2.0.0-prev-2407031525-for-m... 118 7/3/2024
2.0.0-prev-2407031417-for-m... 123 7/3/2024
2.0.0-prev-2407011629-for-m... 156 7/1/2024
2.0.0-prev-2406301522-for-m... 171 6/30/2024
1.7.89 3,037 6/28/2024
1.7.89-prev-2406281250-main 171 6/28/2024
1.7.88-prev-2406281119-main 181 6/28/2024
1.7.88-prev-2406271513-main 183 6/27/2024
1.7.88-prev-2406241329-main 144 6/24/2024
1.7.88-prev-2406201445-main 173 6/20/2024
1.7.88-prev-2406201321-main 130 6/20/2024
1.7.88-prev-2406200938-main 168 6/20/2024
1.7.88-prev-240619108-main 172 6/19/2024
1.7.88-prev-2406191018-main 183 6/19/2024
1.7.88-prev-2406171154-main 189 6/17/2024
1.7.88-prev-2406051024-main 214 6/5/2024
1.7.88-prev-2406050857-main 189 6/5/2024
1.7.88-prev-2406042343-main 167 6/4/2024
1.7.88-prev-2406042336-main 180 6/4/2024
1.7.88-prev-2406042253-main 178 6/4/2024
1.7.88-prev-2406041330-main 176 6/4/2024
1.7.88-prev-2406041236-main 182 6/4/2024
1.7.88-prev-240526158-main 199 5/26/2024
1.7.88-prev-2405261413-main 198 5/26/2024
1.7.88-prev-2405141254-main 196 5/14/2024
1.7.88-prev-2405061530-main 234 5/6/2024
1.7.88-prev-2405020855-main 201 5/2/2024
1.7.88-prev-240429142-main 178 4/29/2024
1.7.88-prev-240425199-main 161 4/25/2024
1.7.88-prev-2404231313-main 161 4/23/2024
1.7.87 32,137 4/23/2024
1.7.87-prev-240423135-main 183 4/23/2024
1.7.87-prev-2404231253-main 185 4/23/2024
1.7.87-prev-2404011353-main 257 4/1/2024
1.7.87-prev-2404011345-main 169 4/1/2024
1.7.87-prev-2404011246-main 181 4/1/2024
1.7.87-prev-2403220933-main 179 3/22/2024
1.7.86 7,710 3/22/2024
1.7.86-prev-2403220928-main 173 3/22/2024
1.7.86-prev-2403171653-main 155 3/17/2024
1.7.86-prev-2403132130-main 168 3/13/2024
1.7.86-prev-2403130931-main 189 3/13/2024
1.7.86-prev-2403081028-main 199 3/8/2024
1.7.85 7,623 3/8/2024
1.7.85-prev-2403081025-main 173 3/8/2024
1.7.85-prev-2403081022-main 180 3/8/2024
1.7.85-prev-2403041240-main 247 3/4/2024
1.7.85-prev-240222126-main 233 2/22/2024
1.7.85-prev-2402221216-main 190 2/22/2024
1.7.85-prev-2402221115-main 177 2/22/2024
1.7.85-prev-2402190751-main 217 2/19/2024
1.7.85-prev-2402190729-main 160 2/19/2024
1.7.85-prev-2402190713-main 175 2/19/2024
1.7.84 1,921 2/18/2024
1.7.84-prev-2402180010-main 186 2/18/2024
1.7.84-prev-2402172351-main 191 2/17/2024
1.7.84-prev-2402172339-main 182 2/17/2024
1.7.84-prev-2402091223-main 221 2/9/2024
1.7.84-prev-240209113-main 194 2/9/2024
1.7.83 6,967 1/22/2024
1.7.83-prev-2401221429-main 189 1/22/2024
1.7.83-prev-2401121446-main 380 1/12/2024
1.7.83-prev-2401101129-main 210 1/10/2024
1.7.83-prev-2401092213-main 203 1/9/2024
1.7.82 3,138 1/7/2024
1.7.81 344 1/5/2024
1.7.81-prev-2401051055-main 204 1/5/2024
1.7.81-prev-2401051015-main 212 1/5/2024
1.7.81-prev-2401041559-main 191 1/4/2024
1.7.81-prev-2401041556-main 168 1/4/2024
1.7.81-prev-2401041328-main 222 1/4/2024
1.7.81-prev-2401040943-main 216 1/4/2024
1.7.81-prev-231229177-main 218 12/29/2023
1.7.81-prev-2312291458-main 212 12/29/2023
1.7.81-prev-2312291325-main 190 12/29/2023
1.7.81-prev-2312291316-main 209 12/29/2023
1.7.80 1,296 12/27/2023
1.7.80-prev-2312221335-main 186 12/22/2023
1.7.80-prev-2312221224-main 193 12/22/2023
1.7.80-prev-231222116-main 161 12/22/2023
1.7.80-prev-2312221146-main 188 12/22/2023
1.7.80-prev-231221168-main 177 12/21/2023
1.7.80-prev-2312191356-main 172 12/19/2023
1.7.80-prev-2312190726-main 209 12/19/2023
1.7.79 2,090 12/19/2023
1.7.79-prev-2312190722-main 174 12/19/2023
1.7.79-prev-2312190720-main 202 12/19/2023
1.7.79-prev-2312190625-main 178 12/19/2023
1.7.79-prev-231218186-main 199 12/18/2023
1.7.79-prev-2312180725-main 203 12/18/2023
1.7.79-prev-2312171656-main 170 12/17/2023
1.7.78 428 12/17/2023
1.7.78-prev-2312171653-main 163 12/17/2023
1.7.78-prev-231208136-main 225 12/8/2023
1.7.78-prev-2312081239-main 181 12/8/2023
1.7.78-prev-231125227-main 268 11/25/2023
1.7.78-prev-231125183-main 194 11/25/2023
1.7.78-prev-2311251743-main 182 11/25/2023
1.7.78-prev-2311231527-main 176 11/23/2023
1.7.78-prev-2311231154-main 187 11/23/2023
1.7.78-prev-2311231145-main 160 11/23/2023
1.7.77 2,630 11/23/2023
1.7.77-prev-2311201432-main 184 11/20/2023
1.7.77-prev-2311201358-main 140 11/20/2023
1.7.77-prev-2311190052-main 188 11/19/2023
1.7.77-prev-2311171311-main 172 11/17/2023
1.7.77-prev-2311161753-main 155 11/16/2023
1.7.77-prev-2311161216-main 147 11/16/2023
1.7.77-prev-2311121951-main 172 11/12/2023
1.7.77-prev-2311121934-main 167 11/12/2023
1.7.77-prev-2311121925-main 186 11/12/2023
1.7.77-prev-2311091211-main 150 11/9/2023
1.7.77-prev-2311091156-main 178 11/9/2023
1.7.77-prev-2311060859-main 197 11/6/2023
1.7.77-prev-2311060848-main 176 11/6/2023
1.7.77-prev-2311050019-main 184 11/5/2023
1.7.77-prev-2311041315-main 151 11/4/2023
1.7.76 5,807 11/4/2023
1.7.76-prev-231104016-main 188 11/4/2023
1.7.76-prev-2311032342-main 152 11/3/2023
1.7.76-prev-2311031311-main 176 11/3/2023
1.7.76-prev-2311031256-main 148 11/3/2023
1.7.76-prev-2311031251-main 147 11/3/2023
1.7.76-prev-2311031027-main 186 11/3/2023
1.7.76-prev-2311022342-main 177 11/2/2023
1.7.76-prev-2311021936-main 158 11/2/2023
1.7.76-prev-231102154-main 162 11/2/2023
1.7.76-prev-2311021449-main 176 11/2/2023
1.7.76-prev-2311012343-main 176 11/1/2023
1.7.76-prev-2311012314-main 192 11/1/2023
1.7.76-prev-2311012314-ext-... 141 11/1/2023
1.7.76-prev-231031150-ext-f... 168 10/31/2023
1.7.76-prev-2310301549-ext-... 173 10/30/2023
1.7.76-prev-2310280957-main 187 10/28/2023
1.7.76-prev-2310280956-main 179 10/28/2023
1.7.76-prev-2310271059-main 179 10/27/2023
1.7.76-prev-2310241548-main 191 10/24/2023
1.7.76-prev-231022130-main 208 10/22/2023
1.7.75 901 10/22/2023
1.7.75-prev-2310212254-main 186 10/21/2023
1.7.75-prev-2310211835-main 199 10/21/2023
1.7.75-prev-231021163-main 207 10/21/2023
1.7.75-prev-2310121838-main 296 10/12/2023
1.7.75-prev-2310121149-main 523 10/12/2023
1.7.75-prev-231010155-main 190 10/10/2023
1.7.74 1,843 10/10/2023
1.7.74-prev-2310101053-main 199 10/10/2023
1.7.74-prev-2310091858-main 199 10/9/2023
1.7.74-prev-2310090849-main 196 10/9/2023
1.7.73 337 10/9/2023
1.7.73-prev-2310081110-main 166 10/8/2023
1.7.73-prev-231008111-main 180 10/8/2023
1.7.73-prev-2310081017-main 179 10/8/2023
1.7.73-prev-231008100-main 210 10/8/2023
1.7.73-prev-2310080956-main 156 10/8/2023
1.7.73-prev-2310080917-main 195 10/8/2023
1.7.73-prev-2310071939-main 164 10/7/2023
1.7.72 589 10/7/2023
1.7.72-prev-2310071923-main 191 10/7/2023
1.7.72-prev-231006178-main 190 10/6/2023
1.7.72-prev-231006167-main 199 10/6/2023
1.7.72-prev-2310061631-main 174 10/6/2023
1.7.72-prev-2310061526-main 197 10/6/2023
1.7.72-prev-2310061333-main 235 10/6/2023
1.7.72-prev-2310051926-main 198 10/5/2023
1.7.72-prev-2310051653-main 171 10/5/2023
1.7.72-prev-231005106-main 191 10/5/2023
1.7.72-prev-231004133-main 165 10/4/2023
1.7.72-prev-2310041222-main 199 10/4/2023
1.7.72-prev-2310032119-main 182 10/3/2023
1.7.72-prev-2310032118-fgil... 161 10/3/2023
1.7.72-prev-2310031840-main 183 10/3/2023
1.7.72-prev-2310021853-main 195 10/2/2023
1.7.71 4,513 10/2/2023
1.7.71-prev-2310021827-main 183 10/2/2023
1.7.71-prev-2310021435-main 166 10/2/2023
1.7.71-prev-2310011635-main 266 10/1/2023
1.7.71-prev-2310011354-main 170 10/1/2023
1.7.71-prev-2310011345-main 176 10/1/2023
1.7.70 242 10/1/2023
1.7.70-prev-2310011336-main 181 10/1/2023
1.7.70-prev-2310011335-main 178 10/1/2023
1.7.70-prev-2310011324-main 170 10/1/2023
1.7.70-prev-2310011118-try-... 159 10/1/2023
1.7.70-prev-2310011118-main 186 10/1/2023
1.7.70-prev-2309302143-try-... 207 9/30/2023
1.7.70-prev-2309302141-try-... 177 9/30/2023
1.7.70-prev-2309302139-try-... 176 9/30/2023
1.7.70-prev-2309301923-try-... 165 9/30/2023
1.7.70-prev-2309301858-try-... 166 9/30/2023
1.7.70-prev-2309301051-try-... 184 9/30/2023
1.7.70-prev-2309281230-main 171 9/28/2023
1.7.70-prev-2309281230-fgil... 167 9/28/2023
1.7.70-prev-2309251813-try-... 204 9/25/2023
1.7.70-prev-230925161-try-m... 211 9/25/2023
1.7.70-prev-2309251213-try-... 193 9/25/2023
1.7.70-prev-2309241830-main 187 9/24/2023
1.7.70-prev-2309211820-main 186 9/21/2023
1.7.69 1,254 9/21/2023
1.7.69-prev-2309201754-main 177 9/20/2023
1.7.68 230 9/20/2023
1.7.68-prev-2309201120-main 207 9/20/2023
1.7.68-prev-2309182049-stre... 169 9/18/2023
1.7.68-prev-230918145-main 212 9/18/2023
1.7.68-prev-230918144-refac... 161 9/18/2023
1.7.68-prev-2309181059-main 186 9/18/2023
1.7.68-prev-2309180958-main 165 9/18/2023
1.7.68-prev-2309180956-open... 165 9/18/2023
1.7.68-prev-2309171718-open... 169 9/17/2023
1.7.68-prev-2309151317-main 197 9/15/2023
1.7.68-prev-2309151125-main 197 9/15/2023
1.7.68-prev-2309151111-main 167 9/15/2023
1.7.68-prev-230915091-main 189 9/15/2023
1.7.68-prev-2309150859-main 179 9/15/2023
1.7.68-prev-2309150848-for-... 144 9/15/2023
1.7.68-prev-2309150839-main 181 9/15/2023
1.7.68-prev-2309141720-main 186 9/14/2023
1.7.68-prev-2309141624-main 149 9/14/2023
1.7.68-prev-2309140951-main 192 9/14/2023
1.7.68-prev-2309132130-main 207 9/13/2023
1.7.68-prev-2309132129-main 169 9/13/2023
1.7.68-prev-2309131352-main 190 9/13/2023
1.7.67 1,853 9/11/2023
1.7.67-prev-2309111714-main 178 9/11/2023
1.7.67-prev-230908125-main 190 9/8/2023
1.7.67-prev-2309011638-main 202 9/1/2023
1.7.67-prev-2309011345-main 164 9/1/2023
1.7.67-prev-2309011325-main 193 9/1/2023
1.7.67-prev-2309011132-main 185 9/1/2023
1.7.67-prev-2309010947-main 216 9/1/2023
1.7.67-prev-230831169-main 166 8/31/2023
1.7.67-prev-230830177-main 223 8/30/2023
1.7.67-prev-230829129-main 187 8/29/2023
1.7.66 791 8/29/2023
1.7.66-prev-230829124-main 205 8/29/2023
1.7.66-prev-2308290944-main 229 8/29/2023
1.7.66-prev-230825191-main 430 8/25/2023
1.7.66-prev-2308251844-main 182 8/25/2023
1.7.66-prev-2308251828-main 191 8/25/2023
1.7.66-prev-2308251247-main 217 8/25/2023
1.7.65 367 8/25/2023
1.7.65-prev-2308251231-main 218 8/25/2023
1.7.65-prev-2308251228-main 208 8/25/2023
1.7.65-prev-2308251226-main 203 8/25/2023
1.7.65-prev-2308250947-main 213 8/25/2023
1.7.65-prev-2308241938-main 220 8/24/2023
1.7.65-prev-2308241926-main 208 8/24/2023
1.7.65-prev-2308241849-feat... 205 8/24/2023
1.7.65-prev-2308150852-main 236 8/15/2023
1.7.65-prev-2308150844-TEST... 193 8/15/2023
1.7.65-d2308141450 195 8/14/2023
1.7.65-d2308141444 228 8/14/2023
1.7.65-d2308141158 204 8/14/2023
1.7.65-d2308141150 220 8/14/2023
1.7.65-d2308141146 217 8/14/2023
1.7.65-d2308140839 198 8/14/2023
1.7.65-d2308122013 212 8/12/2023
1.7.65-d230802214 249 8/2/2023
1.7.65-d230802213 212 8/2/2023
1.7.65-d2308022035 237 8/2/2023
1.7.65-d2308022032 237 8/2/2023
1.7.65-d2307302336 228 7/30/2023
1.7.65-d2307302320 190 7/30/2023
1.7.64 1,216 7/30/2023
1.7.64-d2307302317 230 7/30/2023
1.7.64-d2307302247 242 7/30/2023
1.7.64-d2307291444 258 7/29/2023
1.7.64-d2307291441 238 7/29/2023
1.7.64-d2307291440 245 7/29/2023
1.7.64-d230728177 221 7/28/2023
1.7.64-d2307281652 233 7/28/2023
1.7.64-d2307221851 260 7/22/2023
1.7.64-d2307200948 238 7/20/2023
1.7.64-d2307200916 236 7/20/2023
1.7.64-d230720090 224 7/20/2023
1.7.64-d2307191235 233 7/19/2023
1.7.64-d230718144 261 7/18/2023
1.7.64-d230718143 237 7/18/2023
1.7.64-d230718137 236 7/18/2023
1.7.64-d2307181322 247 7/18/2023
1.7.64-d2307181313 232 7/18/2023
1.7.64-d230718130 240 7/18/2023
1.7.64-d2307181252 232 7/18/2023
1.7.64-d230718121 234 7/18/2023
1.7.64-d2307181158 247 7/18/2023
1.7.64-d2307171630 230 7/17/2023
1.7.64-d2307151446 260 7/15/2023
1.7.63 936 7/14/2023
1.7.63-d2307141132 239 7/14/2023
1.7.63-d2307121411 225 7/12/2023
1.7.62 379 7/12/2023
1.7.62-d2307120842 223 7/12/2023
1.7.62-d2307112153 245 7/11/2023
1.7.62-d2307101518 238 7/10/2023
1.7.62-d2307101423 240 7/10/2023
1.7.62-d230710142 243 7/10/2023
1.7.62-d2307101318 213 7/10/2023
1.7.61 668 7/7/2023
1.7.61-d230707173 243 7/7/2023
1.7.61-d230707170 241 7/7/2023
1.7.61-d230707119 229 7/7/2023
1.7.61-d2307071021 248 7/7/2023
1.7.61-d230706145 242 7/6/2023
1.7.61-d2307061444 244 7/6/2023
1.7.61-d2307061410 204 7/6/2023
1.7.61-d2307061334 223 7/6/2023
1.7.61-d2307061322 223 7/6/2023
1.7.61-d2307061311 230 7/6/2023
1.7.61-d2307061127 230 7/6/2023
1.7.61-d2307061047 237 7/6/2023
1.7.61-d2307060938 221 7/6/2023
1.7.60 494 7/3/2023
1.7.60-d230703103 230 7/3/2023
1.7.60-d2307030954 220 7/3/2023
1.7.59 717 6/27/2023
1.7.59-d2307030945 230 7/3/2023
1.7.59-d2307030929 226 7/3/2023
1.7.58 265 6/27/2023
1.7.57 661 6/26/2023
1.7.55 309 6/24/2023
1.7.54 466 6/21/2023
1.7.49 1,219 6/13/2023
1.7.48 652 6/12/2023
1.7.47 317 6/12/2023
1.7.46 1,088 6/6/2023
1.7.45 386 6/2/2023
1.7.44 316 6/2/2023
1.7.43 280 6/1/2023
1.7.42 448 5/31/2023
1.7.41 6,243 5/8/2023
1.7.40 2,452 5/2/2023
1.7.39 279 5/2/2023
1.7.38 407 5/1/2023
1.7.37 331 4/28/2023
1.7.36 287 4/28/2023
1.7.35 692 4/17/2023
1.7.34 520 4/10/2023
1.7.33 5,481 3/2/2023
1.7.32 2,088 2/15/2023
1.7.31 2,830 2/2/2023
1.7.30 1,099 1/4/2023
1.7.29 454 1/3/2023
1.7.28 447 1/3/2023
1.7.27 671 12/25/2022
1.7.26 447 12/23/2022
1.7.24 506 12/19/2022
1.7.23 438 12/19/2022
1.7.22 433 12/19/2022
1.7.21 862 12/13/2022
1.7.20 640 12/12/2022
1.7.11 741 11/30/2022
1.7.10 721 11/19/2022
1.6.76 2,679 11/14/2022
1.6.75 516 11/14/2022
1.6.74 525 11/13/2022
1.6.73 599 11/7/2022
1.6.72 499 11/7/2022
1.6.71 627 11/4/2022
1.6.70 488 11/4/2022
1.6.69 513 11/3/2022
1.6.68 501 11/3/2022
1.6.67 590 10/24/2022
1.6.66 789 10/12/2022
1.6.65 563 10/11/2022
1.6.64 839 9/26/2022
1.6.63 617 9/23/2022
1.6.62 654 9/19/2022
1.6.6 637 9/18/2022
1.6.5 881 9/17/2022
1.6.4 601 9/17/2022
1.6.3 611 9/17/2022
1.6.2 575 9/16/2022
1.6.1 607 9/16/2022
1.6.0 585 9/15/2022
1.5.9 676 9/14/2022
1.5.8 604 9/13/2022
1.5.6 591 9/11/2022
1.5.5 566 9/11/2022
1.5.4 625 9/9/2022
1.5.2 592 9/8/2022
1.5.1 624 9/8/2022
1.5.0 646 9/8/2022
1.4.3 685 8/30/2022
1.4.2 623 8/30/2022
1.4.1 589 8/29/2022
1.4.0 564 8/29/2022
1.3.91 595 8/29/2022
1.3.9 609 8/29/2022
1.3.8 589 8/28/2022
1.3.7 571 8/28/2022
1.3.6 604 8/26/2022
1.3.5 682 8/22/2022
1.3.4 575 8/22/2022
1.3.3 575 8/22/2022
1.3.2 591 8/22/2022
1.3.1 640 8/19/2022
1.3.0 789 8/1/2022
1.2.9 615 8/1/2022
1.2.8 660 7/21/2022
1.2.7 2,730 6/19/2022
1.2.6 619 6/18/2022
1.2.5 654 6/9/2022
1.2.3 717 5/30/2022
1.2.2 838 3/31/2022
1.2.1 638 3/24/2022
1.2.0 888 12/27/2021
1.1.0 1,553 12/5/2021
1.0.0-preview.211002142256 328 10/2/2021