umbraco-packages - Our.Umbraco.Slimsy 3.0.0-beta5

Please follow the instructions on the project page http://our.umbraco.org/projects/website-utilities/slimsy

PM> Install-Package Our.Umbraco.Slimsy -Version 3.0.0-beta5 -Source https://www.myget.org/F/umbraco-packages/api/v3/index.json

Copy to clipboard

> nuget.exe install Our.Umbraco.Slimsy -Version 3.0.0-beta5 -Source https://www.myget.org/F/umbraco-packages/api/v3/index.json

Copy to clipboard

> dotnet add package Our.Umbraco.Slimsy --version 3.0.0-beta5 --source https://www.myget.org/F/umbraco-packages/api/v3/index.json

Copy to clipboard
<PackageReference Include="Our.Umbraco.Slimsy" Version="3.0.0-beta5" />
Copy to clipboard
source https://www.myget.org/F/umbraco-packages/api/v3/index.json

nuget Our.Umbraco.Slimsy  ~> 3.0.0-beta5
Copy to clipboard

> choco install Our.Umbraco.Slimsy --version 3.0.0-beta5 --source https://www.myget.org/F/umbraco-packages/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "umbraco-packages" -SourceLocation "https://www.myget.org/F/umbraco-packages/api/v2"
Install-Module -Name "Our.Umbraco.Slimsy" -RequiredVersion "3.0.0-beta5" -Repository "umbraco-packages" -AllowPreRelease
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following legacy symbol server URL: https://www.myget.org/F/umbraco-packages/symbols/


Slimsy v2

Effortless Responsive & Lazy Images with LazySizes and Umbraco

Slimsy v2 is not compatible with Slimsy v1 at all, if you upgrade you will have to refactor all of your code!

Release Downloads

NuGet Package: NuGet release

Umbraco Package: Our Umbraco project page

Prerelease Downloads

NuGet Package: MyGet build

Umbraco Package (zip file): AppVeyor Artifacts

Build status

Note Slimsy v2.0.0+ requires Umbraco v7.6.0+

LazySizes.js used in conjunction with ImageProcessor.Web and the built-in Umbraco Image Cropper will make your responsive websites images both adaptive and "retina" quality (if supported by the client browser), the images are also be lazy loaded.

Slimsy includes lazysizes.min.js and picturefill.min.js and some helper methods.

Implementing post package installation

1. Add lazysizes.min.js & picturefill.min.js to your pages

In your master template add the Javascript files

<script src="/scripts/picturefill.min.js"></script>
<script src="/scripts/lazysizes.min.js" async=""></script>

You can of course bundle these together. If you don't already have JavaScript bundling in place you should take a look at the Optimus package, it will allow you to bundle them together in minutes.

2. Ensure all img elements are set to display: block or display: inline-block;

e.g.

img {
    display:block;
}

3. Adjust your image elements, adding data-srcset, data-src, sizes="auto" & class="lazyload" attributes

Use the GetSrcSetUrls UrlHelper extension method to generate your data-srcset attributes. For these methods to function correctly your image property types should use the built-in Image Cropper.

Url.GetSrcSetUrls(publishedContent, int width, int height)

Use this method for setting the crop dimensions in your Razor code, assumes your image cropper property alias is "umbracoFile"

e.g. An initial image size of 270 x 161. This example is looping pages, each page has a media picker with property alias "Image"

@foreach (var feature in featuredPages)
{
    var featureImage = Umbraco.TypedMedia(feature.GetPropertyValue<int>("image"));
    <div class="3u">
        <!-- Feature -->
        <section class="is-feature">
            <img src="@Url.GetCropUrl(featureImage, 270, 161, quality:30, furtherOptions:"&format=auto")" data-srcset="@Url.GetSrcSetUrls(featureImage, 270, 161)" data-src="@Url.GetCropUrl(featureImage, 270, 161)" sizes="auto" class="lazyload" />
        </section>
    </div>
}

This example uses the LQIP (low quality image place holder) technique.

Url.GetSrcSetUrls(publishedContent, int width, int height, int quality)

Url.GetSrcSetUrls(publishedContent, int width, int height, string propertyAlias)

Url.GetSrcSetUrls(publishedContent, int width, int height, string propertyAlias, string outputFormat, int quality)

Url.GetSrcSetUrls(publishedContent, int width, int height, ImageCropMode? imageCropMode, string outputFormat)

Url.GetSrcSetUrls(publishedContent, AspectRatio aspectRatio)

Slimsy v2 allows you to define a predefined ratio for your image so you don't need to work out the math associated with it, first you instantiate a new built in class of AspectRatio and pass in two integer values, this will crop the image(s) to the desired ratio.

