MudBlazor.Extensions 1.7.46

There is a newer version of this package available.
See the version list below for details.
dotnet add package MudBlazor.Extensions --version 1.7.46                
NuGet\Install-Package MudBlazor.Extensions -Version 1.7.46                
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.46" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MudBlazor.Extensions --version 1.7.46                
#r "nuget: MudBlazor.Extensions, 1.7.46"                
#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=1.7.46

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

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.46 > Ensure Min or Max sizes arn't overwritten when using Resizable
  • 1.7.46 > More fluent overloads for MudExStyleBuilder
  • 1.7.42 > Add Dialog Appearance
  • 1.7.41 > Add Documentation for some static utils
  • 1.7.41 > Continue work on Taskbar and No Modal feature (still in progress)
  • 1.7.41 > Support Inline Dialogs with new Component MudExDialog
  • 1.7.41 > Bugfix on size when dialog resize is enabled
  • 1.7.40 > Event bugfix
  • 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. 
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
2.0.6-prev-2409101419-main 84 9/10/2024
2.0.6-prev-2409101324-main 65 9/10/2024
2.0.6-prev-2409101031-main 77 9/10/2024
2.0.5 514 9/10/2024
2.0.5-prev-2409101025-main 64 9/10/2024
2.0.4 356 9/2/2024
2.0.4-prev-2409021559-main 54 9/2/2024
2.0.4-prev-2409021543-main 65 9/2/2024
2.0.4-prev-2408301757-main 78 8/30/2024
2.0.4-prev-240806216-main 104 8/6/2024
2.0.3 2,078 8/6/2024
2.0.3-prev-2408060651-main 53 8/6/2024
2.0.3-prev-2407162111-main 121 7/16/2024
2.0.2 1,437 7/16/2024
2.0.2-prev-240716212-main 59 7/16/2024
2.0.1-prev-2407161734-main 73 7/16/2024
2.0.0 898 7/9/2024
2.0.0-prev-2407080832-main 97 7/8/2024
2.0.0-prev-2407080828-main 73 7/8/2024
2.0.0-prev-2407080824-for-m... 43 7/8/2024
2.0.0-prev-2407080757-for-m... 31 7/8/2024
2.0.0-prev-2407041714-for-m... 71 7/4/2024
2.0.0-prev-2407041643-for-m... 43 7/4/2024
2.0.0-prev-2407031525-for-m... 63 7/3/2024
2.0.0-prev-2407031417-for-m... 46 7/3/2024
2.0.0-prev-2407011629-for-m... 70 7/1/2024
2.0.0-prev-2406301522-for-m... 104 6/30/2024
1.7.89 1,078 6/28/2024
1.7.89-prev-2406281250-main 72 6/28/2024
1.7.88-prev-2406281119-main 67 6/28/2024
1.7.88-prev-2406271513-main 72 6/27/2024
1.7.88-prev-2406241329-main 66 6/24/2024
1.7.88-prev-2406201445-main 70 6/20/2024
1.7.88-prev-2406201321-main 56 6/20/2024
1.7.88-prev-2406200938-main 65 6/20/2024
1.7.88-prev-240619108-main 80 6/19/2024
1.7.88-prev-2406191018-main 75 6/19/2024
1.7.88-prev-2406171154-main 79 6/17/2024
1.7.88-prev-2406051024-main 113 6/5/2024
1.7.88-prev-2406050857-main 78 6/5/2024
1.7.88-prev-2406042343-main 86 6/4/2024
1.7.88-prev-2406042336-main 77 6/4/2024
1.7.88-prev-2406042253-main 71 6/4/2024
1.7.88-prev-2406041330-main 70 6/4/2024
1.7.88-prev-2406041236-main 71 6/4/2024
1.7.88-prev-240526158-main 96 5/26/2024
1.7.88-prev-2405261413-main 93 5/26/2024
1.7.88-prev-2405141254-main 94 5/14/2024
1.7.88-prev-2405061530-main 156 5/6/2024
1.7.88-prev-2405020855-main 67 5/2/2024
1.7.88-prev-240429142-main 83 4/29/2024
1.7.88-prev-240425199-main 87 4/25/2024
1.7.88-prev-2404231313-main 88 4/23/2024
1.7.87 11,767 4/23/2024
1.7.87-prev-240423135-main 75 4/23/2024
1.7.87-prev-2404231253-main 80 4/23/2024
1.7.87-prev-2404011353-main 182 4/1/2024
1.7.87-prev-2404011345-main 81 4/1/2024
1.7.87-prev-2404011246-main 87 4/1/2024
1.7.87-prev-2403220933-main 101 3/22/2024
1.7.86 5,688 3/22/2024
1.7.86-prev-2403220928-main 77 3/22/2024
1.7.86-prev-2403171653-main 65 3/17/2024
1.7.86-prev-2403132130-main 73 3/13/2024
1.7.86-prev-2403130931-main 86 3/13/2024
1.7.86-prev-2403081028-main 89 3/8/2024
1.7.85 3,788 3/8/2024
1.7.85-prev-2403081025-main 68 3/8/2024
1.7.85-prev-2403081022-main 69 3/8/2024
1.7.85-prev-2403041240-main 157 3/4/2024
1.7.85-prev-240222126-main 124 2/22/2024
1.7.85-prev-2402221216-main 84 2/22/2024
1.7.85-prev-2402221115-main 100 2/22/2024
1.7.85-prev-2402190751-main 104 2/19/2024
1.7.85-prev-2402190729-main 78 2/19/2024
1.7.85-prev-2402190713-main 75 2/19/2024
1.7.84 1,483 2/18/2024
1.7.84-prev-2402180010-main 77 2/18/2024
1.7.84-prev-2402172351-main 95 2/17/2024
1.7.84-prev-2402172339-main 83 2/17/2024
1.7.84-prev-2402091223-main 134 2/9/2024
1.7.84-prev-240209113-main 88 2/9/2024
1.7.83 5,008 1/22/2024
1.7.83-prev-2401221429-main 81 1/22/2024
1.7.83-prev-2401121446-main 295 1/12/2024
1.7.83-prev-2401101129-main 94 1/10/2024
1.7.83-prev-2401092213-main 99 1/9/2024
1.7.82 1,705 1/7/2024
1.7.81 187 1/5/2024
1.7.81-prev-2401051055-main 106 1/5/2024
1.7.81-prev-2401051015-main 112 1/5/2024
1.7.81-prev-2401041559-main 111 1/4/2024
1.7.81-prev-2401041556-main 101 1/4/2024
1.7.81-prev-2401041328-main 115 1/4/2024
1.7.81-prev-2401040943-main 118 1/4/2024
1.7.81-prev-231229177-main 133 12/29/2023
1.7.81-prev-2312291458-main 104 12/29/2023
1.7.81-prev-2312291325-main 103 12/29/2023
1.7.81-prev-2312291316-main 110 12/29/2023
1.7.80 979 12/27/2023
1.7.80-prev-2312221335-main 93 12/22/2023
1.7.80-prev-2312221224-main 95 12/22/2023
1.7.80-prev-231222116-main 91 12/22/2023
1.7.80-prev-2312221146-main 96 12/22/2023
1.7.80-prev-231221168-main 79 12/21/2023
1.7.80-prev-2312191356-main 94 12/19/2023
1.7.80-prev-2312190726-main 99 12/19/2023
1.7.79 1,783 12/19/2023
1.7.79-prev-2312190722-main 79 12/19/2023
1.7.79-prev-2312190720-main 100 12/19/2023
1.7.79-prev-2312190625-main 95 12/19/2023
1.7.79-prev-231218186-main 126 12/18/2023
1.7.79-prev-2312180725-main 94 12/18/2023
1.7.79-prev-2312171656-main 97 12/17/2023
1.7.78 227 12/17/2023
1.7.78-prev-2312171653-main 91 12/17/2023
1.7.78-prev-231208136-main 120 12/8/2023
1.7.78-prev-2312081239-main 92 12/8/2023
1.7.78-prev-231125227-main 163 11/25/2023
1.7.78-prev-231125183-main 92 11/25/2023
1.7.78-prev-2311251743-main 86 11/25/2023
1.7.78-prev-2311231527-main 101 11/23/2023
1.7.78-prev-2311231154-main 84 11/23/2023
1.7.78-prev-2311231145-main 83 11/23/2023
1.7.77 2,242 11/23/2023
1.7.77-prev-2311201432-main 85 11/20/2023
1.7.77-prev-2311201358-main 62 11/20/2023
1.7.77-prev-2311190052-main 91 11/19/2023
1.7.77-prev-2311171311-main 92 11/17/2023
1.7.77-prev-2311161753-main 79 11/16/2023
1.7.77-prev-2311161216-main 76 11/16/2023
1.7.77-prev-2311121951-main 96 11/12/2023
1.7.77-prev-2311121934-main 77 11/12/2023
1.7.77-prev-2311121925-main 72 11/12/2023
1.7.77-prev-2311091211-main 80 11/9/2023
1.7.77-prev-2311091156-main 77 11/9/2023
1.7.77-prev-2311060859-main 97 11/6/2023
1.7.77-prev-2311060848-main 81 11/6/2023
1.7.77-prev-2311050019-main 88 11/5/2023
1.7.77-prev-2311041315-main 57 11/4/2023
1.7.76 2,941 11/4/2023
1.7.76-prev-231104016-main 75 11/4/2023
1.7.76-prev-2311032342-main 63 11/3/2023
1.7.76-prev-2311031311-main 78 11/3/2023
1.7.76-prev-2311031256-main 75 11/3/2023
1.7.76-prev-2311031251-main 74 11/3/2023
1.7.76-prev-2311031027-main 79 11/3/2023
1.7.76-prev-2311022342-main 94 11/2/2023
1.7.76-prev-2311021936-main 82 11/2/2023
1.7.76-prev-231102154-main 72 11/2/2023
1.7.76-prev-2311021449-main 79 11/2/2023
1.7.76-prev-2311012343-main 84 11/1/2023
1.7.76-prev-2311012314-main 85 11/1/2023
1.7.76-prev-2311012314-ext-... 74 11/1/2023
1.7.76-prev-231031150-ext-f... 68 10/31/2023
1.7.76-prev-2310301549-ext-... 94 10/30/2023
1.7.76-prev-2310280957-main 98 10/28/2023
1.7.76-prev-2310280956-main 74 10/28/2023
1.7.76-prev-2310271059-main 94 10/27/2023
1.7.76-prev-2310241548-main 94 10/24/2023
1.7.76-prev-231022130-main 112 10/22/2023
1.7.75 776 10/22/2023
1.7.75-prev-2310212254-main 92 10/21/2023
1.7.75-prev-2310211835-main 91 10/21/2023
1.7.75-prev-231021163-main 90 10/21/2023
1.7.75-prev-2310121838-main 217 10/12/2023
1.7.75-prev-2310121149-main 438 10/12/2023
1.7.75-prev-231010155-main 90 10/10/2023
1.7.74 1,710 10/10/2023
1.7.74-prev-2310101053-main 79 10/10/2023
1.7.74-prev-2310091858-main 86 10/9/2023
1.7.74-prev-2310090849-main 85 10/9/2023
1.7.73 209 10/9/2023
1.7.73-prev-2310081110-main 88 10/8/2023
1.7.73-prev-231008111-main 75 10/8/2023
1.7.73-prev-2310081017-main 93 10/8/2023
1.7.73-prev-231008100-main 94 10/8/2023
1.7.73-prev-2310080956-main 76 10/8/2023
1.7.73-prev-2310080917-main 87 10/8/2023
1.7.73-prev-2310071939-main 89 10/7/2023
1.7.72 458 10/7/2023
1.7.72-prev-2310071923-main 80 10/7/2023
1.7.72-prev-231006178-main 90 10/6/2023
1.7.72-prev-231006167-main 89 10/6/2023
1.7.72-prev-2310061631-main 75 10/6/2023
1.7.72-prev-2310061526-main 96 10/6/2023
1.7.72-prev-2310061333-main 114 10/6/2023
1.7.72-prev-2310051926-main 93 10/5/2023
1.7.72-prev-2310051653-main 81 10/5/2023
1.7.72-prev-231005106-main 80 10/5/2023
1.7.72-prev-231004133-main 81 10/4/2023
1.7.72-prev-2310041222-main 83 10/4/2023
1.7.72-prev-2310032119-main 102 10/3/2023
1.7.72-prev-2310032118-fgil... 77 10/3/2023
1.7.72-prev-2310031840-main 98 10/3/2023
1.7.72-prev-2310021853-main 92 10/2/2023
1.7.71 2,059 10/2/2023
1.7.71-prev-2310021827-main 80 10/2/2023
1.7.71-prev-2310021435-main 82 10/2/2023
1.7.71-prev-2310011635-main 157 10/1/2023
1.7.71-prev-2310011354-main 85 10/1/2023
1.7.71-prev-2310011345-main 84 10/1/2023
1.7.70 155 10/1/2023
1.7.70-prev-2310011336-main 72 10/1/2023
1.7.70-prev-2310011335-main 74 10/1/2023
1.7.70-prev-2310011324-main 82 10/1/2023
1.7.70-prev-2310011118-try-... 81 10/1/2023
1.7.70-prev-2310011118-main 80 10/1/2023
1.7.70-prev-2309302143-try-... 106 9/30/2023
1.7.70-prev-2309302141-try-... 81 9/30/2023
1.7.70-prev-2309302139-try-... 78 9/30/2023
1.7.70-prev-2309301923-try-... 85 9/30/2023
1.7.70-prev-2309301858-try-... 92 9/30/2023
1.7.70-prev-2309301051-try-... 86 9/30/2023
1.7.70-prev-2309281230-main 96 9/28/2023
1.7.70-prev-2309281230-fgil... 76 9/28/2023
1.7.70-prev-2309251813-try-... 101 9/25/2023
1.7.70-prev-230925161-try-m... 94 9/25/2023
1.7.70-prev-2309251213-try-... 87 9/25/2023
1.7.70-prev-2309241830-main 85 9/24/2023
1.7.70-prev-2309211820-main 83 9/21/2023
1.7.69 987 9/21/2023
1.7.69-prev-2309201754-main 72 9/20/2023
1.7.68 132 9/20/2023
1.7.68-prev-2309201120-main 79 9/20/2023
1.7.68-prev-2309182049-stre... 92 9/18/2023
1.7.68-prev-230918145-main 95 9/18/2023
1.7.68-prev-230918144-refac... 82 9/18/2023
1.7.68-prev-2309181059-main 80 9/18/2023
1.7.68-prev-2309180958-main 83 9/18/2023
1.7.68-prev-2309180956-open... 73 9/18/2023
1.7.68-prev-2309171718-open... 92 9/17/2023
1.7.68-prev-2309151317-main 88 9/15/2023
1.7.68-prev-2309151125-main 79 9/15/2023
1.7.68-prev-2309151111-main 86 9/15/2023
1.7.68-prev-230915091-main 82 9/15/2023
1.7.68-prev-2309150859-main 74 9/15/2023
1.7.68-prev-2309150848-for-... 69 9/15/2023
1.7.68-prev-2309150839-main 82 9/15/2023
1.7.68-prev-2309141720-main 96 9/14/2023
1.7.68-prev-2309141624-main 62 9/14/2023
1.7.68-prev-2309140951-main 82 9/14/2023
1.7.68-prev-2309132130-main 93 9/13/2023
1.7.68-prev-2309132129-main 88 9/13/2023
1.7.68-prev-2309131352-main 95 9/13/2023
1.7.67 1,018 9/11/2023
1.7.67-prev-2309111714-main 91 9/11/2023
1.7.67-prev-230908125-main 91 9/8/2023
1.7.67-prev-2309011638-main 104 9/1/2023
1.7.67-prev-2309011345-main 70 9/1/2023
1.7.67-prev-2309011325-main 79 9/1/2023
1.7.67-prev-2309011132-main 83 9/1/2023
1.7.67-prev-2309010947-main 83 9/1/2023
1.7.67-prev-230831169-main 76 8/31/2023
1.7.67-prev-230830177-main 105 8/30/2023
1.7.67-prev-230829129-main 93 8/29/2023
1.7.66 655 8/29/2023
1.7.66-prev-230829124-main 95 8/29/2023
1.7.66-prev-2308290944-main 100 8/29/2023
1.7.66-prev-230825191-main 300 8/25/2023
1.7.66-prev-2308251844-main 85 8/25/2023
1.7.66-prev-2308251828-main 94 8/25/2023
1.7.66-prev-2308251247-main 82 8/25/2023
1.7.65 222 8/25/2023
1.7.65-prev-2308251231-main 80 8/25/2023
1.7.65-prev-2308251228-main 88 8/25/2023
1.7.65-prev-2308251226-main 96 8/25/2023
1.7.65-prev-2308250947-main 92 8/25/2023
1.7.65-prev-2308241938-main 92 8/24/2023
1.7.65-prev-2308241926-main 86 8/24/2023
1.7.65-prev-2308241849-feat... 85 8/24/2023
1.7.65-prev-2308150852-main 103 8/15/2023
1.7.65-prev-2308150844-TEST... 72 8/15/2023
1.7.65-d2308141450 94 8/14/2023
1.7.65-d2308141444 94 8/14/2023
1.7.65-d2308141158 97 8/14/2023
1.7.65-d2308141150 97 8/14/2023
1.7.65-d2308141146 88 8/14/2023
1.7.65-d2308140839 100 8/14/2023
1.7.65-d2308122013 118 8/12/2023
1.7.65-d230802214 123 8/2/2023
1.7.65-d230802213 114 8/2/2023
1.7.65-d2308022035 122 8/2/2023
1.7.65-d2308022032 109 8/2/2023
1.7.65-d2307302336 109 7/30/2023
1.7.65-d2307302320 94 7/30/2023
1.7.64 1,007 7/30/2023
1.7.64-d2307302317 96 7/30/2023
1.7.64-d2307302247 115 7/30/2023
1.7.64-d2307291444 124 7/29/2023
1.7.64-d2307291441 110 7/29/2023
1.7.64-d2307291440 111 7/29/2023
1.7.64-d230728177 122 7/28/2023
1.7.64-d2307281652 108 7/28/2023
1.7.64-d2307221851 130 7/22/2023
1.7.64-d2307200948 119 7/20/2023
1.7.64-d2307200916 111 7/20/2023
1.7.64-d230720090 94 7/20/2023
1.7.64-d2307191235 131 7/19/2023
1.7.64-d230718144 128 7/18/2023
1.7.64-d230718143 114 7/18/2023
1.7.64-d230718137 112 7/18/2023
1.7.64-d2307181322 116 7/18/2023
1.7.64-d2307181313 108 7/18/2023
1.7.64-d230718130 112 7/18/2023
1.7.64-d2307181252 101 7/18/2023
1.7.64-d230718121 112 7/18/2023
1.7.64-d2307181158 111 7/18/2023
1.7.64-d2307171630 125 7/17/2023
1.7.64-d2307151446 134 7/15/2023
1.7.63 696 7/14/2023
1.7.63-d2307141132 99 7/14/2023
1.7.63-d2307121411 106 7/12/2023
1.7.62 236 7/12/2023
1.7.62-d2307120842 111 7/12/2023
1.7.62-d2307112153 113 7/11/2023
1.7.62-d2307101518 113 7/10/2023
1.7.62-d2307101423 116 7/10/2023
1.7.62-d230710142 102 7/10/2023
1.7.62-d2307101318 103 7/10/2023
1.7.61 456 7/7/2023
1.7.61-d230707173 113 7/7/2023
1.7.61-d230707170 107 7/7/2023
1.7.61-d230707119 129 7/7/2023
1.7.61-d2307071021 119 7/7/2023
1.7.61-d230706145 128 7/6/2023
1.7.61-d2307061444 104 7/6/2023
1.7.61-d2307061410 100 7/6/2023
1.7.61-d2307061334 106 7/6/2023
1.7.61-d2307061322 95 7/6/2023
1.7.61-d2307061311 102 7/6/2023
1.7.61-d2307061127 101 7/6/2023
1.7.61-d2307061047 113 7/6/2023
1.7.61-d2307060938 113 7/6/2023
1.7.60 354 7/3/2023
1.7.60-d230703103 107 7/3/2023
1.7.60-d2307030954 94 7/3/2023
1.7.59 590 6/27/2023
1.7.59-d2307030945 106 7/3/2023
1.7.59-d2307030929 106 7/3/2023
1.7.58 131 6/27/2023
1.7.57 477 6/26/2023
1.7.55 170 6/24/2023
1.7.54 239 6/21/2023
1.7.49 955 6/13/2023
1.7.48 507 6/12/2023
1.7.47 165 6/12/2023
1.7.46 937 6/6/2023
1.7.45 240 6/2/2023
1.7.44 148 6/2/2023
1.7.43 145 6/1/2023
1.7.42 287 5/31/2023
1.7.41 2,565 5/8/2023
1.7.40 1,892 5/2/2023
1.7.39 151 5/2/2023
1.7.38 263 5/1/2023
1.7.37 192 4/28/2023
1.7.36 166 4/28/2023
1.7.35 478 4/17/2023
1.7.34 396 4/10/2023
1.7.33 4,063 3/2/2023
1.7.32 1,235 2/15/2023
1.7.31 2,645 2/2/2023
1.7.30 802 1/4/2023
1.7.29 304 1/3/2023
1.7.28 278 1/3/2023
1.7.27 504 12/25/2022
1.7.26 310 12/23/2022
1.7.24 348 12/19/2022
1.7.23 285 12/19/2022
1.7.22 295 12/19/2022
1.7.21 713 12/13/2022
1.7.20 381 12/12/2022
1.7.11 565 11/30/2022
1.7.10 570 11/19/2022
1.6.76 2,491 11/14/2022
1.6.75 316 11/14/2022
1.6.74 352 11/13/2022
1.6.73 451 11/7/2022
1.6.72 344 11/7/2022
1.6.71 483 11/4/2022
1.6.70 349 11/4/2022
1.6.69 351 11/3/2022
1.6.68 336 11/3/2022
1.6.67 428 10/24/2022
1.6.66 633 10/12/2022
1.6.65 397 10/11/2022
1.6.64 669 9/26/2022
1.6.63 446 9/23/2022
1.6.62 477 9/19/2022
1.6.6 471 9/18/2022
1.6.5 718 9/17/2022
1.6.4 440 9/17/2022
1.6.3 451 9/17/2022
1.6.2 443 9/16/2022
1.6.1 466 9/16/2022
1.6.0 445 9/15/2022
1.5.9 502 9/14/2022
1.5.8 442 9/13/2022
1.5.6 455 9/11/2022
1.5.5 432 9/11/2022
1.5.4 461 9/9/2022
1.5.2 433 9/8/2022
1.5.1 443 9/8/2022
1.5.0 467 9/8/2022
1.4.3 550 8/30/2022
1.4.2 442 8/30/2022
1.4.1 436 8/29/2022
1.4.0 417 8/29/2022
1.3.91 429 8/29/2022
1.3.9 449 8/29/2022
1.3.8 424 8/28/2022
1.3.7 403 8/28/2022
1.3.6 442 8/26/2022
1.3.5 515 8/22/2022
1.3.4 412 8/22/2022
1.3.3 438 8/22/2022
1.3.2 436 8/22/2022
1.3.1 469 8/19/2022
1.3.0 641 8/1/2022
1.2.9 448 8/1/2022
1.2.8 491 7/21/2022
1.2.7 2,548 6/19/2022
1.2.6 451 6/18/2022
1.2.5 471 6/9/2022
1.2.3 544 5/30/2022
1.2.2 679 3/31/2022
1.2.1 458 3/24/2022
1.2.0 580 12/27/2021
1.1.0 721 12/5/2021
1.0.0-preview.211002142256 193 10/2/2021