MudBlazor.Extensions 2.0.7.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MudBlazor.Extensions --version 2.0.7.1                
NuGet\Install-Package MudBlazor.Extensions -Version 2.0.7.1                
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="2.0.7.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MudBlazor.Extensions --version 2.0.7.1                
#r "nuget: MudBlazor.Extensions, 2.0.7.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MudBlazor.Extensions as a Cake Addin
#addin nuget:?package=MudBlazor.Extensions&version=2.0.7.1

// Install MudBlazor.Extensions as a Cake Tool
#tool nuget:?package=MudBlazor.Extensions&version=2.0.7.1                

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

Alt

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

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:

  • 2.0.7 > Update MudBlazor to 7.15.0
  • 2.0.7 > For the MudExObjectEdit you can now easially register a component as editor for a specific type see here how you can register your component as editor for a type
  • 2.0.7 > Breaking: The DailogOptionsEx class has a new Property KeepRelations. this is true by default and ensures positions and sizes are in relative percentage values. With this a dialog stays in the same position and size relative to the screen size. If you want to have a dialog with fixed sizes and positions you can set this to false and return to the old behaviour.
  • 2.0.7 > The DailogOptionsEx class has a new Property KeepMaxSizeConstraints. if this is is true then the max width and max height while resizing is limited to initial MaxWidth or MaxHeight property values.
  • 2.0.7 > New Component MudExObjectEditPicker is the known MudExObjectEdit as a picker.
  • 2.0.7 > All MudEx picker components like MudExObjectEditPicker MudExColorEdit, MudExIconPicker or MudExPicker now inherits from new MudExPickerBase. All theese pickers now supports animations, and all DialogOptionsEx for PickerVariant as Dialog
  • 2.0.7 > New Component MudExPicker is a picker component that easially supports own picker content.
  • 2.0.7 > New Component MudExGroupBox is a simple group box component to group content with a title and a border.
  • 2.0.7 > MudExUploadEdit now allows recording of audio, video and captured screen directly using the new CaptureService
  • 2.0.7 > Add CaptureService to allow easy recording of screen capture, camera video and audio
  • 2.0.7 > New Component MudExCaptureButton to allow easy recording of screen capture, camera video and audio
  • 2.0.6 > MudExAudioPlayer now displays meta infos
  • 2.0.6 > The MudExImageViewer now allows area to select with a rubberband and open, download, print or directly switching the view to the selected area as an image.
  • 2.0.6 > Allow Xls and CSV files and fix header bug in MudExFileDisplayExcel
  • 2.0.6 > Allow async child loading in MudExTreeView.
  • 2.0.6 > Fixed error in sample app for MudExSelect and MudExThemeEdit
  • 2.0.6 > update used nuget packages to latest versions
  • 2.0.6 > update MudBlazor to 7.11.0
  • 2.0.6 > Add New Component MudExFileDisplayOfficeLive to support preview of any remote accessable office files in MudExFileDisplay and MudExUploadEdit .
  • 2.0.6 > Use MudExAdditionalAdornment for Theme edit buttons in MudExThemeEdit
  • 2.0.6 > Fix some style bugs
  • 2.0.6 > Breaking: Signature of IMudExFileDisplay CanHandleFile changed to an async method. This allows to handle async file checks. The method now returns a Task<bool> instead of a bool.

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 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 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

GitHub repositories (2)

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