@foreach (var feature in featuredPages)
{
    var ratio = new AspectRatio(16, 9);
    <div class="3u">
        <section class="is-feature">
            @if (feature.HasValue("image"))
            {
                var featureImage = Umbraco.TypedMedia(feature.GetPropertyValue<int>("image"));
                <a href="@feature.Url" class="image image-full">
                    <img data-srcset="@Url.GetSrcSetUrls(featureImage, ratio)" data-src="@Url.GetCropUrl(featureImage, 270, 161)" sizes="auto" class="lazyload" />
                </a>
            }
            <h3><a href="@feature.Url">@feature.Name</a></h3>
            @Umbraco.Truncate(feature.GetPropertyValue<string>("bodyText"), 100)
        </section>
    </div>
}

Url.GetSrcSetUrls(publishedContent, string cropAlias)

Url.GetSrcSetUrls(publishedContent, string cropAlias, string propertyAlias)

Use this method when you want to use a predefined crop, assumes your image cropper property alias is "umbracoFile".

@foreach (var feature in featuredPages)
{
    <div class="3u">
        <section class="is-feature">
            @if (feature.HasValue("image"))
            {
                var featureImage = Umbraco.TypedMedia(feature.GetPropertyValue<int>("image"));
                <a href="@feature.Url" class="image image-full">
                    <img data-srcset="@Url.GetSrcSetUrls(featureImage, "home", "umbracoFile")" data-src="@Url.GetCropUrl(featureImage, "umbracoFile", "home")" sizes="auto" class="lazyload"/>
                </a>
            }
            <h3><a href="@feature.Url">@feature.Name</a></h3>
            @Umbraco.Truncate(feature.GetPropertyValue<string>("bodyText"), 100)
        </section>
    </div>
}

Url.GetSrcSetUrls(publishedContent, string cropAlias, string propertyAlias, string outputFormat)

4 (optional). Adjust the rendering of your TinyMce Richtext editors

Html.ConvertImgToSrcSet(IPublishedContent publishedContent, string propertyAlias, bool generateLqip, bool removeStyleAttribute, bool roundWidthHeight)

Use this method to convert images entered into TinyMce Rich Text editors to use img source set using generated paths

@Html.ConvertImgToSrcSet(Model.Content, "bodyText", true, true)

Html.ConvertImgToSrcSet(string html, bool generateLqip, bool removeStyleAttribute, bool removeUdiAttribute)

NOTE this method is obsolete in Slimsy v2.1+, use the above method instead

Html.ConvertImgToSrcSet(IHtmlString html, bool generateLqip, bool removeStyleAttribute, bool removeUdiAttribute)

NOTE this method is obsolete in Slimsy v2.1+, use the above method instead

Using <picture> element

Below is an example of how to use the <picture> element to provide automated WebP versions of your images using the ImageProcessor WebP plugin, this example also implements a optional LQIP image.

foreach (var caseStudyImage in caseStudyImagesCollection)
{
    var imgSrcSet = Url.GetSrcSetUrls(caseStudyImage, 650, 0);
    var imgSrcSetWebP = Url.GetSrcSetUrls(caseStudyImage, 650, 0, Constants.Conventions.Media.File, "webp", quality:70);

    var imgSrc = Url.GetCropUrl(caseStudyImage, 650, 0);
    var imgLqip = Url.GetCropUrl(caseStudyImage, 650, 0, quality: 30, furtherOptions: "&format=auto");

    <div class="picture-box">
        <picture>
            <!--[if IE 9]><video style="display: none"><![endif]-->
            <source data-srcset="@imgSrcSetWebP" srcset="@imgLqip" type="image/webp" data-sizes="auto"/>
            <source data-srcset="@imgSrcSet" srcset="@imgLqip" type="image/jpeg" data-sizes="auto"/>
            <!--[if IE 9]></video><![endif]-->
            <img
                src="@imgLqip"
                data-src="@imgSrc"
                class="lazyload"
                data-sizes="auto"
                alt="@caseStudyImage.Name" />
        </picture>
    </div>
}

Advanced Options

You can specify the default output format for all images.

<add key="Slimsy:Format" value="jpg"/>

You can specify the default background color by added another appsetting to web.config. As an example this setting is used if ImageProcessor is converting a png to a jpg and it as some transparency.

<add key="Slimsy:BGColor" value="fff"/>

You can specify the default quality for all images, unless specified via helper.

<add key="Slimsy:DefaultQuality" value="90"/>

You can specify the max width for the generated srcset sizes.

<add key="Slimsy:MaxWidth" value="2048"/>

You can specify the width step for the generated srcset sizes.

<add key="Slimsy:WidthStep" value="160"/>

