MudBlazor.Extensions 1.7.39

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

MudBlazor.Extensions

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

Running Sample Application (Azure)
Running Sample Application (Cloudflare)

Using / Prerequirements

Using is as easy it can be Sure you need a MudBlazor project and the referenced package to MudBlazor for more informations and help see https://mudblazor.com/ and https://github.com/MudBlazor/Templates

Add the nuget Package MudBlazor.Extensions to your blazor project

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

For easier using the components should change your _Imports.razor and add this entries.

@using MudBlazor.Extensions
@using MudBlazor.Extensions.Components
@using MudBlazor.Extensions.Components.ObjectEdit

Register the MudBlazor.Extensions in your Startup.cs in the ConfigureServices method.

NOTICE: You can pass Assemblies params to search and add the possible service implementations for IObjectMetaConfiguration and IDefaultRenderDataProvider automaticly. If you don't pass any Assembly the MudBlazor.Extensions will search in the Entry and calling Assembly.

// use this to add MudServices and the MudBlazor.Extensions
builder.Services.AddMudServicesWithExtensions();

// or this to add only the MudBlazor.Extensions
builder.Services.AddMudExtensions();

You can also provide default dialogOptions here

builder.Services.AddMudServicesWithExtensions(c =>
{
    c.WithDefaultDialogOptions(ex =>
    {
        ex.Position = DialogPosition.BottomRight;
    });
});

Because the dialog extensions are static you need to set the IJSRuntime somewhere in your code for example in your App.razor or MainLayout.razor in the OnAfterRenderAsync method. This is not required but otherwise you need to pass the IJSRuntime in every DialogOptionsEx If I find a better solution I will change this.

protected override async Task OnAfterRenderAsync(bool firstRender)
{
    if (firstRender)
        await JsRuntime.InitializeMudBlazorExtensionsAsync();
    await base.OnAfterRenderAsync(firstRender);
}

Components

MudExObjectEdit

MudExObjectEdit is a powerfull component to edit objects and automatically render the whole UI. You can also use the MudExObjectEditForm to have automatic validation and submit. Validation works automatically for DataAnnotation Validations or fluent registered validations for your model. The easiest way to use it is to use the MudExObjectEditForm and pass your model to it.

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

You can also use the MudExObjectEditDialog to edit you model in a dialog. The easieest way to do this is to use the extension method EditObject on the IDialogService.

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

More Informations of MudExObjectEdit you can find here

MudExFileDisplay

A Component to display file contents for example as preview before uploading or for referenced files. This components automatically tries to display as best as possible and can handle urls or streams directly. Also you can easially implement IMudExFileDisplayin your own component to register a custom file display. For example if you want to build or use your own video player You can use it like this

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

SAMPLE

MudExFileDisplayZip

This component is also automatically used by MudExFileDisplay but can also used manually if you need to.

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

SAMPLE

MudExFileDisplayDialog

A small dialog for the MudExFileDisplay Component. Can be used with static helpers to show like this

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

Can be used directly with an IBrowserFile

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

Can also be used completely manually with 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

MudExUploadEdit

This is a multi file upload component with Features like duplicate check, max size, specific allowed content types, max items, zip auto extract and many more.

SAMPLE <br> <a href="https://github.com/fgilde/MudBlazor.Extensions/blob/main/MudBlazor.Extensions/Screenshots/UploadEdit.mkv?raw=true" target="_blank">Download Video</a>

Extensions

Make dialogs resizeable or draggable
       var options = new DialogOptionsEx { Resizeable = true, DragMode = MudDialogDragMode.Simple, CloseButton = true,  FullWidth = true };
       var dialog = await _dialogService.ShowEx<YourMudDialog>("your dialog title", parameters, options);
Add Maximize Button
       var options = new DialogOptionsEx { MaximizeButton = true, CloseButton = true};
       var dialog = await _dialogService.ShowEx<YourMudDialog>("your Dialog title", parameters, options);
Add Custom Buttons

First in your component code you need to define the callback methods as JSInvokable

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

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

Then define your custom buttons

          var buttons = new[]
            {
                new MudDialogButton( DotNetObjectReference.Create(this as object), nameof(AlarmClick)) {Icon = Icons.Filled.Alarm},
                new MudDialogButton( DotNetObjectReference.Create(this as object), nameof(ColorLensClick)) {Icon = Icons.Filled.ColorLens},
            };
       var options = new DialogOptionsEx { MaximizeButton = true, CloseButton = true, Buttons = buttons};
       var dialog = await _dialogService.ShowEx<YourMudDialog>("your dialog title", parameters, options);

Now a dialog can look like this

SAMPLE

Use animation to show dialog

       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

If you animate a dialog with dialogServiceEx, you should add the class mud-ex-dialog-initial to your dialog to ensure no visibility before animation. Currently you can use following animations: SlideIn,FadeIn,Scale,Slide,Fade,Zoom,Roll,JackInTheBox,Hinge,Rotate,Bounce,Back,Jello,Wobble,Tada,Swing,HeadShake,Shake,RubberBand,Pulse,Flip,FlipX,FlipY

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

BETA (Work still in progress): All animations can currently also used on other components for example in this popover. <MudPopover Style="@(IsOpen $"animation: {new [] {AnimationType.FadeIn, AnimationType.SlideIn}.GetAnimationCssStyle(TimeSpan.FromSeconds(1))}" : "")">Popover content</MudPopover>

Remove need of DialogParameters

