Bit.Bswup 9.6.0-pre-02

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

bit Blazor Service-Worker Update Progress (bit Bswup)

To use the bit Bswup, please follow these steps:

  1. Install the Bit.Bswup nuget package:
dotnet add package Bit.Bswup
  1. Enable static file caching. You can follow the below code in the Startup.cs file:
app.UseStaticFiles(new StaticFileOptions
{
    OnPrepareResponse = ctx =>
    {
        if (env.IsDevelopment() is false)
        {
            // https://bitplatform.dev/templates/cache-mechanism
            ctx.Context.Response.GetTypedHeaders().CacheControl = new()
            {
                MaxAge = TimeSpan.FromDays(7),
                Public = true
            };
        }
    }
});
  1. In the default document (index.html, App.razor), add autostart="false" to the script tag for the Blazor script:
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
  1. Also In the default document (index.html, App.razor), add the bit-bswup.js script tag after the Blazor script tag with needed options:
<script src="_content/Bit.Bswup/bit-bswup.js"
        scope="/"
        log="verbose"
        sw="service-worker.js"
        handler="bitBswupHandler"></script>
  • scope: The scope of the service-worker (read more).
  • log: The log level of the Bswup logger. available options are: info, verbose, debug, and error. (not implemented yet)
  • sw: The file path of the service-worker file.
  • handler: The name of the handler function for the service-worker events.

You can remove any of these attributes, and use the default values mentioned above.

  1. Add a handler function like the below code to handle multiple events of the Bswup, or you can follow the full sample code which is provided in the Demo projects of this repo.
const appEl = document.getElementById('app');
const bswupEl = document.getElementById('bit-bswup');
const progressBar = document.getElementById('bit-bswup-progress-bar');
const reloadButton = document.getElementById('bit-bswup-reload');

function bitBswupHandler(type, data) {
    switch (type)
    {
        case BswupMessage.updateFound: return console.log('an update found.');

        case BswupMessage.stateChanged: return console.log('state has changed to:', data.currentTarget.state);

        case BswupMessage.activate: return console.log('new version activated:', data.version);

        case BswupMessage.downloadStarted: 
            appEl.style.display = 'none';
            bswupEl.style.display = 'block';
            return console.log('downloading assets started:', data?.version);

        case BswupMessage.downloadProgress:
            progressBar.style.width = `${percent}%`;
            return console.log('asset downloaded:', data);

        case BswupMessage.downloadFinished:
            if (data.firstInstall) {
                data.reload().then(() => {
                    appEl.style.display = 'block';
                    bswupEl.style.display = 'none';
                });
            } else {
                reloadButton.style.display = 'block';
                reloadButton.onclick = data.reload;
            }
            return console.log('downloading assets finished.');

        case BswupMessage.updateReady:
            reloadButton.style.display = 'block';
            reloadButton.onclick = data.reload;
            return console.log('new update ready.');
    }
}
  1. Configure additional settings in the service-worker file like the following code:
self.assetsInclude = [/\data.db$/];
self.assetsExclude = [/\.scp\.css$/, /weather\.json$/];
self.defaultUrl = '/';
self.prohibitedUrls = [/\/admin\//];
self.serverHandledUrls = [/\/api\//];
self.serverRenderedUrls = [/\/privacy$/];
self.externalAssets = [
    {
        "url": "/"
    },
    {
        "url": "https://www.googletagmanager.com/gtag/js?id=G-G123456789"
    }
];
self.assetsUrl = '/service-worker-assets.js';
self.noPrerenderQuery = 'no-prerender=true';

self.caseInsensitiveUrl = true;
self.ignoreDefaultInclude = true;
self.ignoreDefaultExclude = true;
self.isPassive = true;
self.disablePassiveFirstBoot = true;
self.enableIntegrityCheck = true;
self.enableDiagnostics = true;
self.enableFetchDiagnostics = true;

self.importScripts('_content/Bit.Bswup/bit-bswup.sw.js');

The most important line here is the last line which is the only mandatory config in this file that imports the Bswup service-worker file:

self.importScripts('_content/Bit.Bswup/bit-bswup.sw.js');

The other settings are:

  • assetsInclude: The list of file names from the assets list to include when the Bswup tries to store them in the cache storage (regex supported).
  • assetsExclude: The list of file names from the assets list to exclude when the Bswup tries to store them in the cache storage (regex supported).
  • externalAssets: The list of external assets to cache that are not included in the auto-generated assets file. For example, if you're not using index.html (like _host.cshtml), then you should add { "url": "/" }.
  • defaultUrl: The default page URL. Use / when using _Host.cshtml.
  • assetsUrl: The file path of the service-worker assets file generated at compile time (the default file name is service-worker-assets.js).
  • prohibitedUrls: The list of file names that should not be accessed (regex supported).
  • caseInsensitiveUrl: Enables the case insensitivity in the URL checking of the cache process.
  • serverHandledUrls: The list of URLs that do not enter the service-worker offline process and will be handled only by server (regex supported). such as /api, /swagger, ...
  • serverRenderedUrls: The list of URLs that should be rendered by the server and not client while navigating (regex supported). such as /about.html, /privacy, ...
  • noPrerenderQuery: The query string attached to the default document request to disable the prerendering from the server so an unwanted prerendered result not be cached.
  • ignoreDefaultInclude: Ignores the default asset includes array which is provided by the Bswup itself which is like this:
    [/\.dll$/, /\.pdb$/, /\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/, /\.blat$/, /\.dat$/, /\.svg$/, /\.woff2$/, /\.ttf$/, /\.webp$/]
    
  • ignoreDefaultExclude: Ignores the default asset excludes array which is provided by the Bswup itself which is like this:
    [/^_content\/Bit\.Bswup\/bit-bswup\.sw\.js$/, /^service-worker\.js$/]
    
  • isPassive: Enables the Bswup's passive mode. In this mode, the assets won't be cached in advance but rather upon initial request.
  • disablePassiveFirstBoot: Disables downloading the Blazor's boot files in first time of Passive mode.
  • enableIntegrityCheck: Enables the default integrity check available in browsers by setting the integrity attribute of the request object created in the service-worker to fetch the assets.
  • errorTolerance: Determines how the Bswup should handle the errors while downloading assets. Possible values are: strict, lax, config.
  • enableDiagnostics: Enables diagnostics by pushing service-worker logs to the browser console.
  • enableFetchDiagnostics: Enables fetch event diagnostics by pushing service-worker fetch event logs to the browser console.
  • disableHashlessAssetsUpdate: Disables the update of the hash-less assets. By default, the Bswup tries to automatically update all of the hash-less assets (e.g. the external assets) every time an update found for the app.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 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

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Bit.Bswup:

Repository Stars
functionland/fx-files
You want to literally own your files? This is something won't happen on traditional cloud services in a lifetime. And this is something is going to happen in a glance with "Fx Files" app from now on. It is a file manager which stores everything on Fula blockchain network of Bloxes.
Version Downloads Last updated
9.9.0-pre-03 0 6/5/2025
9.9.0-pre-02 14 6/3/2025
9.9.0-pre-01 36 6/3/2025
9.8.0 292 5/30/2025
9.8.0-pre-08 174 5/29/2025
9.8.0-pre-07 224 5/27/2025
9.8.0-pre-06 267 5/23/2025
9.8.0-pre-05 156 5/22/2025
9.8.0-pre-04 197 5/19/2025
9.8.0-pre-03 144 5/18/2025
9.8.0-pre-02 119 5/17/2025
9.8.0-pre-01 303 5/14/2025
9.7.4 388 5/13/2025
9.7.4-pre-04 212 5/13/2025
9.7.4-pre-03 225 5/12/2025
9.7.4-pre-02 228 5/10/2025
9.7.4-pre-01 348 5/6/2025
9.7.3 208 5/5/2025
9.7.3-pre-05 128 5/5/2025
9.7.3-pre-04 143 5/5/2025
9.7.3-pre-03 160 5/5/2025
9.7.3-pre-02 135 5/3/2025
9.7.3-pre-01 180 5/1/2025
9.7.2 400 4/26/2025
9.7.1 127 4/26/2025
9.7.1-pre-03 233 4/24/2025
9.7.1-pre-01 161 4/24/2025
9.7.0 400 4/22/2025
9.7.0-pre-12 171 4/22/2025
9.7.0-pre-11 179 4/22/2025
9.7.0-pre-10 188 4/21/2025
9.7.0-pre-09 186 4/21/2025
9.7.0-pre-08 158 4/19/2025
9.7.0-pre-07 436 4/14/2025
9.7.0-pre-06 236 4/14/2025
9.7.0-pre-05 255 4/13/2025
9.7.0-pre-04 139 4/13/2025
9.7.0-pre-03 355 4/9/2025
9.7.0-pre-02 342 4/3/2025
9.6.1 409 3/29/2025
9.6.1-pre-02 143 3/28/2025
9.6.1-pre-01 119 3/28/2025
9.6.0 574 3/26/2025
9.6.0-pre-14 455 3/26/2025
9.6.0-pre-13 459 3/26/2025
9.6.0-pre-12 144 3/21/2025
9.6.0-pre-11 368 3/15/2025
9.6.0-pre-10 126 3/14/2025
9.6.0-pre-08 548 3/11/2025
9.6.0-pre-07 186 3/10/2025
9.6.0-pre-06 232 3/8/2025
9.6.0-pre-05 463 3/5/2025
9.6.0-pre-04 235 3/5/2025
9.6.0-pre-03 334 3/2/2025
9.6.0-pre-02 161 3/1/2025
9.6.0-pre-01 125 3/1/2025
9.5.1 622 2/27/2025
9.5.1-pre-04 112 2/27/2025
9.5.1-pre-03 124 2/27/2025
9.5.1-pre-02 124 2/26/2025
9.5.1-pre-01 109 2/25/2025
9.5.0 183 2/24/2025
9.5.0-pre-05 116 2/24/2025
9.5.0-pre-04 277 2/22/2025
9.5.0-pre-03 102 2/22/2025
9.5.0-pre-02 353 2/20/2025
9.5.0-pre-01 112 2/20/2025
9.4.2-pre-04 162 2/18/2025
9.4.2-pre-03 157 2/17/2025
9.4.2-pre-02 205 2/16/2025
9.4.2-pre-01 424 2/12/2025
9.4.1 1,131 2/8/2025
9.4.1-pre-01 104 2/8/2025
9.4.0 159 2/8/2025
9.4.0-pre-05 101 2/8/2025
9.4.0-pre-04 142 2/7/2025
9.4.0-pre-03 159 2/6/2025
9.4.0-pre-02 171 2/2/2025
9.4.0-pre-01 97 2/1/2025
9.3.1-pre-05 500 1/26/2025
9.3.1-pre-04 451 1/23/2025
9.3.1-pre-03 238 1/19/2025
9.3.1-pre-02 82 1/18/2025
9.3.1-pre-01 167 1/14/2025
9.3.0 895 1/11/2025
9.3.0-pre-01 77 1/11/2025
9.2.1 567 1/5/2025
9.2.1-pre-02 194 1/4/2025
9.2.1-pre-01 209 1/3/2025
9.2.0 188 1/1/2025
9.2.0-pre-04 90 1/1/2025
9.2.0-pre-03 113 12/31/2024
9.2.0-pre-02 160 12/31/2024
9.2.0-pre-01 94 12/30/2024
9.1.2 536 12/24/2024
9.1.2-pre-01 102 12/23/2024
9.1.1 483 12/15/2024
9.1.1-pre-01 102 12/15/2024
9.1.0 161 12/14/2024
9.1.0-pre-13 112 12/13/2024
9.1.0-pre-12 96 12/13/2024
9.1.0-pre-11 102 12/13/2024
9.1.0-pre-10 185 12/10/2024
9.1.0-pre-09 171 12/6/2024
9.1.0-pre-08 248 12/2/2024
9.1.0-pre-07 81 12/2/2024
9.1.0-pre-06 76 12/2/2024
9.1.0-pre-05 161 12/1/2024
9.1.0-pre-04 116 11/29/2024
9.1.0-pre-03 413 11/25/2024
9.1.0-pre-02 167 11/24/2024
9.1.0-pre-01 100 11/23/2024
9.0.1 500 11/20/2024
9.0.0 230 11/18/2024
9.0.0-pre-02 86 11/18/2024
9.0.0-pre-01 212 11/15/2024
8.12.0 481 11/12/2024
8.12.0-pre-15 139 11/11/2024
8.12.0-pre-14 120 11/11/2024
8.12.0-pre-13 142 11/11/2024
8.12.0-pre-12 125 11/10/2024
8.12.0-pre-11 125 11/9/2024
8.12.0-pre-10 253 11/5/2024
8.12.0-pre-09 98 11/5/2024
8.12.0-pre-08 260 11/1/2024
8.12.0-pre-07 289 10/27/2024
8.12.0-pre-06 191 10/24/2024
8.12.0-pre-05 142 10/21/2024
8.12.0-pre-04 129 10/20/2024
8.12.0-pre-03 572 10/6/2024
8.12.0-pre-02 204 10/2/2024
8.12.0-pre-01 110 9/29/2024
8.11.1-pre-04 150 9/27/2024
8.11.1-pre-03 107 9/26/2024
8.11.1-pre-02 265 9/22/2024
8.11.1-pre-01 201 9/19/2024
8.11.0 492 9/16/2024
8.11.0-pre-09 124 9/15/2024
8.11.0-pre-08 147 9/13/2024
8.11.0-pre-07 167 9/10/2024
8.11.0-pre-06 257 9/4/2024
8.11.0-pre-05 126 9/3/2024
8.11.0-pre-04 340 8/22/2024
8.11.0-pre-03 164 8/21/2024
8.11.0-pre-02 169 8/19/2024
8.11.0-pre-01 188 8/16/2024
8.10.0 670 8/8/2024
8.10.0-pre-05 175 8/4/2024
8.10.0-pre-04 97 8/3/2024
8.10.0-pre-03 751 6/26/2024
8.10.0-pre-02 126 6/26/2024
8.10.0-pre-01 114 6/25/2024
8.9.0 1,190 6/9/2024
8.9.0-pre-04 120 6/9/2024
8.9.0-pre-03 168 6/6/2024
8.9.0-pre-02 215 5/31/2024
8.9.0-pre-01 119 5/28/2024
8.8.2-pre-05 142 5/27/2024
8.8.2-pre-04 121 5/26/2024
8.8.2-pre-03 133 5/23/2024
8.8.2-pre-02 293 5/9/2024
8.8.2-pre-01 182 5/1/2024
8.8.1 3,539 4/13/2024
8.8.1-pre-02 96 4/12/2024
8.8.1-pre-01 121 4/12/2024
8.8.0 550 4/1/2024
8.8.0-pre-04 143 3/29/2024
8.8.0-pre-03 263 3/16/2024
8.8.0-pre-02 185 3/10/2024
8.8.0-pre-01 287 2/27/2024
8.7.6 1,776 2/23/2024
8.7.6-pre-08 175 2/23/2024
8.7.6-pre-07 115 2/21/2024
8.7.6-pre-06 122 2/21/2024
8.7.6-pre-05 139 2/18/2024
8.7.6-pre-04 156 2/14/2024
8.7.6-pre-03 111 2/14/2024
8.7.6-pre-02 106 2/14/2024
8.7.6-pre-01 100 2/12/2024
8.7.5 214 2/9/2024
8.7.5-pre-04 129 2/3/2024
8.7.5-pre-03 142 1/29/2024
8.7.5-pre-02 137 1/25/2024
8.7.5-pre-01 107 1/24/2024
8.7.4 385 1/23/2024
8.7.3-pre-02 119 1/22/2024
8.7.3-pre-01 200 1/20/2024
8.7.2 224 1/17/2024
8.7.2-pre-02 104 1/17/2024
8.7.2-pre-01 205 1/11/2024
8.7.1 329 1/9/2024
8.7.0 222 1/8/2024
8.7.0-pre-05 153 1/7/2024
8.7.0-pre-04 174 1/5/2024
8.7.0-pre-03 129 1/4/2024
8.7.0-pre-02 171 12/31/2023
8.7.0-pre-01 121 12/31/2023
8.6.0 223 12/31/2023
8.6.0-pre-03 180 12/25/2023
8.6.0-pre-02 114 12/25/2023
8.6.0-pre-01 201 12/21/2023
8.5.0 268 12/20/2023
8.5.0-pre-02 179 12/16/2023
8.5.0-pre-01 122 12/15/2023
8.4.0 199 12/14/2023
8.4.0-pre-01 125 12/13/2023
8.3.0 179 12/12/2023
8.3.0-pre-03 136 12/11/2023
8.3.0-pre-02 147 12/11/2023
8.3.0-pre-01 138 12/11/2023
8.2.0 348 12/2/2023
8.2.0-pre-05 139 12/2/2023
8.2.0-pre-04 191 12/1/2023
8.2.0-pre-03 150 11/30/2023
8.2.0-pre-02 176 11/29/2023
8.2.0-pre-01 283 11/25/2023
8.1.0 320 11/22/2023
8.1.0-pre-03 136 11/22/2023
8.1.0-pre-02 169 11/20/2023
8.1.0-pre-01 193 11/17/2023
8.0.1 229 11/14/2023
8.0.0-pre-01 146 11/14/2023
7.3.0 141 11/14/2023
7.3.0-pre-01 87 11/14/2023
7.2.0 116 11/14/2023
7.2.0-pre-02 95 11/14/2023
7.2.0-pre-01 146 11/12/2023
7.1.0 197 11/8/2023
7.1.0-pre-05 126 11/7/2023
7.1.0-pre-04 307 11/4/2023
7.1.0-pre-03 380 10/27/2023
7.1.0-pre-02 269 10/23/2023
7.1.0-pre-01 307 10/17/2023
7.0.0 297 10/15/2023
7.0.0-pre-02 91 10/15/2023
7.0.0-pre-01 203 10/13/2023
6.1.0 241 10/13/2023
6.1.0-pre-03 88 10/13/2023
6.1.0-pre-02 104 10/12/2023
6.1.0-pre-01 145 10/11/2023
6.0.0 191 10/9/2023
6.0.0-pre-05 104 10/8/2023
6.0.0-pre-04 115 10/6/2023
6.0.0-pre-03 144 10/2/2023
6.0.0-pre-02 157 9/29/2023
6.0.0-pre-01 116 9/27/2023
5.6.1 410 9/20/2023
5.6.1-pre-01 119 9/20/2023
5.6.0 178 9/20/2023
5.6.0-pre-03 115 9/20/2023
5.6.0-pre-02 221 9/18/2023
5.6.0-pre-01 328 9/14/2023
5.5.0 602 9/2/2023
5.5.0-pre-08 182 9/2/2023
5.5.0-pre-07 190 8/30/2023
5.5.0-pre-06 155 8/29/2023
5.5.0-pre-05 177 8/28/2023
5.5.0-pre-04 147 8/28/2023
5.5.0-pre-03 193 8/27/2023
5.5.0-pre-02 178 8/26/2023
5.5.0-pre-01 168 8/24/2023
5.4.0 289 8/20/2023
5.4.0-pre-05 162 8/20/2023
5.4.0-pre-04 197 8/19/2023
5.4.0-pre-03 166 8/19/2023
5.4.0-pre-02 168 8/19/2023
5.4.0-pre-01 225 8/15/2023
5.3.0 341 8/10/2023
5.3.0-pre-07 167 8/9/2023
5.3.0-pre-06 186 8/8/2023
5.3.0-pre-05 212 8/7/2023
5.3.0-pre-04 207 8/6/2023
5.3.0-pre-03 239 8/1/2023
5.3.0-pre-02 140 8/1/2023
5.3.0-pre-01 165 7/31/2023
5.2.0 295 7/28/2023
5.2.0-pre-05 174 7/27/2023
5.2.0-pre-03 570 7/24/2023
5.2.0-pre-02 178 7/24/2023
5.2.0-pre-01 262 7/10/2023
5.1.0 465 7/5/2023
5.1.0-pre-16 164 7/4/2023
5.1.0-pre-15 212 7/3/2023
5.1.0-pre-14 173 7/3/2023
5.1.0-pre-13 153 7/3/2023
5.1.0-pre-12 171 7/2/2023
5.1.0-pre-11 158 7/2/2023
5.1.0-pre-10 146 7/2/2023
5.1.0-pre-09 233 6/29/2023
5.1.0-pre-08 187 6/27/2023
5.1.0-pre-07 154 6/25/2023
5.1.0-pre-06 165 6/24/2023
5.1.0-pre-04 178 6/24/2023
5.1.0-pre-03 205 6/22/2023
5.1.0-pre-02 250 6/17/2023
5.1.0-pre-01 173 6/16/2023
5.0.0 399 5/29/2023
5.0.0-pre-02 152 5/29/2023
5.0.0-pre-01 181 5/25/2023
4.9.11-pre-02 148 5/25/2023
4.9.11-pre-01 158 5/25/2023
4.9.10 276 5/25/2023
4.9.10-pre-07 147 5/25/2023
4.9.10-pre-06 204 5/16/2023
4.9.10-pre-05 149 5/15/2023
4.9.10-pre-04 201 5/6/2023
4.9.10-pre-03 190 5/2/2023
4.9.10-pre-01 177 4/26/2023
4.9.9 418 4/10/2023
4.9.9-pre-03 165 4/9/2023
4.9.9-pre-02 209 3/29/2023
4.9.9-pre-01 201 3/29/2023
4.9.8-pre-02 272 3/21/2023
4.9.8-pre-01 195 3/20/2023
4.9.7-pre-01 268 3/6/2023
4.9.6 627 2/25/2023
4.9.6-pre-05 239 2/23/2023
4.9.6-pre-04 178 2/23/2023
4.9.6-pre-03 238 2/20/2023
4.9.6-pre-02 203 2/15/2023
4.9.5 615 2/8/2023
4.9.5-pre-03 165 2/8/2023
4.9.5-pre-02 169 2/8/2023
4.9.5-pre-01 171 2/7/2023
4.9.4 452 1/31/2023
4.9.4-pre-02 192 1/31/2023
4.9.4-pre-01 200 1/27/2023
4.9.3-pre-04 228 1/22/2023
4.9.3-pre-03 208 1/20/2023
4.9.3-pre-02 213 1/19/2023
4.9.2-pre-01 241 1/9/2023
4.9.1-pre-02 285 12/26/2022
4.9.1-pre-01 202 12/18/2022
4.9.0-pre-02 268 11/27/2022
4.9.0-pre-01 193 11/22/2022
4.8.0 566 11/15/2022
4.8.0-pre-02 157 11/14/2022
4.8.0-pre-01 192 11/11/2022
4.7.0 397 10/31/2022
4.7.0-pre-04 140 10/31/2022
4.7.0-pre-03 123 10/31/2022
4.7.0-pre-02 184 10/29/2022
4.7.0-pre-01 134 10/27/2022
4.6.0-pre-01 127 10/27/2022
4.5.0-pre-01 226 10/20/2022
4.4.1-pre-01 163 10/20/2022
4.4.0-pre-01 138 10/15/2022
4.3.2-pre-04 128 10/7/2022
4.3.2-pre-03 117 10/6/2022
4.3.2-pre-01 137 9/29/2022
4.3.1 742 9/21/2022
4.3.0 146 9/21/2022
4.2.0-pre-07 154 9/19/2022
4.2.0-pre-05 185 9/18/2022
4.2.0-pre-04 177 9/18/2022
4.2.0-pre-02 264 9/14/2022
4.2.0-pre-01 135 9/12/2022
4.1.0 386 9/8/2022
4.1.0-pre-01 160 9/8/2022
4.0.0 257 9/1/2022
3.1.0-pre-07 131 9/1/2022
3.1.0-pre-06 136 8/30/2022
3.1.0-pre-05 139 8/29/2022
3.1.0-pre-04 152 8/28/2022
3.1.0-pre-03 137 8/27/2022
3.1.0-pre-02 163 8/25/2022
3.1.0-pre-01 162 8/23/2022
3.0.0 281 8/15/2022
3.0.0-pre-09 147 8/15/2022
3.0.0-pre-08 141 8/15/2022
3.0.0-pre-07 162 8/15/2022
3.0.0-pre-06 185 8/14/2022
3.0.0-pre-05 199 8/14/2022
3.0.0-pre-04 302 8/9/2022
3.0.0-pre-03 225 8/8/2022
3.0.0-pre-02 237 8/7/2022
3.0.0-pre-01 376 7/29/2022
2.0.0 623 7/25/2022
2.0.0-pre-14 228 7/24/2022
2.0.0-pre-12 248 7/21/2022
2.0.0-pre-11 191 7/21/2022
2.0.0-pre-10 184 7/20/2022
2.0.0-pre-09 303 7/20/2022
2.0.0-pre-08 330 7/19/2022
2.0.0-pre-07 343 7/19/2022
2.0.0-pre-06 235 7/18/2022
2.0.0-pre-05 322 7/17/2022
2.0.0-pre-04 304 7/14/2022
2.0.0-pre-03 290 7/13/2022
2.0.0-pre-02 280 7/12/2022
2.0.0-pre-01 394 7/8/2022
2.0.0-pre-00 295 7/4/2022
1.0.2 788 7/4/2022
1.0.0 577 7/4/2022