Lazysizes.js

Lazysizes.js is awesome and it's what makes Slimsy v2 so easy to implement. If you need to find out more information about it or how to hook into it's Javascript events be sure to check out it's GitHub

Razor Helper

It may be useful to use a Razor Helper to render img or picture elements, there is an reusable example included in the test site which can be adapted to your own requirement. You can find it here and see it in use here

Test Site & Source Code

A test site is included in the solution, the username and password for Umbraco are admin/password. By default the test site is configured to use full IIS (due to IIS Express SQL CE persistence issue) on the domain slimsy.local, you can change it to use IIS Express if you prefer.

Visual Studio 2015 is required for compiling the source code

Credits and references

This project includes LazySizes and Picturefill Both projects are MIT licensed.

Without the amazing ImageProcessor this package wouldn't exist, so many thanks go to James for creating ImageProcessor!

Many thanks to Douglas Robar for naming Slimsy.

Change log

Here

  • Any 0.0
    • UmbracoCms.Core (>= 8.6.0 && < 8.99999.0)
    • UmbracoCms.Web (>= 8.6.0 && < 8.99999.0)
  • .NETFramework 4.7.2: 4.7.2.0

                        
Assembly Assembly hash Match
/lib/net472/slimsy.dll 9a106b3618944022894c5dd4bb69d8001

Owners

Jeavon Leopold

Authors

Jeavon Leopold, Marc Stöcker, William Phillips

Project URL

https://github.com/Jeavon/Slimsy

License

MIT

Tags

umbraco

Info