Also you can call our extension method with an Action<YourDialog> instead of DialogParameters.

    await dialogService.ShowEx<SampleDialog>("Simple Dialog", dialog => { dialog.ContentMessage = "Hello"; },options);
Change Log
  • 1.7.37 > MudExAppLoader web component to add loading animation for application
  • 1.7.36 > MudExObjectEdit: Fix errors where in some cases a meta config expressions fails for the RenderWith extension
  • 1.7.36 > New Possibility for ServerSideRendered Projects to use the IApplicationBuilder extension UseMudExtensions to bypass the need to register the JSRuntime
  • 1.7.36 > New Utils Methods for MudExCss
  • 1.7.36 > Setting DialogOptions as Default now also applys to dynamic dialogs for MudExCollectionEdit or MudExObjectEdit
  • 1.7.36 > New Component MudExGradientText
  • 1.7.36 > New Component MudExCardList
  • 1.7.36 > New Component MudExPopover
  • 1.7.36 > Fix small DialogOptions bugs
  • 1.7.35 > New Animations for dialogs Perspective3d and LightSpeed
  • 1.7.34 > New Components MudExSplitPanel MudExSplitter MudExDivider
  • 1.7.34 > Breaking: Rename: SvgIconHelper is now MudExSvg
  • 1.7.34 > Breaking: Rename: CssHelper is now MudExCss
  • 1.7.34 > Breaking: Rename: MudExColorHelper is now MudExColor
  • 1.7.34 > Breaking: Move: Namespace MudBlazor.Extensions.Extensions is now MudBlazor.Extensions.Helper
  • 1.7.33 Fix bug if no header is active on dialogs
  • 1.7.33 Load Modules manually for MAUI Apps
  • 1.7.31 Update BlazorJS to v 2.0.0 and MudBlazor to 6.1.8.
  • 1.7.30 Fix broken layout in full-height dialogs with new css selector.
  • 1.7.29 Fix broken dialog header buttons positions based on MudBlazor css changes
  • 1.7.28 Update MudBlazor to 6.1.7 and implement missing members in IMudExDialogReference
  • 1.7.27 MudExObjectEdit and MudExCollectionEditor now supporting Virtualize on MudExCollectionEditor its default enabled. But you need to specify height of control. On MudExObjectEdit is disabled and currently in Beta
  • 1.7.27 MudExObjectEdit and MudExCollectionEditor now supporting Height, MaxHeight and custom Style as Parameter
  • 1.7.27 MudExCollectionEditor now supporting Item search
  • 1.7.27 MudExCollectionEditor now supporting top or bottom toolbar position by setting the Parameter ToolbarPosition
  • 1.7.26 Improvements and extensibility for MudExFileDisplay
  • 1.7.25 DialogOptions can now set as Default for all dialogs where no explicit options are used
  • 1.7.24 Allow converting any IDialogReference to an IMudExDialogReference<TComponent> with Extension method AsMudExDialogReference. With this reference, the inner dialog component is type safe accessable
  • 1.7.23 New small dialogService extension method ShowInformationAsync
  • 1.7.22 New small dialogService extension method PromptAsync
  • 1.7.21 Correct initial color for colorpicker from MudExColorBubble
  • 1.7.20 .net6 and .net7 compatible.
  • 1.7.20 New componments MudExColorPicker, MudExColorBubble, MudExUploadEdit
  • 1.7.20 Fixed Bug that localizer is not passed to MudExCollectionEdit
  • 1.7.10 UPDATE TO .NET 7 and MudBlazor 6.1.2
  • 1.6.76 BugFix in MudExEnumSelect
  • 1.6.74 MudExEnumSelect select now supports nullable enums and flags
  • 1.6.73 Pass Class and ClassContent for MudExMessageDialog as Parameter
  • 1.6.72 Extension for DialogService to show any component in a dialog dialogService.ShowComponentInDialogAsync<Component>(...) Sample
  • 1.6.70 MudExObjectEdit has now events for before import and beforeexport, that allows you to change imported or exported date before executed
  • 1.6.69 BugFix wrong js was loaded
  • 1.6.68 New small DialogComponent MudExMessageDialog with custom actions and result and with small dialogServiceExtension dialogService.ShowConfirmationDialogAsync
  • 1.6.68 New parameter for MudExObjectEdit ImportNeedsConfirmation if this is true and AllowImport is true a file preview dialog appears on import and the user needs to confirm the import.
  • 1.6.68 Import and Export specifix properties only in MudExObjectEdit are now configurable with the MetaConfiguration
  • 1.6.68 Dialog DragMode without bound check. ScrollToTopPosition for MudExObjectEdit
  • 1.6.67 Add MudExColorPicker simple extended default MudColorPicker with one option DelayValueChangeToPickerClose (default true). If this is true ValueChanged is invoked after picker close
  • 1.5.0 Add MudExObjectEdit MudExObjectEditForm MudExObjectEditDialog and MudExCollectionEditor
  • 1.4.6 Registered Localizer is no longer a requirement
  • 1.4.0 Add New Component MudExEnumSelect
  • 1.2.8 Add New Component MudExChipSelect
  • 1.2.6 Add New Animationtypes for dialog or manual using
  • 1.2.4 Add Components MudExFileDisplay MudExFileDisplayZip and MudExFileDisplayDialog
  • 1.2.2 Animations can be combined
  • 1.2.2 Add animation fade
  • 1.2.2 Improved animations for dialogs
  • 1.2.0 Slide in animations for dialogs.
  • 1.1.2 New option FullHeight for dialogs
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 (4)

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

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.8.1-prev-250627149-main 44 6/27/2025
8.8.0 90 6/27/2025
8.8.0-prev-2506271245-main 47 6/27/2025
8.7.0 1,238 6/10/2025
8.7.0-prev-2506060936-main 99 6/6/2025
8.6.2-prev-2506060717-main 112 6/6/2025
8.6.2-prev-2505191247-main 161 5/19/2025
8.6.2-prev-2505191235-main 142 5/19/2025
8.6.2-prev-2505191234-main 133 5/19/2025
8.6.2-prev-2505191046-main 143 5/19/2025
8.6.2-prev-250518183-main 142 5/18/2025
8.6.2-prev-2505161151-main 198 5/16/2025
8.6.2-prev-2505160912-main 196 5/16/2025
8.6.2-prev-2505151223-main 219 5/15/2025
8.6.2-prev-2505150941-main 228 5/15/2025
8.6.1 2,037 5/15/2025
8.6.1-prev-2505150926-main 216 5/15/2025
8.6.1-prev-2505141854-main 224 5/14/2025
8.6.1-prev-2505122135-main 233 5/12/2025
8.6.1-prev-2505121747-main 226 5/12/2025
8.6.1-prev-2505121729-main 221 5/12/2025
8.6.1-prev-2505121728-main 222 5/12/2025
8.6.1-prev-2505121631-main 230 5/12/2025
8.6.1-prev-250511169-main 139 5/11/2025
8.6.1-prev-2505051052-main 155 5/5/2025
8.6.0 2,064 5/5/2025
8.6.0-prev-2505051020-main 145 5/5/2025
8.6.0-prev-2504301038-main 148 4/30/2025
8.6.0-prev-2504301026-main 147 4/30/2025
8.5.2 5,710 4/21/2025
8.5.2-prev-250422226-main 159 4/22/2025
8.5.2-prev-2504171323-main 208 4/17/2025
8.5.2-prev-2504161749-main 207 4/16/2025
8.5.2-prev-250416134-main 188 4/16/2025
8.5.2-prev-2504161310-main 196 4/16/2025
8.5.2-prev-250411104-main 140 4/11/2025
8.5.2-prev-250408191-main 156 4/8/2025
8.5.2-prev-2504071927-main 159 4/7/2025
8.5.1-prev-2504071347-main 166 4/7/2025
8.5.1-prev-2504071141-main 158 4/7/2025
8.5.0 1,524 4/7/2025
8.5.0-prev-2504071924-main 162 4/7/2025
8.3.2-prev-250403198-main 228 4/3/2025
8.3.2-prev-2503241458-main 462 3/24/2025
8.3.1 3,232 3/24/2025
8.3.1-prev-2503241450-main 404 3/24/2025
8.3.0 4,985 3/24/2025
8.3.0-prev-2503241447-main 398 3/24/2025
8.3.0-prev-2503181038-main 164 3/18/2025
8.3.0-prev-2503132013-main 155 3/13/2025
8.3.0-prev-2503101617-main 171 3/10/2025
8.3.0-prev-2503100817-main 159 3/10/2025
8.3.0-prev-2503061553-main 207 3/6/2025
8.2.2-prev-2502201313-main 348 2/20/2025
8.2.1 5,221 2/20/2025
8.2.1-prev-2502201311-main 100 2/20/2025
8.2.1-prev-2502141923-main 153 2/14/2025
8.2.1-prev-2502141921-main 96 2/14/2025
8.2.1-prev-2502141918-main 98 2/14/2025
8.2.0 3,248 2/14/2025
8.2.0-prev-2502141916-main 94 2/14/2025
8.0.2-prev-2501302211-main 205 1/30/2025
8.0.2-prev-2501301013-main 107 1/30/2025
8.0.2-prev-2501291421-42-no... 108 1/29/2025
8.0.2-prev-250128211-main 101 1/28/2025
8.0.2-prev-2501281520-main 95 1/28/2025
8.0.2-prev-2501280925-main 99 1/28/2025
8.0.2-prev-2501271442-main 100 1/27/2025
8.0.2-prev-2501261259-main 115 1/26/2025
8.0.2-prev-2501261222-main 95 1/26/2025
8.0.2-prev-2501261152-main 84 1/26/2025
8.0.1 2,223 1/26/2025
8.0.0 12,066 1/19/2025
8.0.0-prev-2501261143-main 90 1/26/2025
8.0.0-prev-2501191926-main 100 1/19/2025
8.0.0-prev-2501191920-mudbl... 97 1/19/2025
8.0.0-prev-2501131732-mudbl... 152 1/13/2025
8.0.0-prev-2501131730-mudbl... 66 1/13/2025
8.0.0-prev-250112136-mudbla... 72 1/12/2025
8.0.0-prev-2501121047-mudbl... 66 1/12/2025
8.0.0-prev-250112102-mudbla... 62 1/12/2025
8.0.0-prev-2501021023-mudbl... 100 1/2/2025
8.0.0-prev-2501011221-mudbl... 89 1/1/2025
8.0.0-prev-2501011220-mudbl... 82 1/1/2025
8.0.0-prev-2501011218-mudbl... 83 1/1/2025
8.0.0-prev-2412171357-mudbl... 112 12/17/2024
8.0.0-prev-2412151332-mudbl... 97 12/15/2024
8.0.0-prev-2412151237-mudbl... 74 12/15/2024
8.0.0-prev-2412121028-mudbl... 102 12/12/2024
8.0.0-prev-241208136-mudbla... 78 12/8/2024
8.0.0-prev-2411232146-mudbl... 116 11/23/2024
8.0.0-prev-2411231411-mudbl... 105 11/23/2024
2.1.1-prev-241217157-main 95 12/17/2024
2.1.0 5,687 12/17/2024
2.1.0-prev-241217140-main 120 12/17/2024
2.1.0-prev-2412171354-main 83 12/17/2024
2.1.0-prev-2412171226-main 94 12/17/2024
2.1.0-prev-2412151328-main 96 12/15/2024
2.1.0-prev-2412151250-main 108 12/15/2024
2.0.9-prev-2412151234-main 106 12/15/2024
2.0.9-prev-2412151211-main 110 12/15/2024
2.0.8 7,319 11/24/2024
2.0.8-prev-2412151156-main 99 12/15/2024
2.0.8-prev-2411231921-main 92 11/23/2024
2.0.8-prev-2411231414-main 88 11/23/2024
2.0.8-prev-2411221214-main 92 11/22/2024
2.0.8-prev-2411221019-main 92 11/22/2024
2.0.7.1 5,740 11/18/2024
2.0.7.1-prev-2411220950-main 103 11/22/2024
2.0.7.1-prev-2411181238-main 95 11/18/2024
2.0.7 396 11/17/2024
2.0.7-prev-2411171939-main 92 11/17/2024
2.0.7-prev-2411152211-main 103 11/15/2024
2.0.7-prev-2411121224-main 121 11/12/2024
2.0.7-prev-2411111731-main 116 11/11/2024
2.0.7-prev-2411110931-main 114 11/11/2024
2.0.7-prev-241111092-main 108 11/11/2024
2.0.7-prev-2411101417-main 106 11/10/2024
2.0.7-prev-2411051728-main 114 11/5/2024
2.0.7-prev-2411032052-main 110 11/3/2024
2.0.7-prev-241031237-main 121 10/31/2024
2.0.7-prev-2410312310-main 91 10/31/2024
2.0.7-prev-2410281059-main 96 10/28/2024
2.0.7-prev-241027214-main 101 10/27/2024
2.0.7-prev-2410261937-main 103 10/26/2024
2.0.7-prev-2410252028-main 101 10/25/2024
2.0.7-prev-2410250745-main 114 10/25/2024
2.0.7-prev-2410211158-main 114 10/21/2024
2.0.7-prev-2410122330-main 125 10/12/2024
2.0.6 7,992 10/12/2024
2.0.6-prev-2410122326-main 88 10/12/2024
2.0.6-prev-2410122324-main 91 10/12/2024
2.0.6-prev-241012219-main 104 10/12/2024
2.0.6-prev-2410121210-main 110 10/12/2024
2.0.6-prev-2410121158-main 112 10/12/2024
2.0.6-prev-2410112244-main 103 10/11/2024
2.0.6-prev-2410112222-main 117 10/11/2024
2.0.6-prev-2410112142-main 104 10/11/2024
2.0.6-prev-2410112114-main 114 10/11/2024
2.0.6-prev-2410112052-main 103 10/11/2024
2.0.6-prev-2410112021-main 111 10/11/2024
2.0.6-prev-2409240850-main 135 9/24/2024
2.0.6-prev-2409231432-main 109 9/23/2024
2.0.6-prev-2409231336-main 97 9/23/2024
2.0.6-prev-2409231328-main 103 9/23/2024
2.0.6-prev-2409231228-main 112 9/23/2024
2.0.6-prev-2409101419-main 193 9/10/2024
2.0.6-prev-2409101324-main 112 9/10/2024
2.0.6-prev-2409101031-main 129 9/10/2024
2.0.5 3,708 9/10/2024
2.0.5-prev-2409101025-main 115 9/10/2024
2.0.4 563 9/2/2024
2.0.4-prev-2409021559-main 101 9/2/2024
2.0.4-prev-2409021543-main 108 9/2/2024
2.0.4-prev-2408301757-main 113 8/30/2024
2.0.4-prev-240806216-main 152 8/6/2024
2.0.3 5,449 8/6/2024
2.0.3-prev-2408060651-main 94 8/6/2024
2.0.3-prev-2407162111-main 164 7/16/2024
2.0.2 7,109 7/16/2024
2.0.2-prev-240716212-main 108 7/16/2024
2.0.1-prev-2407161734-main 122 7/16/2024
2.0.0 1,679 7/9/2024
2.0.0-prev-2407080832-main 141 7/8/2024
2.0.0-prev-2407080828-main 119 7/8/2024
2.0.0-prev-2407080824-for-m... 78 7/8/2024
2.0.0-prev-2407080757-for-m... 69 7/8/2024
2.0.0-prev-2407041714-for-m... 109 7/4/2024
2.0.0-prev-2407041643-for-m... 77 7/4/2024
2.0.0-prev-2407031525-for-m... 94 7/3/2024
2.0.0-prev-2407031417-for-m... 83 7/3/2024
2.0.0-prev-2407011629-for-m... 117 7/1/2024
2.0.0-prev-2406301522-for-m... 136 6/30/2024
1.7.89 2,647 6/28/2024
1.7.89-prev-2406281250-main 112 6/28/2024
1.7.88-prev-2406281119-main 126 6/28/2024
1.7.88-prev-2406271513-main 123 6/27/2024
1.7.88-prev-2406241329-main 102 6/24/2024
1.7.88-prev-2406201445-main 114 6/20/2024
1.7.88-prev-2406201321-main 85 6/20/2024
1.7.88-prev-2406200938-main 114 6/20/2024
1.7.88-prev-240619108-main 131 6/19/2024
1.7.88-prev-2406191018-main 130 6/19/2024
1.7.88-prev-2406171154-main 127 6/17/2024
1.7.88-prev-2406051024-main 153 6/5/2024
1.7.88-prev-2406050857-main 109 6/5/2024
1.7.88-prev-2406042343-main 133 6/4/2024
1.7.88-prev-2406042336-main 119 6/4/2024
1.7.88-prev-2406042253-main 118 6/4/2024
1.7.88-prev-2406041330-main 101 6/4/2024
1.7.88-prev-2406041236-main 119 6/4/2024
1.7.88-prev-240526158-main 141 5/26/2024
1.7.88-prev-2405261413-main 146 5/26/2024
1.7.88-prev-2405141254-main 139 5/14/2024
1.7.88-prev-2405061530-main 201 5/6/2024
1.7.88-prev-2405020855-main 123 5/2/2024
1.7.88-prev-240429142-main 119 4/29/2024
1.7.88-prev-240425199-main 117 4/25/2024
1.7.88-prev-2404231313-main 127 4/23/2024
1.7.87 26,882 4/23/2024
1.7.87-prev-240423135-main 119 4/23/2024
1.7.87-prev-2404231253-main 132 4/23/2024
1.7.87-prev-2404011353-main 221 4/1/2024
1.7.87-prev-2404011345-main 129 4/1/2024
1.7.87-prev-2404011246-main 114 4/1/2024
1.7.87-prev-2403220933-main 131 3/22/2024
1.7.86 6,929 3/22/2024
1.7.86-prev-2403220928-main 117 3/22/2024
1.7.86-prev-2403171653-main 106 3/17/2024
1.7.86-prev-2403132130-main 130 3/13/2024
1.7.86-prev-2403130931-main 131 3/13/2024
1.7.86-prev-2403081028-main 131 3/8/2024
1.7.85 6,813 3/8/2024
1.7.85-prev-2403081025-main 106 3/8/2024
1.7.85-prev-2403081022-main 122 3/8/2024
1.7.85-prev-2403041240-main 193 3/4/2024
1.7.85-prev-240222126-main 168 2/22/2024
1.7.85-prev-2402221216-main 129 2/22/2024
1.7.85-prev-2402221115-main 143 2/22/2024
1.7.85-prev-2402190751-main 158 2/19/2024
1.7.85-prev-2402190729-main 121 2/19/2024
1.7.85-prev-2402190713-main 118 2/19/2024
1.7.84 1,790 2/18/2024
1.7.84-prev-2402180010-main 123 2/18/2024
1.7.84-prev-2402172351-main 137 2/17/2024
1.7.84-prev-2402172339-main 122 2/17/2024
1.7.84-prev-2402091223-main 180 2/9/2024
1.7.84-prev-240209113-main 137 2/9/2024
1.7.83 6,866 1/22/2024
1.7.83-prev-2401221429-main 127 1/22/2024
1.7.83-prev-2401121446-main 346 1/12/2024
1.7.83-prev-2401101129-main 149 1/10/2024
1.7.83-prev-2401092213-main 147 1/9/2024
1.7.82 2,404 1/7/2024
1.7.81 260 1/5/2024
1.7.81-prev-2401051055-main 139 1/5/2024
1.7.81-prev-2401051015-main 152 1/5/2024
1.7.81-prev-2401041559-main 153 1/4/2024
1.7.81-prev-2401041556-main 124 1/4/2024
1.7.81-prev-2401041328-main 159 1/4/2024
1.7.81-prev-2401040943-main 155 1/4/2024
1.7.81-prev-231229177-main 166 12/29/2023
1.7.81-prev-2312291458-main 152 12/29/2023
1.7.81-prev-2312291325-main 132 12/29/2023
1.7.81-prev-2312291316-main 153 12/29/2023
1.7.80 1,209 12/27/2023
1.7.80-prev-2312221335-main 121 12/22/2023
1.7.80-prev-2312221224-main 143 12/22/2023
1.7.80-prev-231222116-main 129 12/22/2023
1.7.80-prev-2312221146-main 138 12/22/2023
1.7.80-prev-231221168-main 116 12/21/2023
1.7.80-prev-2312191356-main 134 12/19/2023
1.7.80-prev-2312190726-main 145 12/19/2023
1.7.79 1,892 12/19/2023
1.7.79-prev-2312190722-main 121 12/19/2023
1.7.79-prev-2312190720-main 154 12/19/2023
1.7.79-prev-2312190625-main 127 12/19/2023
1.7.79-prev-231218186-main 161 12/18/2023
1.7.79-prev-2312180725-main 140 12/18/2023
1.7.79-prev-2312171656-main 135 12/17/2023
1.7.78 333 12/17/2023
1.7.78-prev-2312171653-main 128 12/17/2023
1.7.78-prev-231208136-main 167 12/8/2023
1.7.78-prev-2312081239-main 134 12/8/2023
1.7.78-prev-231125227-main 202 11/25/2023
1.7.78-prev-231125183-main 131 11/25/2023
1.7.78-prev-2311251743-main 135 11/25/2023
1.7.78-prev-2311231527-main 142 11/23/2023
1.7.78-prev-2311231154-main 116 11/23/2023
1.7.78-prev-2311231145-main 123 11/23/2023
1.7.77 2,523 11/23/2023
1.7.77-prev-2311201432-main 126 11/20/2023
1.7.77-prev-2311201358-main 91 11/20/2023
1.7.77-prev-2311190052-main 130 11/19/2023
1.7.77-prev-2311171311-main 134 11/17/2023
1.7.77-prev-2311161753-main 122 11/16/2023
1.7.77-prev-2311161216-main 110 11/16/2023
1.7.77-prev-2311121951-main 135 11/12/2023
1.7.77-prev-2311121934-main 109 11/12/2023
1.7.77-prev-2311121925-main 117 11/12/2023
1.7.77-prev-2311091211-main 108 11/9/2023
1.7.77-prev-2311091156-main 112 11/9/2023
1.7.77-prev-2311060859-main 142 11/6/2023
1.7.77-prev-2311060848-main 116 11/6/2023
1.7.77-prev-2311050019-main 131 11/5/2023
1.7.77-prev-2311041315-main 94 11/4/2023
1.7.76 4,328 11/4/2023
1.7.76-prev-231104016-main 121 11/4/2023
1.7.76-prev-2311032342-main 113 11/3/2023
1.7.76-prev-2311031311-main 121 11/3/2023
1.7.76-prev-2311031256-main 112 11/3/2023
1.7.76-prev-2311031251-main 109 11/3/2023
1.7.76-prev-2311031027-main 125 11/3/2023
1.7.76-prev-2311022342-main 143 11/2/2023
1.7.76-prev-2311021936-main 122 11/2/2023
1.7.76-prev-231102154-main 105 11/2/2023
1.7.76-prev-2311021449-main 119 11/2/2023
1.7.76-prev-2311012343-main 126 11/1/2023
1.7.76-prev-2311012314-main 129 11/1/2023
1.7.76-prev-2311012314-ext-... 98 11/1/2023
1.7.76-prev-231031150-ext-f... 107 10/31/2023
1.7.76-prev-2310301549-ext-... 138 10/30/2023
1.7.76-prev-2310280957-main 137 10/28/2023
1.7.76-prev-2310280956-main 121 10/28/2023
1.7.76-prev-2310271059-main 143 10/27/2023
1.7.76-prev-2310241548-main 144 10/24/2023
1.7.76-prev-231022130-main 144 10/22/2023
1.7.75 839 10/22/2023
1.7.75-prev-2310212254-main 131 10/21/2023
1.7.75-prev-2310211835-main 135 10/21/2023
1.7.75-prev-231021163-main 139 10/21/2023
1.7.75-prev-2310121838-main 252 10/12/2023
1.7.75-prev-2310121149-main 479 10/12/2023
1.7.75-prev-231010155-main 131 10/10/2023
1.7.74 1,776 10/10/2023
1.7.74-prev-2310101053-main 138 10/10/2023
1.7.74-prev-2310091858-main 131 10/9/2023
1.7.74-prev-2310090849-main 128 10/9/2023
1.7.73 267 10/9/2023
1.7.73-prev-2310081110-main 126 10/8/2023
1.7.73-prev-231008111-main 119 10/8/2023
1.7.73-prev-2310081017-main 139 10/8/2023
1.7.73-prev-231008100-main 141 10/8/2023
1.7.73-prev-2310080956-main 115 10/8/2023
1.7.73-prev-2310080917-main 139 10/8/2023
1.7.73-prev-2310071939-main 122 10/7/2023
1.7.72 514 10/7/2023
1.7.72-prev-2310071923-main 132 10/7/2023
1.7.72-prev-231006178-main 127 10/6/2023
1.7.72-prev-231006167-main 124 10/6/2023
1.7.72-prev-2310061631-main 113 10/6/2023
1.7.72-prev-2310061526-main 137 10/6/2023
1.7.72-prev-2310061333-main 156 10/6/2023
1.7.72-prev-2310051926-main 131 10/5/2023
1.7.72-prev-2310051653-main 128 10/5/2023
1.7.72-prev-231005106-main 127 10/5/2023
1.7.72-prev-231004133-main 126 10/4/2023
1.7.72-prev-2310041222-main 135 10/4/2023
1.7.72-prev-2310032119-main 137 10/3/2023
1.7.72-prev-2310032118-fgil... 119 10/3/2023
1.7.72-prev-2310031840-main 138 10/3/2023
1.7.72-prev-2310021853-main 137 10/2/2023
1.7.71 4,004 10/2/2023
1.7.71-prev-2310021827-main 120 10/2/2023
1.7.71-prev-2310021435-main 121 10/2/2023
1.7.71-prev-2310011635-main 203 10/1/2023
1.7.71-prev-2310011354-main 129 10/1/2023
1.7.71-prev-2310011345-main 128 10/1/2023
1.7.70 201 10/1/2023
1.7.70-prev-2310011336-main 128 10/1/2023
1.7.70-prev-2310011335-main 120 10/1/2023
1.7.70-prev-2310011324-main 128 10/1/2023
1.7.70-prev-2310011118-try-... 119 10/1/2023
1.7.70-prev-2310011118-main 123 10/1/2023
1.7.70-prev-2309302143-try-... 143 9/30/2023
1.7.70-prev-2309302141-try-... 111 9/30/2023
1.7.70-prev-2309302139-try-... 117 9/30/2023
1.7.70-prev-2309301923-try-... 125 9/30/2023
1.7.70-prev-2309301858-try-... 117 9/30/2023
1.7.70-prev-2309301051-try-... 121 9/30/2023
1.7.70-prev-2309281230-main 122 9/28/2023
1.7.70-prev-2309281230-fgil... 120 9/28/2023
1.7.70-prev-2309251813-try-... 144 9/25/2023
1.7.70-prev-230925161-try-m... 145 9/25/2023
1.7.70-prev-2309251213-try-... 130 9/25/2023
1.7.70-prev-2309241830-main 128 9/24/2023
1.7.70-prev-2309211820-main 127 9/21/2023
1.7.69 1,112 9/21/2023
1.7.69-prev-2309201754-main 102 9/20/2023
1.7.68 172 9/20/2023
1.7.68-prev-2309201120-main 140 9/20/2023
1.7.68-prev-2309182049-stre... 130 9/18/2023
1.7.68-prev-230918145-main 143 9/18/2023
1.7.68-prev-230918144-refac... 118 9/18/2023
1.7.68-prev-2309181059-main 112 9/18/2023
1.7.68-prev-2309180958-main 123 9/18/2023
1.7.68-prev-2309180956-open... 96 9/18/2023
1.7.68-prev-2309171718-open... 118 9/17/2023
1.7.68-prev-2309151317-main 136 9/15/2023
1.7.68-prev-2309151125-main 135 9/15/2023
1.7.68-prev-2309151111-main 126 9/15/2023
1.7.68-prev-230915091-main 120 9/15/2023
1.7.68-prev-2309150859-main 119 9/15/2023
1.7.68-prev-2309150848-for-... 101 9/15/2023
1.7.68-prev-2309150839-main 110 9/15/2023
1.7.68-prev-2309141720-main 142 9/14/2023
1.7.68-prev-2309141624-main 106 9/14/2023
1.7.68-prev-2309140951-main 130 9/14/2023
1.7.68-prev-2309132130-main 146 9/13/2023
1.7.68-prev-2309132129-main 129 9/13/2023
1.7.68-prev-2309131352-main 133 9/13/2023
1.7.67 1,682 9/11/2023
1.7.67-prev-2309111714-main 134 9/11/2023
1.7.67-prev-230908125-main 132 9/8/2023
1.7.67-prev-2309011638-main 144 9/1/2023
1.7.67-prev-2309011345-main 113 9/1/2023
1.7.67-prev-2309011325-main 117 9/1/2023
1.7.67-prev-2309011132-main 131 9/1/2023
1.7.67-prev-2309010947-main 129 9/1/2023
1.7.67-prev-230831169-main 113 8/31/2023
1.7.67-prev-230830177-main 151 8/30/2023
1.7.67-prev-230829129-main 134 8/29/2023
1.7.66 714 8/29/2023
1.7.66-prev-230829124-main 141 8/29/2023
1.7.66-prev-2308290944-main 149 8/29/2023
1.7.66-prev-230825191-main 331 8/25/2023
1.7.66-prev-2308251844-main 131 8/25/2023
1.7.66-prev-2308251828-main 137 8/25/2023
1.7.66-prev-2308251247-main 140 8/25/2023
1.7.65 291 8/25/2023
1.7.65-prev-2308251231-main 137 8/25/2023
1.7.65-prev-2308251228-main 125 8/25/2023
1.7.65-prev-2308251226-main 146 8/25/2023
1.7.65-prev-2308250947-main 134 8/25/2023
1.7.65-prev-2308241938-main 140 8/24/2023
1.7.65-prev-2308241926-main 135 8/24/2023
1.7.65-prev-2308241849-feat... 133 8/24/2023
1.7.65-prev-2308150852-main 157 8/15/2023
1.7.65-prev-2308150844-TEST... 118 8/15/2023
1.7.65-d2308141450 138 8/14/2023
1.7.65-d2308141444 150 8/14/2023
1.7.65-d2308141158 144 8/14/2023
1.7.65-d2308141150 140 8/14/2023
1.7.65-d2308141146 133 8/14/2023
1.7.65-d2308140839 140 8/14/2023
1.7.65-d2308122013 159 8/12/2023
1.7.65-d230802214 170 8/2/2023
1.7.65-d230802213 154 8/2/2023
1.7.65-d2308022035 166 8/2/2023
1.7.65-d2308022032 158 8/2/2023
1.7.65-d2307302336 153 7/30/2023
1.7.65-d2307302320 132 7/30/2023
1.7.64 1,103 7/30/2023
1.7.64-d2307302317 153 7/30/2023
1.7.64-d2307302247 169 7/30/2023
1.7.64-d2307291444 170 7/29/2023
1.7.64-d2307291441 165 7/29/2023
1.7.64-d2307291440 165 7/29/2023
1.7.64-d230728177 164 7/28/2023
1.7.64-d2307281652 156 7/28/2023
1.7.64-d2307221851 177 7/22/2023
1.7.64-d2307200948 164 7/20/2023
1.7.64-d2307200916 159 7/20/2023
1.7.64-d230720090 141 7/20/2023
1.7.64-d2307191235 174 7/19/2023
1.7.64-d230718144 183 7/18/2023
1.7.64-d230718143 166 7/18/2023
1.7.64-d230718137 161 7/18/2023
1.7.64-d2307181322 163 7/18/2023
1.7.64-d2307181313 158 7/18/2023
1.7.64-d230718130 157 7/18/2023
1.7.64-d2307181252 156 7/18/2023
1.7.64-d230718121 158 7/18/2023
1.7.64-d2307181158 163 7/18/2023
1.7.64-d2307171630 174 7/17/2023
1.7.64-d2307151446 185 7/15/2023
1.7.63 802 7/14/2023
1.7.63-d2307141132 158 7/14/2023
1.7.63-d2307121411 148 7/12/2023
1.7.62 294 7/12/2023
1.7.62-d2307120842 164 7/12/2023
1.7.62-d2307112153 162 7/11/2023
1.7.62-d2307101518 156 7/10/2023
1.7.62-d2307101423 162 7/10/2023
1.7.62-d230710142 157 7/10/2023
1.7.62-d2307101318 156 7/10/2023
1.7.61 541 7/7/2023
1.7.61-d230707173 168 7/7/2023
1.7.61-d230707170 156 7/7/2023
1.7.61-d230707119 167 7/7/2023
1.7.61-d2307071021 162 7/7/2023
1.7.61-d230706145 175 7/6/2023
1.7.61-d2307061444 160 7/6/2023
1.7.61-d2307061410 143 7/6/2023
1.7.61-d2307061334 162 7/6/2023
1.7.61-d2307061322 144 7/6/2023
1.7.61-d2307061311 154 7/6/2023
1.7.61-d2307061127 148 7/6/2023
1.7.61-d2307061047 153 7/6/2023
1.7.61-d2307060938 160 7/6/2023
1.7.60 412 7/3/2023
1.7.60-d230703103 148 7/3/2023
1.7.60-d2307030954 142 7/3/2023
1.7.59 646 6/27/2023
1.7.59-d2307030945 151 7/3/2023
1.7.59-d2307030929 149 7/3/2023
1.7.58 182 6/27/2023
1.7.57 555 6/26/2023
1.7.55 221 6/24/2023
1.7.54 332 6/21/2023
1.7.49 1,070 6/13/2023
1.7.48 561 6/12/2023
1.7.47 231 6/12/2023
1.7.46 1,009 6/6/2023
1.7.45 298 6/2/2023
1.7.44 223 6/2/2023
1.7.43 196 6/1/2023
1.7.42 349 5/31/2023
1.7.41 4,874 5/8/2023
1.7.40 2,148 5/2/2023
1.7.39 206 5/2/2023
1.7.38 324 5/1/2023
1.7.37 241 4/28/2023
1.7.36 218 4/28/2023
1.7.35 561 4/17/2023
1.7.34 442 4/10/2023
1.7.33 5,233 3/2/2023
1.7.32 1,669 2/15/2023
1.7.31 2,734 2/2/2023
1.7.30 999 1/4/2023
1.7.29 366 1/3/2023
1.7.28 343 1/3/2023
1.7.27 574 12/25/2022
1.7.26 372 12/23/2022
1.7.24 405 12/19/2022
1.7.23 347 12/19/2022
1.7.22 361 12/19/2022
1.7.21 780 12/13/2022
1.7.20 471 12/12/2022
1.7.11 647 11/30/2022
1.7.10 647 11/19/2022
1.6.76 2,587 11/14/2022
1.6.75 405 11/14/2022
1.6.74 432 11/13/2022
1.6.73 510 11/7/2022
1.6.72 403 11/7/2022
1.6.71 544 11/4/2022
1.6.70 418 11/4/2022
1.6.69 414 11/3/2022
1.6.68 401 11/3/2022
1.6.67 501 10/24/2022
1.6.66 707 10/12/2022
1.6.65 472 10/11/2022
1.6.64 741 9/26/2022
1.6.63 523 9/23/2022
1.6.62 559 9/19/2022
1.6.6 536 9/18/2022
1.6.5 786 9/17/2022
1.6.4 512 9/17/2022
1.6.3 522 9/17/2022
1.6.2 503 9/16/2022
1.6.1 527 9/16/2022
1.6.0 509 9/15/2022
1.5.9 577 9/14/2022
1.5.8 512 9/13/2022
1.5.6 514 9/11/2022
1.5.5 492 9/11/2022
1.5.4 531 9/9/2022
1.5.2 495 9/8/2022
1.5.1 526 9/8/2022
1.5.0 542 9/8/2022
1.4.3 609 8/30/2022
1.4.2 524 8/30/2022
1.4.1 498 8/29/2022
1.4.0 484 8/29/2022
1.3.91 496 8/29/2022
1.3.9 514 8/29/2022
1.3.8 495 8/28/2022
1.3.7 476 8/28/2022
1.3.6 518 8/26/2022
1.3.5 585 8/22/2022
1.3.4 478 8/22/2022
1.3.3 499 8/22/2022
1.3.2 499 8/22/2022
1.3.1 544 8/19/2022
1.3.0 710 8/1/2022
1.2.9 517 8/1/2022
1.2.8 562 7/21/2022
1.2.7 2,628 6/19/2022
1.2.6 526 6/18/2022
1.2.5 546 6/9/2022
1.2.3 633 5/30/2022
1.2.2 755 3/31/2022
1.2.1 536 3/24/2022
1.2.0 657 12/27/2021
1.1.0 1,329 12/5/2021
1.0.0-preview.211002142256 265 10/2/2021