Repository Stars
DragoQCC/HardHatC2
A C# Command & Control framework
fgilde/MudBlazor.Extensions
MudBlazor.Extensions from https://www.mudex.org is a small extension for MudBlazor from https://mudblazor.com
Version Downloads Last updated
8.0.0-prev-241119222-mudbla... 26 11/19/2024
2.0.7.1 231 11/18/2024
2.0.7.1-prev-2411181238-main 29 11/18/2024
2.0.7 169 11/17/2024
2.0.7-prev-2411171939-main 33 11/17/2024
2.0.7-prev-2411152211-main 42 11/15/2024
2.0.7-prev-2411121224-main 87 11/12/2024
2.0.7-prev-2411111731-main 82 11/11/2024
2.0.7-prev-2411110931-main 80 11/11/2024
2.0.7-prev-241111092-main 78 11/11/2024
2.0.7-prev-2411101417-main 72 11/10/2024
2.0.7-prev-2411051728-main 73 11/5/2024
2.0.7-prev-2411032052-main 79 11/3/2024
2.0.7-prev-241031237-main 76 10/31/2024
2.0.7-prev-2410312310-main 56 10/31/2024
2.0.7-prev-2410281059-main 70 10/28/2024
2.0.7-prev-241027214-main 72 10/27/2024
2.0.7-prev-2410261937-main 71 10/26/2024
2.0.7-prev-2410252028-main 67 10/25/2024
2.0.7-prev-2410250745-main 80 10/25/2024
2.0.7-prev-2410211158-main 65 10/21/2024
2.0.7-prev-2410122330-main 95 10/12/2024
2.0.6 3,054 10/12/2024
2.0.6-prev-2410122326-main 65 10/12/2024
2.0.6-prev-2410122324-main 63 10/12/2024
2.0.6-prev-241012219-main 75 10/12/2024
2.0.6-prev-2410121210-main 75 10/12/2024
2.0.6-prev-2410121158-main 80 10/12/2024
2.0.6-prev-2410112244-main 67 10/11/2024
2.0.6-prev-2410112222-main 82 10/11/2024
2.0.6-prev-2410112142-main 75 10/11/2024
2.0.6-prev-2410112114-main 72 10/11/2024
2.0.6-prev-2410112052-main 67 10/11/2024
2.0.6-prev-2410112021-main 69 10/11/2024
2.0.6-prev-2409240850-main 103 9/24/2024
2.0.6-prev-2409231432-main 77 9/23/2024
2.0.6-prev-2409231336-main 60 9/23/2024
2.0.6-prev-2409231328-main 71 9/23/2024
2.0.6-prev-2409231228-main 81 9/23/2024
2.0.6-prev-2409101419-main 160 9/10/2024
2.0.6-prev-2409101324-main 83 9/10/2024
2.0.6-prev-2409101031-main 95 9/10/2024
2.0.5 2,585 9/10/2024
2.0.5-prev-2409101025-main 87 9/10/2024
2.0.4 472 9/2/2024
2.0.4-prev-2409021559-main 73 9/2/2024
2.0.4-prev-2409021543-main 83 9/2/2024
2.0.4-prev-2408301757-main 85 8/30/2024
2.0.4-prev-240806216-main 125 8/6/2024
2.0.3 3,813 8/6/2024
2.0.3-prev-2408060651-main 67 8/6/2024
2.0.3-prev-2407162111-main 134 7/16/2024
2.0.2 2,902 7/16/2024
2.0.2-prev-240716212-main 79 7/16/2024
2.0.1-prev-2407161734-main 94 7/16/2024
2.0.0 1,363 7/9/2024
2.0.0-prev-2407080832-main 113 7/8/2024
2.0.0-prev-2407080828-main 92 7/8/2024
2.0.0-prev-2407080824-for-m... 47 7/8/2024
2.0.0-prev-2407080757-for-m... 35 7/8/2024
2.0.0-prev-2407041714-for-m... 75 7/4/2024
2.0.0-prev-2407041643-for-m... 47 7/4/2024
2.0.0-prev-2407031525-for-m... 67 7/3/2024
2.0.0-prev-2407031417-for-m... 50 7/3/2024
2.0.0-prev-2407011629-for-m... 75 7/1/2024
2.0.0-prev-2406301522-for-m... 108 6/30/2024
1.7.89 1,721 6/28/2024
1.7.89-prev-2406281250-main 75 6/28/2024
1.7.88-prev-2406281119-main 85 6/28/2024
1.7.88-prev-2406271513-main 91 6/27/2024
1.7.88-prev-2406241329-main 78 6/24/2024
1.7.88-prev-2406201445-main 82 6/20/2024
1.7.88-prev-2406201321-main 59 6/20/2024
1.7.88-prev-2406200938-main 76 6/20/2024
1.7.88-prev-240619108-main 98 6/19/2024
1.7.88-prev-2406191018-main 92 6/19/2024
1.7.88-prev-2406171154-main 90 6/17/2024
1.7.88-prev-2406051024-main 125 6/5/2024
1.7.88-prev-2406050857-main 83 6/5/2024
1.7.88-prev-2406042343-main 102 6/4/2024
1.7.88-prev-2406042336-main 92 6/4/2024
1.7.88-prev-2406042253-main 90 6/4/2024
1.7.88-prev-2406041330-main 73 6/4/2024
1.7.88-prev-2406041236-main 88 6/4/2024
1.7.88-prev-240526158-main 114 5/26/2024
1.7.88-prev-2405261413-main 120 5/26/2024
1.7.88-prev-2405141254-main 108 5/14/2024
1.7.88-prev-2405061530-main 173 5/6/2024
1.7.88-prev-2405020855-main 87 5/2/2024
1.7.88-prev-240429142-main 96 4/29/2024
1.7.88-prev-240425199-main 92 4/25/2024
1.7.88-prev-2404231313-main 104 4/23/2024
1.7.87 16,485 4/23/2024
1.7.87-prev-240423135-main 92 4/23/2024
1.7.87-prev-2404231253-main 103 4/23/2024
1.7.87-prev-2404011353-main 195 4/1/2024
1.7.87-prev-2404011345-main 103 4/1/2024
1.7.87-prev-2404011246-main 90 4/1/2024
1.7.87-prev-2403220933-main 106 3/22/2024
1.7.86 6,058 3/22/2024
1.7.86-prev-2403220928-main 95 3/22/2024
1.7.86-prev-2403171653-main 77 3/17/2024
1.7.86-prev-2403132130-main 104 3/13/2024
1.7.86-prev-2403130931-main 100 3/13/2024
1.7.86-prev-2403081028-main 105 3/8/2024
1.7.85 5,171 3/8/2024
1.7.85-prev-2403081025-main 81 3/8/2024
1.7.85-prev-2403081022-main 95 3/8/2024
1.7.85-prev-2403041240-main 173 3/4/2024
1.7.85-prev-240222126-main 135 2/22/2024
1.7.85-prev-2402221216-main 95 2/22/2024
1.7.85-prev-2402221115-main 119 2/22/2024
1.7.85-prev-2402190751-main 127 2/19/2024
1.7.85-prev-2402190729-main 91 2/19/2024
1.7.85-prev-2402190713-main 89 2/19/2024
1.7.84 1,565 2/18/2024
1.7.84-prev-2402180010-main 89 2/18/2024
1.7.84-prev-2402172351-main 109 2/17/2024
1.7.84-prev-2402172339-main 95 2/17/2024
1.7.84-prev-2402091223-main 153 2/9/2024
1.7.84-prev-240209113-main 109 2/9/2024
1.7.83 5,666 1/22/2024
1.7.83-prev-2401221429-main 94 1/22/2024
1.7.83-prev-2401121446-main 309 1/12/2024
1.7.83-prev-2401101129-main 113 1/10/2024
1.7.83-prev-2401092213-main 112 1/9/2024
1.7.82 1,825 1/7/2024
1.7.81 211 1/5/2024
1.7.81-prev-2401051055-main 118 1/5/2024
1.7.81-prev-2401051015-main 128 1/5/2024
1.7.81-prev-2401041559-main 128 1/4/2024
1.7.81-prev-2401041556-main 104 1/4/2024
1.7.81-prev-2401041328-main 134 1/4/2024
1.7.81-prev-2401040943-main 130 1/4/2024
1.7.81-prev-231229177-main 145 12/29/2023
1.7.81-prev-2312291458-main 128 12/29/2023
1.7.81-prev-2312291325-main 108 12/29/2023
1.7.81-prev-2312291316-main 128 12/29/2023
1.7.80 1,047 12/27/2023
1.7.80-prev-2312221335-main 95 12/22/2023
1.7.80-prev-2312221224-main 116 12/22/2023
1.7.80-prev-231222116-main 102 12/22/2023
1.7.80-prev-2312221146-main 108 12/22/2023
1.7.80-prev-231221168-main 90 12/21/2023
1.7.80-prev-2312191356-main 107 12/19/2023
1.7.80-prev-2312190726-main 116 12/19/2023
1.7.79 1,843 12/19/2023
1.7.79-prev-2312190722-main 92 12/19/2023
1.7.79-prev-2312190720-main 112 12/19/2023
1.7.79-prev-2312190625-main 106 12/19/2023
1.7.79-prev-231218186-main 139 12/18/2023
1.7.79-prev-2312180725-main 117 12/18/2023
1.7.79-prev-2312171656-main 113 12/17/2023
1.7.78 262 12/17/2023
1.7.78-prev-2312171653-main 107 12/17/2023
1.7.78-prev-231208136-main 139 12/8/2023
1.7.78-prev-2312081239-main 108 12/8/2023
1.7.78-prev-231125227-main 175 11/25/2023
1.7.78-prev-231125183-main 105 11/25/2023
1.7.78-prev-2311251743-main 104 11/25/2023
1.7.78-prev-2311231527-main 121 11/23/2023
1.7.78-prev-2311231154-main 88 11/23/2023
1.7.78-prev-2311231145-main 101 11/23/2023
1.7.77 2,362 11/23/2023
1.7.77-prev-2311201432-main 103 11/20/2023
1.7.77-prev-2311201358-main 70 11/20/2023
1.7.77-prev-2311190052-main 103 11/19/2023
1.7.77-prev-2311171311-main 110 11/17/2023
1.7.77-prev-2311161753-main 95 11/16/2023
1.7.77-prev-2311161216-main 88 11/16/2023
1.7.77-prev-2311121951-main 114 11/12/2023
1.7.77-prev-2311121934-main 89 11/12/2023
1.7.77-prev-2311121925-main 90 11/12/2023
1.7.77-prev-2311091211-main 88 11/9/2023
1.7.77-prev-2311091156-main 88 11/9/2023
1.7.77-prev-2311060859-main 112 11/6/2023
1.7.77-prev-2311060848-main 92 11/6/2023
1.7.77-prev-2311050019-main 104 11/5/2023
1.7.77-prev-2311041315-main 70 11/4/2023
1.7.76 3,115 11/4/2023
1.7.76-prev-231104016-main 89 11/4/2023
1.7.76-prev-2311032342-main 81 11/3/2023
1.7.76-prev-2311031311-main 97 11/3/2023
1.7.76-prev-2311031256-main 86 11/3/2023
1.7.76-prev-2311031251-main 86 11/3/2023
1.7.76-prev-2311031027-main 96 11/3/2023
1.7.76-prev-2311022342-main 115 11/2/2023
1.7.76-prev-2311021936-main 95 11/2/2023
1.7.76-prev-231102154-main 84 11/2/2023
1.7.76-prev-2311021449-main 92 11/2/2023
1.7.76-prev-2311012343-main 104 11/1/2023
1.7.76-prev-2311012314-main 102 11/1/2023
1.7.76-prev-2311012314-ext-... 78 11/1/2023
1.7.76-prev-231031150-ext-f... 84 10/31/2023
1.7.76-prev-2310301549-ext-... 114 10/30/2023
1.7.76-prev-2310280957-main 116 10/28/2023
1.7.76-prev-2310280956-main 94 10/28/2023
1.7.76-prev-2310271059-main 121 10/27/2023
1.7.76-prev-2310241548-main 115 10/24/2023
1.7.76-prev-231022130-main 117 10/22/2023
1.7.75 799 10/22/2023
1.7.75-prev-2310212254-main 105 10/21/2023
1.7.75-prev-2310211835-main 105 10/21/2023
1.7.75-prev-231021163-main 109 10/21/2023
1.7.75-prev-2310121838-main 229 10/12/2023
1.7.75-prev-2310121149-main 454 10/12/2023
1.7.75-prev-231010155-main 103 10/10/2023
1.7.74 1,730 10/10/2023
1.7.74-prev-2310101053-main 103 10/10/2023
1.7.74-prev-2310091858-main 106 10/9/2023
1.7.74-prev-2310090849-main 102 10/9/2023
1.7.73 223 10/9/2023
1.7.73-prev-2310081110-main 101 10/8/2023
1.7.73-prev-231008111-main 90 10/8/2023
1.7.73-prev-2310081017-main 117 10/8/2023
1.7.73-prev-231008100-main 112 10/8/2023
1.7.73-prev-2310080956-main 94 10/8/2023
1.7.73-prev-2310080917-main 110 10/8/2023
1.7.73-prev-2310071939-main 101 10/7/2023
1.7.72 485 10/7/2023
1.7.72-prev-2310071923-main 99 10/7/2023
1.7.72-prev-231006178-main 102 10/6/2023
1.7.72-prev-231006167-main 102 10/6/2023
1.7.72-prev-2310061631-main 89 10/6/2023
1.7.72-prev-2310061526-main 109 10/6/2023
1.7.72-prev-2310061333-main 126 10/6/2023
1.7.72-prev-2310051926-main 96 10/5/2023
1.7.72-prev-2310051653-main 106 10/5/2023
1.7.72-prev-231005106-main 106 10/5/2023
1.7.72-prev-231004133-main 102 10/4/2023
1.7.72-prev-2310041222-main 105 10/4/2023
1.7.72-prev-2310032119-main 114 10/3/2023
1.7.72-prev-2310032118-fgil... 93 10/3/2023
1.7.72-prev-2310031840-main 110 10/3/2023
1.7.72-prev-2310021853-main 110 10/2/2023
1.7.71 2,309 10/2/2023
1.7.71-prev-2310021827-main 98 10/2/2023
1.7.71-prev-2310021435-main 93 10/2/2023
1.7.71-prev-2310011635-main 176 10/1/2023
1.7.71-prev-2310011354-main 101 10/1/2023
1.7.71-prev-2310011345-main 99 10/1/2023
1.7.70 173 10/1/2023
1.7.70-prev-2310011336-main 93 10/1/2023
1.7.70-prev-2310011335-main 92 10/1/2023
1.7.70-prev-2310011324-main 103 10/1/2023
1.7.70-prev-2310011118-try-... 97 10/1/2023
1.7.70-prev-2310011118-main 95 10/1/2023
1.7.70-prev-2309302143-try-... 118 9/30/2023
1.7.70-prev-2309302141-try-... 85 9/30/2023
1.7.70-prev-2309302139-try-... 96 9/30/2023
1.7.70-prev-2309301923-try-... 97 9/30/2023
1.7.70-prev-2309301858-try-... 94 9/30/2023
1.7.70-prev-2309301051-try-... 98 9/30/2023
1.7.70-prev-2309281230-main 99 9/28/2023
1.7.70-prev-2309281230-fgil... 96 9/28/2023
1.7.70-prev-2309251813-try-... 118 9/25/2023
1.7.70-prev-230925161-try-m... 111 9/25/2023
1.7.70-prev-2309251213-try-... 99 9/25/2023
1.7.70-prev-2309241830-main 105 9/24/2023
1.7.70-prev-2309211820-main 100 9/21/2023
1.7.69 1,066 9/21/2023
1.7.69-prev-2309201754-main 75 9/20/2023
1.7.68 145 9/20/2023
1.7.68-prev-2309201120-main 108 9/20/2023
1.7.68-prev-2309182049-stre... 105 9/18/2023
1.7.68-prev-230918145-main 113 9/18/2023
1.7.68-prev-230918144-refac... 98 9/18/2023
1.7.68-prev-2309181059-main 89 9/18/2023
1.7.68-prev-2309180958-main 98 9/18/2023
1.7.68-prev-2309180956-open... 75 9/18/2023
1.7.68-prev-2309171718-open... 96 9/17/2023
1.7.68-prev-2309151317-main 106 9/15/2023
1.7.68-prev-2309151125-main 91 9/15/2023
1.7.68-prev-2309151111-main 98 9/15/2023
1.7.68-prev-230915091-main 85 9/15/2023
1.7.68-prev-2309150859-main 90 9/15/2023
1.7.68-prev-2309150848-for-... 74 9/15/2023
1.7.68-prev-2309150839-main 84 9/15/2023
1.7.68-prev-2309141720-main 116 9/14/2023
1.7.68-prev-2309141624-main 82 9/14/2023
1.7.68-prev-2309140951-main 100 9/14/2023
1.7.68-prev-2309132130-main 120 9/13/2023
1.7.68-prev-2309132129-main 108 9/13/2023
1.7.68-prev-2309131352-main 108 9/13/2023
1.7.67 1,127 9/11/2023
1.7.67-prev-2309111714-main 110 9/11/2023
1.7.67-prev-230908125-main 94 9/8/2023
1.7.67-prev-2309011638-main 121 9/1/2023
1.7.67-prev-2309011345-main 87 9/1/2023
1.7.67-prev-2309011325-main 91 9/1/2023
1.7.67-prev-2309011132-main 105 9/1/2023
1.7.67-prev-2309010947-main 100 9/1/2023
1.7.67-prev-230831169-main 87 8/31/2023
1.7.67-prev-230830177-main 117 8/30/2023
1.7.67-prev-230829129-main 110 8/29/2023
1.7.66 672 8/29/2023
1.7.66-prev-230829124-main 109 8/29/2023
1.7.66-prev-2308290944-main 113 8/29/2023
1.7.66-prev-230825191-main 304 8/25/2023
1.7.66-prev-2308251844-main 100 8/25/2023
1.7.66-prev-2308251828-main 112 8/25/2023
1.7.66-prev-2308251247-main 103 8/25/2023
1.7.65 251 8/25/2023
1.7.65-prev-2308251231-main 105 8/25/2023
1.7.65-prev-2308251228-main 99 8/25/2023
1.7.65-prev-2308251226-main 115 8/25/2023
1.7.65-prev-2308250947-main 105 8/25/2023
1.7.65-prev-2308241938-main 107 8/24/2023
1.7.65-prev-2308241926-main 101 8/24/2023
1.7.65-prev-2308241849-feat... 102 8/24/2023
1.7.65-prev-2308150852-main 123 8/15/2023
1.7.65-prev-2308150844-TEST... 91 8/15/2023
1.7.65-d2308141450 109 8/14/2023
1.7.65-d2308141444 111 8/14/2023
1.7.65-d2308141158 110 8/14/2023
1.7.65-d2308141150 113 8/14/2023
1.7.65-d2308141146 100 8/14/2023
1.7.65-d2308140839 111 8/14/2023
1.7.65-d2308122013 130 8/12/2023
1.7.65-d230802214 134 8/2/2023
1.7.65-d230802213 125 8/2/2023
1.7.65-d2308022035 134 8/2/2023
1.7.65-d2308022032 126 8/2/2023
1.7.65-d2307302336 127 7/30/2023
1.7.65-d2307302320 105 7/30/2023
1.7.64 1,049 7/30/2023
1.7.64-d2307302317 114 7/30/2023
1.7.64-d2307302247 134 7/30/2023
1.7.64-d2307291444 135 7/29/2023
1.7.64-d2307291441 136 7/29/2023
1.7.64-d2307291440 130 7/29/2023
1.7.64-d230728177 136 7/28/2023
1.7.64-d2307281652 120 7/28/2023
1.7.64-d2307221851 149 7/22/2023
1.7.64-d2307200948 131 7/20/2023
1.7.64-d2307200916 127 7/20/2023
1.7.64-d230720090 106 7/20/2023
1.7.64-d2307191235 142 7/19/2023
1.7.64-d230718144 145 7/18/2023
1.7.64-d230718143 130 7/18/2023
1.7.64-d230718137 129 7/18/2023
1.7.64-d2307181322 127 7/18/2023
1.7.64-d2307181313 126 7/18/2023
1.7.64-d230718130 128 7/18/2023
1.7.64-d2307181252 119 7/18/2023
1.7.64-d230718121 127 7/18/2023
1.7.64-d2307181158 126 7/18/2023
1.7.64-d2307171630 145 7/17/2023
1.7.64-d2307151446 149 7/15/2023
1.7.63 762 7/14/2023
1.7.63-d2307141132 125 7/14/2023
1.7.63-d2307121411 118 7/12/2023
1.7.62 248 7/12/2023
1.7.62-d2307120842 133 7/12/2023
1.7.62-d2307112153 130 7/11/2023
1.7.62-d2307101518 127 7/10/2023
1.7.62-d2307101423 128 7/10/2023
1.7.62-d230710142 119 7/10/2023
1.7.62-d2307101318 126 7/10/2023
1.7.61 501 7/7/2023
1.7.61-d230707173 125 7/7/2023
1.7.61-d230707170 120 7/7/2023
1.7.61-d230707119 140 7/7/2023
1.7.61-d2307071021 130 7/7/2023
1.7.61-d230706145 146 7/6/2023
1.7.61-d2307061444 121 7/6/2023
1.7.61-d2307061410 113 7/6/2023
1.7.61-d2307061334 128 7/6/2023
1.7.61-d2307061322 111 7/6/2023
1.7.61-d2307061311 120 7/6/2023
1.7.61-d2307061127 112 7/6/2023
1.7.61-d2307061047 124 7/6/2023
1.7.61-d2307060938 128 7/6/2023
1.7.60 367 7/3/2023
1.7.60-d230703103 118 7/3/2023
1.7.60-d2307030954 113 7/3/2023
1.7.59 602 6/27/2023
1.7.59-d2307030945 118 7/3/2023
1.7.59-d2307030929 118 7/3/2023
1.7.58 144 6/27/2023
1.7.57 507 6/26/2023
1.7.55 183 6/24/2023
1.7.54 288 6/21/2023
1.7.49 1,013 6/13/2023
1.7.48 523 6/12/2023
1.7.47 187 6/12/2023
1.7.46 964 6/6/2023
1.7.45 256 6/2/2023
1.7.44 183 6/2/2023
1.7.43 158 6/1/2023
1.7.42 306 5/31/2023
1.7.41 2,901 5/8/2023
1.7.40 2,018 5/2/2023
1.7.39 167 5/2/2023
1.7.38 277 5/1/2023
1.7.37 204 4/28/2023
1.7.36 181 4/28/2023
1.7.35 501 4/17/2023
1.7.34 400 4/10/2023
1.7.33 4,575 3/2/2023
1.7.32 1,321 2/15/2023
1.7.31 2,664 2/2/2023
1.7.30 837 1/4/2023
1.7.29 322 1/3/2023
1.7.28 292 1/3/2023
1.7.27 522 12/25/2022
1.7.26 329 12/23/2022
1.7.24 363 12/19/2022
1.7.23 303 12/19/2022
1.7.22 315 12/19/2022
1.7.21 735 12/13/2022
1.7.20 386 12/12/2022
1.7.11 582 11/30/2022
1.7.10 594 11/19/2022
1.6.76 2,516 11/14/2022
1.6.75 353 11/14/2022
1.6.74 371 11/13/2022
1.6.73 464 11/7/2022
1.6.72 356 11/7/2022
1.6.71 498 11/4/2022
1.6.70 362 11/4/2022
1.6.69 364 11/3/2022
1.6.68 348 11/3/2022
1.6.67 447 10/24/2022
1.6.66 651 10/12/2022
1.6.65 419 10/11/2022
1.6.64 689 9/26/2022
1.6.63 471 9/23/2022
1.6.62 490 9/19/2022
1.6.6 484 9/18/2022
1.6.5 739 9/17/2022
1.6.4 460 9/17/2022
1.6.3 471 9/17/2022
1.6.2 458 9/16/2022
1.6.1 483 9/16/2022
1.6.0 461 9/15/2022
1.5.9 526 9/14/2022
1.5.8 456 9/13/2022
1.5.6 470 9/11/2022
1.5.5 448 9/11/2022
1.5.4 480 9/9/2022
1.5.2 451 9/8/2022
1.5.1 474 9/8/2022
1.5.0 494 9/8/2022
1.4.3 563 8/30/2022
1.4.2 464 8/30/2022
1.4.1 450 8/29/2022
1.4.0 440 8/29/2022
1.3.91 443 8/29/2022
1.3.9 464 8/29/2022
1.3.8 443 8/28/2022
1.3.7 428 8/28/2022
1.3.6 464 8/26/2022
1.3.5 535 8/22/2022
1.3.4 426 8/22/2022
1.3.3 452 8/22/2022
1.3.2 449 8/22/2022
1.3.1 488 8/19/2022
1.3.0 663 8/1/2022
1.2.9 464 8/1/2022
1.2.8 505 7/21/2022
1.2.7 2,567 6/19/2022
1.2.6 473 6/18/2022
1.2.5 490 6/9/2022
1.2.3 583 5/30/2022
1.2.2 696 3/31/2022
1.2.1 477 3/24/2022
1.2.0 597 12/27/2021
1.1.0 874 12/5/2021
1.0.0-preview.211002142256 204 10/2/2021