28106 total downloads
127 downloads for version 3.0.0-beta5
Download (22.13 KB)
Download legacy symbols (34.47 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
7.1.0 103.09 KB Tue, 17 Mar 2026 16:41:39 GMT 33
7.1.0-alpha.2 103.13 KB Tue, 17 Mar 2026 16:19:29 GMT 31
7.1.0-alpha.1 103.03 KB Sat, 14 Feb 2026 12:23:03 GMT 37
7.0.0 103.05 KB Mon, 12 Jan 2026 12:35:17 GMT 51
7.0.0-alpha.5 103.11 KB Mon, 12 Jan 2026 12:28:15 GMT 42
7.0.0-alpha.4 103.05 KB Fri, 19 Dec 2025 17:30:38 GMT 41
6.0.5-alpha.639 101.85 KB Mon, 12 Jan 2026 11:51:52 GMT 44
6.0.5-alpha.611 101.8 KB Sat, 09 Aug 2025 13:48:19 GMT 118
6.0.5-alpha.609 101.79 KB Sat, 09 Aug 2025 13:45:30 GMT 115
6.0.4-alpha.603 101.79 KB Fri, 08 Aug 2025 16:51:01 GMT 120
6.0.4-alpha.602 101.78 KB Wed, 30 Jul 2025 14:50:31 GMT 126
6.0.4-alpha.601 101.77 KB Fri, 13 Jun 2025 12:13:13 GMT 127
6.0.3-alpha.594 101.79 KB Fri, 13 Jun 2025 12:01:12 GMT 135
6.0.3-alpha.593 101.78 KB Fri, 13 Jun 2025 08:50:35 GMT 148
6.0.3-alpha.590 101.78 KB Thu, 12 Jun 2025 15:33:51 GMT 129
6.0.3-alpha.583 101.56 KB Thu, 29 May 2025 17:40:10 GMT 124
6.0.3-alpha.582 101.56 KB Thu, 29 May 2025 17:28:30 GMT 113
6.0.3-alpha.578 101.5 KB Tue, 06 May 2025 15:46:44 GMT 134
6.0.2-alpha.575 101.5 KB Wed, 30 Apr 2025 09:59:33 GMT 153
6.0.2-alpha.572 100.56 KB Thu, 25 Jul 2024 11:38:46 GMT 128
6.0.1-alpha.569 100.58 KB Thu, 25 Jul 2024 10:40:16 GMT 135
6.0.1-alpha.568 100.57 KB Thu, 25 Jul 2024 10:33:40 GMT 123
6.0.1-alpha.567 100.57 KB Thu, 25 Jul 2024 10:20:16 GMT 121
6.0.1-alpha.564 100.55 KB Mon, 17 Jun 2024 08:27:36 GMT 144
6.0.1-alpha.563 100.55 KB Mon, 17 Jun 2024 08:24:36 GMT 128
6.0.1-alpha.562 100.46 KB Thu, 30 May 2024 18:45:13 GMT 139
6.0.0 100.43 KB Thu, 30 May 2024 13:37:00 GMT 127
6.0.0-beta3.558 100.45 KB Thu, 30 May 2024 10:40:34 GMT 157
6.0.0-beta3.555 100.62 KB Thu, 30 May 2024 10:27:35 GMT 140
6.0.0-beta3.552 100.63 KB Thu, 23 May 2024 15:10:38 GMT 128
6.0.0-beta3.551 100.58 KB Wed, 08 May 2024 14:18:34 GMT 137
6.0.0-beta3.549 100.59 KB Wed, 08 May 2024 12:50:54 GMT 150
6.0.0-beta2.547 100.58 KB Wed, 08 May 2024 12:06:20 GMT 143
6.0.0-beta2.543 100.59 KB Fri, 03 May 2024 12:10:40 GMT 129
6.0.0-beta2.538 100.2 KB Thu, 18 Apr 2024 16:06:00 GMT 134
6.0.0-beta2.537 100.2 KB Thu, 18 Apr 2024 14:10:10 GMT 125
6.0.0-beta2 100.58 KB Wed, 08 May 2024 12:44:50 GMT 127
6.0.0-beta1.535 100.2 KB Thu, 18 Apr 2024 13:54:25 GMT 128
6.0.0-beta1 100.19 KB Thu, 18 Apr 2024 13:59:19 GMT 121
6.0.0-alpha.532 100.2 KB Thu, 18 Apr 2024 11:58:03 GMT 126
6.0.0-alpha.531 100.18 KB Thu, 18 Apr 2024 11:44:09 GMT 124
5.2.0 102.87 KB Wed, 25 Feb 2026 15:29:08 GMT 30
5.2.0-alpha.2 102.91 KB Fri, 20 Feb 2026 09:15:30 GMT 32
5.2.0-alpha.1 102.92 KB Sat, 14 Feb 2026 17:45:00 GMT 33
5.1.5-alpha.658 102.71 KB Sat, 14 Feb 2026 17:40:19 GMT 24
5.1.5-alpha.657 102.68 KB Sat, 14 Feb 2026 17:37:06 GMT 35
5.1.5-alpha.656 102.68 KB Sat, 14 Feb 2026 17:33:02 GMT 38
5.1.5-alpha.655 102.68 KB Sat, 14 Feb 2026 13:32:30 GMT 37
5.1.5-alpha.654 102.68 KB Sat, 14 Feb 2026 13:29:53 GMT 32
5.1.5-alpha.653 102.68 KB Sat, 14 Feb 2026 13:21:34 GMT 36
5.1.5-alpha.652 102.68 KB Sat, 14 Feb 2026 13:16:26 GMT 40
5.1.5-alpha.651 102.68 KB Sat, 14 Feb 2026 13:13:39 GMT 36
5.1.5-alpha.650 102.68 KB Sat, 14 Feb 2026 13:03:29 GMT 44
5.1.5-alpha.649 102.7 KB Sat, 14 Feb 2026 13:01:05 GMT 39
5.1.5-alpha.613 102.7 KB Sun, 07 Dec 2025 12:38:10 GMT 49
5.1.5-alpha.610 102.11 KB Sat, 09 Aug 2025 13:46:21 GMT 124
5.1.4-alpha.604 102.12 KB Fri, 08 Aug 2025 16:52:58 GMT 97
5.1.4-alpha.600 102.09 KB Fri, 13 Jun 2025 12:11:43 GMT 119
5.1.3-alpha.599 102.09 KB Fri, 13 Jun 2025 12:10:22 GMT 129
5.1.3-alpha.580 102.1 KB Thu, 29 May 2025 13:49:54 GMT 98
5.1.3-alpha.550 101.12 KB Wed, 08 May 2024 14:17:02 GMT 137
5.1.3-alpha.546 101.12 KB Wed, 08 May 2024 10:14:42 GMT 119
5.1.2-alpha.542 101.12 KB Fri, 03 May 2024 11:31:17 GMT 120
5.1.2-alpha.541 101.15 KB Fri, 03 May 2024 11:03:45 GMT 112
5.1.2-alpha.540 101.11 KB Fri, 03 May 2024 10:31:08 GMT 115
5.1.2-alpha.539 100.85 KB Thu, 18 Apr 2024 17:16:22 GMT 122
5.1.2-alpha.530 100.76 KB Thu, 04 Apr 2024 12:29:05 GMT 139
5.1.2-alpha.529 100.75 KB Thu, 04 Apr 2024 12:25:20 GMT 126
5.1.2-alpha.523 100.75 KB Thu, 04 Apr 2024 08:50:18 GMT 107
5.1.2-alpha.522 100.76 KB Wed, 03 Apr 2024 15:18:58 GMT 110
5.1.1-alpha.519 100.74 KB Tue, 02 Apr 2024 17:25:49 GMT 125
5.1.1-alpha.518 100.61 KB Mon, 18 Mar 2024 13:27:28 GMT 125
5.1.0-alpha.514 100.62 KB Mon, 18 Mar 2024 13:14:53 GMT 104
5.1.0-alpha.511 100.59 KB Mon, 18 Mar 2024 12:57:07 GMT 123
5.0.1-alpha.510 100.58 KB Mon, 18 Mar 2024 11:05:21 GMT 109
5.0.1-alpha.507 100.58 KB Fri, 15 Mar 2024 17:33:53 GMT 106
5.0.1-alpha.505 100.57 KB Thu, 14 Mar 2024 11:43:47 GMT 115
5.0.1-alpha.503 100.64 KB Wed, 13 Mar 2024 17:51:36 GMT 105
5.0.1-alpha.498 100.31 KB Sat, 09 Mar 2024 16:24:39 GMT 118
5.0.0-alpha.497 100.3 KB Fri, 08 Mar 2024 14:51:40 GMT 135
5.0.0-alpha.493 100.29 KB Fri, 08 Mar 2024 14:38:04 GMT 113
5.0.0-alpha.492 100.29 KB Thu, 07 Mar 2024 10:53:48 GMT 116
5.0.0-alpha.491 100.29 KB Tue, 05 Mar 2024 16:12:50 GMT 104
5.0.0-alpha.490 100.29 KB Wed, 28 Feb 2024 15:45:38 GMT 105
5.0.0-alpha.489 110.17 KB Thu, 22 Feb 2024 15:26:02 GMT 102
5.0.0-alpha.487 109.93 KB Thu, 08 Feb 2024 15:34:15 GMT 117
4.2.2-alpha.527 100.56 KB Thu, 04 Apr 2024 12:19:50 GMT 124
4.2.1-alpha.524 100.56 KB Thu, 04 Apr 2024 12:09:46 GMT 126
4.2.1-alpha.516 100.46 KB Mon, 18 Mar 2024 13:19:56 GMT 118
4.2.0-alpha.509 100.41 KB Mon, 18 Mar 2024 10:12:41 GMT 124
4.2.0-alpha.506 100.39 KB Fri, 15 Mar 2024 17:02:19 GMT 123
4.2.0-alpha.504 100.4 KB Thu, 14 Mar 2024 11:40:39 GMT 121
4.2.0-alpha.502 100.47 KB Wed, 13 Mar 2024 17:51:28 GMT 106
4.2.0-alpha.501 100.46 KB Wed, 13 Mar 2024 17:39:02 GMT 139
4.2.0-alpha.500 100.38 KB Wed, 13 Mar 2024 13:31:34 GMT 129
4.2.0-alpha.499 100.39 KB Wed, 13 Mar 2024 11:47:56 GMT 106
4.2.0-alpha.488 100.11 KB Thu, 22 Feb 2024 15:21:26 GMT 115
4.2.0-alpha.486 99.9 KB Wed, 07 Feb 2024 16:13:36 GMT 114
4.2.0-alpha.485 99.89 KB Wed, 31 Jan 2024 15:26:19 GMT 122
4.2.0-alpha.484 99.9 KB Mon, 22 Jan 2024 17:50:57 GMT 119
4.2.0-alpha.471 99.75 KB Wed, 29 Nov 2023 15:08:17 GMT 125
4.2.0-alpha.470 99.61 KB Mon, 27 Nov 2023 18:33:44 GMT 127
4.1.1-alpha.469 99.61 KB Mon, 27 Nov 2023 17:51:23 GMT 119
4.1.1-alpha.465 99.32 KB Fri, 22 Sep 2023 11:37:13 GMT 129
4.1.0-beta5.462 99.32 KB Tue, 19 Sep 2023 18:05:58 GMT 125
4.1.0-beta5.459 99.2 KB Wed, 09 Aug 2023 16:36:45 GMT 114
4.1.0-beta4.456 99.2 KB Wed, 09 Aug 2023 15:48:33 GMT 121
4.1.0-beta4.455 99.13 KB Wed, 09 Aug 2023 15:41:23 GMT 150
4.1.0-beta4.452 98.88 KB Fri, 21 Jul 2023 11:53:27 GMT 106
4.1.0-beta4.451 98.76 KB Thu, 20 Jul 2023 11:35:04 GMT 109
4.1.0-beta3.447 98.76 KB Tue, 18 Jul 2023 14:19:22 GMT 117
4.1.0-beta3.446 98.73 KB Tue, 18 Jul 2023 13:20:22 GMT 110
4.1.0-beta3.443 98.61 KB Thu, 13 Jul 2023 13:21:58 GMT 134
4.1.0-beta2.440 98.61 KB Mon, 03 Jul 2023 10:11:40 GMT 135
4.1.0-beta2.438 98.44 KB Thu, 29 Jun 2023 13:27:57 GMT 106
4.1.0-beta1.435 98.44 KB Thu, 29 Jun 2023 13:18:54 GMT 115
4.1.0-alpha.432 98.44 KB Wed, 28 Jun 2023 17:30:09 GMT 121
4.1.0-alpha.431 98.45 KB Wed, 28 Jun 2023 15:59:06 GMT 106
4.1.0-alpha.430 98.45 KB Wed, 28 Jun 2023 15:53:46 GMT 120
4.1.0-alpha.429 98.45 KB Wed, 28 Jun 2023 15:50:53 GMT 113
4.1.0-alpha.428 98.41 KB Wed, 28 Jun 2023 13:37:58 GMT 119
4.1.0-alpha.427 97.8 KB Wed, 28 Jun 2023 13:13:07 GMT 95
4.1.0-alpha.426 97.79 KB Wed, 28 Jun 2023 10:17:33 GMT 132
4.1.0-alpha.425 98.92 KB Tue, 27 Jun 2023 13:32:44 GMT 88
4.1.0-alpha.424 98.85 KB Fri, 23 Jun 2023 16:28:53 GMT 116
4.1.0-alpha.423 98.83 KB Fri, 23 Jun 2023 09:49:57 GMT 106
4.1.0-alpha.422 98.34 KB Thu, 22 Jun 2023 11:27:28 GMT 121
4.1.0-alpha.421 97.17 KB Thu, 22 Jun 2023 11:14:17 GMT 113
4.1.0-alpha.420 97.16 KB Tue, 20 Jun 2023 19:12:02 GMT 112
4.1.0-alpha.419 97.17 KB Tue, 20 Jun 2023 18:58:52 GMT 107
4.1.0-alpha.418 97.17 KB Tue, 20 Jun 2023 18:14:18 GMT 116
4.1.0-alpha.414 95.08 KB Sat, 17 Jun 2023 18:43:45 GMT 134
4.1.0-alpha.413 95.09 KB Mon, 15 May 2023 16:55:04 GMT 114
4.1.0-alpha.409 94.58 KB Wed, 10 May 2023 21:59:37 GMT 129
4.1.0-alpha.404 94.37 KB Thu, 04 May 2023 18:06:42 GMT 106
4.0.4-alpha.400 93.5 KB Wed, 05 Apr 2023 14:51:27 GMT 127
4.0.3-alpha.397 93.51 KB Mon, 27 Mar 2023 09:53:37 GMT 116
4.0.3-alpha.394 93.49 KB Mon, 28 Nov 2022 15:22:32 GMT 121
4.0.3-alpha.393 93.49 KB Fri, 25 Nov 2022 13:05:46 GMT 128
4.0.2-alpha.390 93.49 KB Fri, 25 Nov 2022 12:57:05 GMT 121
4.0.2-alpha.389 93.49 KB Fri, 25 Nov 2022 11:40:13 GMT 109
4.0.2-alpha.388 93.49 KB Fri, 25 Nov 2022 11:38:54 GMT 120
4.0.2-alpha.387 91.32 KB Fri, 25 Nov 2022 09:39:27 GMT 122
4.0.2-alpha.386 91.31 KB Thu, 24 Nov 2022 16:10:33 GMT 111
4.0.2-alpha.385 91.31 KB Mon, 21 Nov 2022 10:35:31 GMT 136
4.0.2-alpha.384 91.31 KB Mon, 21 Nov 2022 10:24:51 GMT 131
4.0.1-alpha.380 91.31 KB Mon, 21 Nov 2022 09:53:40 GMT 132
4.0.1-alpha.378 91.05 KB Tue, 20 Sep 2022 12:43:17 GMT 135
4.0.1-alpha.377 90.88 KB Tue, 20 Sep 2022 11:45:19 GMT 119
4.0.0-beta2.373 90.88 KB Thu, 04 Aug 2022 17:14:07 GMT 123
4.0.0-beta2.372 90.88 KB Thu, 04 Aug 2022 17:09:36 GMT 122
4.0.0-beta2.371 90.88 KB Thu, 04 Aug 2022 16:25:10 GMT 108
4.0.0-beta2.370 90.88 KB Wed, 03 Aug 2022 11:43:53 GMT 97
4.0.0-beta2.369 90.88 KB Wed, 03 Aug 2022 11:14:50 GMT 115
4.0.0-beta2.368 90.87 KB Wed, 03 Aug 2022 10:59:16 GMT 123
4.0.0-beta2.367 90.86 KB Wed, 03 Aug 2022 10:47:58 GMT 123
4.0.0-beta1.364 90.85 KB Wed, 03 Aug 2022 09:44:34 GMT 120
4.0.0-beta1 90.86 KB Wed, 03 Aug 2022 10:39:02 GMT 121
4.0.0-alpha.362 90.86 KB Wed, 03 Aug 2022 09:41:06 GMT 117
4.0.0-alpha.361 90.85 KB Wed, 03 Aug 2022 09:35:44 GMT 125
4.0.0-alpha.360 90.72 KB Wed, 27 Jul 2022 09:23:23 GMT 132
4.0.0-alpha.359 90.7 KB Wed, 27 Jul 2022 09:10:48 GMT 141
4.0.0-alpha.358 90.57 KB Tue, 26 Jul 2022 16:22:46 GMT 125
4.0.0-alpha.357 90.51 KB Tue, 26 Jul 2022 16:08:40 GMT 117
4.0.0-alpha.355 90.51 KB Tue, 26 Jul 2022 15:54:08 GMT 124
4.0.0-alpha.354 90.51 KB Tue, 26 Jul 2022 15:50:11 GMT 118
4.0.0-alpha.353 90.57 KB Fri, 22 Jul 2022 17:50:02 GMT 138
4.0.0-alpha.352 86.94 KB Fri, 22 Jul 2022 17:16:06 GMT 113
4.0.0-alpha.351 86.95 KB Fri, 22 Jul 2022 16:49:27 GMT 123
4.0.0-alpha.350 86.95 KB Fri, 22 Jul 2022 16:43:45 GMT 128
4.0.0-alpha.349 86.85 KB Fri, 22 Jul 2022 16:07:22 GMT 137
4.0.0-alpha.348 86.41 KB Wed, 13 Jul 2022 12:21:01 GMT 119
4.0.0-alpha.347 86.41 KB Tue, 12 Jul 2022 18:54:46 GMT 129
4.0.0-alpha.346 86.41 KB Tue, 12 Jul 2022 18:53:15 GMT 123
4.0.0-alpha.344 86.48 KB Tue, 12 Jul 2022 18:42:19 GMT 129
4.0.0-alpha.343 86.47 KB Tue, 12 Jul 2022 18:31:26 GMT 119
4.0.0-alpha.342 86.58 KB Tue, 12 Jul 2022 13:08:06 GMT 129
4.0.0-alpha.341 85.44 KB Tue, 12 Jul 2022 12:28:06 GMT 123
4.0.0-alpha.340 85.44 KB Tue, 12 Jul 2022 12:20:34 GMT 125
4.0.0-alpha.333 85.43 KB Tue, 21 Jun 2022 16:58:13 GMT 120
4.0.0-alpha.332 85.45 KB Mon, 20 Jun 2022 13:05:08 GMT 120
4.0.0-alpha.331 85.46 KB Fri, 17 Jun 2022 15:08:20 GMT 137
4.0.0-alpha.330 85.31 KB Wed, 11 May 2022 14:09:04 GMT 122
4.0.0-alpha.329 86.31 KB Wed, 11 May 2022 11:42:23 GMT 113
4.0.0-alpha.328 86.31 KB Wed, 11 May 2022 11:41:41 GMT 125
4.0.0-alpha.321 86.08 KB Fri, 04 Feb 2022 17:04:02 GMT 111
3.0.1-alpha-000345 22.2 KB Tue, 12 Jul 2022 18:51:46 GMT 110
3.0.1-alpha-000289 22.15 KB Fri, 22 May 2020 14:07:01 GMT 133
3.0.0 22.11 KB Fri, 22 May 2020 14:05:00 GMT 131
3.0.0-beta6-000285 22.15 KB Fri, 22 May 2020 13:59:13 GMT 120
3.0.0-beta6-000284 22.15 KB Mon, 18 May 2020 10:07:08 GMT 128
3.0.0-beta6-000283 22.15 KB Thu, 14 May 2020 11:09:56 GMT 114
3.0.0-beta5-000280 22.14 KB Wed, 13 May 2020 15:36:27 GMT 129
3.0.0-beta5-000279 21.95 KB Wed, 13 May 2020 13:25:25 GMT 122
3.0.0-beta5-000278 21.95 KB Wed, 13 May 2020 13:22:22 GMT 129
3.0.0-beta5-000277 21.2 KB Tue, 12 May 2020 18:04:21 GMT 135
3.0.0-beta5-000276 21.2 KB Tue, 12 May 2020 16:38:58 GMT 123
3.0.0-beta5-000275 21.2 KB Tue, 12 May 2020 16:35:32 GMT 140
3.0.0-beta5-000274 21.2 KB Tue, 12 May 2020 16:31:45 GMT 137
3.0.0-beta5-000273 21.2 KB Tue, 12 May 2020 13:46:37 GMT 126
3.0.0-beta5-000272 21.2 KB Tue, 12 May 2020 13:29:57 GMT 118
3.0.0-beta5-000271 21.19 KB Tue, 12 May 2020 13:23:42 GMT 131
3.0.0-beta5-000269 21.18 KB Mon, 11 May 2020 18:16:43 GMT 124
3.0.0-beta5-000264 21.04 KB Mon, 20 Apr 2020 14:47:38 GMT 149
3.0.0-beta5-000263 21.04 KB Mon, 20 Apr 2020 14:05:56 GMT 142
3.0.0-beta5-000262 21.12 KB Mon, 20 Apr 2020 12:56:07 GMT 109
3.0.0-beta5-000261 21.11 KB Mon, 20 Apr 2020 12:50:35 GMT 135
3.0.0-beta5-000260 21.12 KB Mon, 20 Apr 2020 12:44:25 GMT 144
3.0.0-beta5-000259 21.12 KB Mon, 20 Apr 2020 11:22:18 GMT 139
3.0.0-beta5-000252 20.64 KB Fri, 17 Apr 2020 14:56:22 GMT 131
3.0.0-beta5-000249 20.67 KB Thu, 16 Apr 2020 17:48:24 GMT 129
3.0.0-beta5-000247 20.64 KB Thu, 16 Apr 2020 16:02:25 GMT 119
3.0.0-beta5-000244 20.79 KB Thu, 16 Apr 2020 11:27:25 GMT 121
3.0.0-beta5-000234 20.51 KB Fri, 10 Apr 2020 13:44:40 GMT 123
3.0.0-beta5-000233 20.65 KB Thu, 09 Apr 2020 17:40:55 GMT 132
3.0.0-beta5 22.13 KB Thu, 14 May 2020 11:00:15 GMT 127
3.0.0-beta4-000228 20.64 KB Thu, 09 Apr 2020 09:24:41 GMT 119
3.0.0-beta4-000227 20.64 KB Thu, 09 Apr 2020 08:33:58 GMT 131
3.0.0-beta4-000226 19.79 KB Wed, 08 Apr 2020 16:02:08 GMT 120
3.0.0-beta4-000222 19.79 KB Wed, 08 Apr 2020 11:28:41 GMT 135
3.0.0-beta4-000220 19.41 KB Mon, 16 Dec 2019 17:13:37 GMT 136
3.0.0-beta4-000215 19.41 KB Tue, 15 Oct 2019 10:21:42 GMT 148
3.0.0-beta4 20.63 KB Thu, 09 Apr 2020 17:24:52 GMT 115
3.0.0-beta3-000212 19.41 KB Mon, 07 Oct 2019 11:19:10 GMT 139
3.0.0-beta3-000211 19.38 KB Mon, 07 Oct 2019 09:43:07 GMT 177
3.0.0-beta3-000210 19.38 KB Mon, 07 Oct 2019 09:34:41 GMT 134
3.0.0-beta3-000209 19.36 KB Mon, 07 Oct 2019 09:19:37 GMT 134
3.0.0-beta3-000208 19.36 KB Mon, 07 Oct 2019 09:14:59 GMT 138
3.0.0-beta3-000207 19.36 KB Mon, 07 Oct 2019 09:14:09 GMT 146
3.0.0-beta3-000203 19.74 KB Tue, 30 Jul 2019 12:35:41 GMT 146
3.0.0-beta2-000202 19.75 KB Tue, 30 Jul 2019 12:19:00 GMT 140
3.0.0-beta2-000201 19.83 KB Mon, 29 Jul 2019 14:31:23 GMT 130
3.0.0-beta2-000199 19.84 KB Mon, 29 Jul 2019 14:19:34 GMT 157
3.0.0-beta1-000197 19.84 KB Tue, 02 Apr 2019 18:02:23 GMT 166
3.0.0-beta1-000196 19.84 KB Tue, 02 Apr 2019 17:59:08 GMT 145
3.0.0-beta1-000193 19.84 KB Tue, 02 Apr 2019 17:35:27 GMT 161
3.0.0-beta1 19.82 KB Tue, 02 Apr 2019 17:40:51 GMT 138
3.0.0-alpha-000286 22.15 KB Fri, 22 May 2020 14:03:25 GMT 134
3.0.0-alpha-000192 19.84 KB Tue, 02 Apr 2019 17:33:06 GMT 132
3.0.0-alpha-000191 19.84 KB Tue, 02 Apr 2019 17:03:59 GMT 141