Bit.Bswup 9.11.3

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Bit.Bswup --version 9.11.3
                    
NuGet\Install-Package Bit.Bswup -Version 9.11.3
                    
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.11.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bit.Bswup" Version="9.11.3" />
                    
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.11.3
                    
#r "nuget: Bit.Bswup, 9.11.3"
                    
#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.
#:package Bit.Bswup@9.11.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Bit.Bswup&version=9.11.3
                    
Install as a Cake Addin
#tool nuget:?package=Bit.Bswup&version=9.11.3
                    
Install 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.11.4-pre-01 58 8/22/2025
9.11.3 394 8/6/2025
9.11.3-pre-02 218 8/6/2025
9.11.3-pre-01 223 8/4/2025
9.11.2 181 7/31/2025
9.11.2-pre-02 114 7/30/2025
9.11.2-pre-01 112 7/29/2025
9.11.1 465 7/24/2025
9.11.1-pre-01 443 7/24/2025
9.11.0 496 7/22/2025
9.11.0-pre-04 442 7/21/2025
9.11.0-pre-03 189 7/20/2025
9.11.0-pre-02 132 7/16/2025
9.11.0-pre-01 196 7/13/2025
9.10.0 465 7/4/2025
9.10.0-pre-01 200 7/2/2025
9.9.2 569 6/14/2025
9.9.1 510 6/9/2025
9.9.1-pre-01 236 6/9/2025
9.9.0 221 6/7/2025
9.9.0-pre-03 245 6/5/2025
9.9.0-pre-02 252 6/3/2025
9.9.0-pre-01 151 6/3/2025
9.8.0 356 5/30/2025
9.8.0-pre-08 192 5/29/2025
9.8.0-pre-07 291 5/27/2025
9.8.0-pre-06 290 5/23/2025
9.8.0-pre-05 174 5/22/2025
9.8.0-pre-04 218 5/19/2025
9.8.0-pre-03 166 5/18/2025
9.8.0-pre-02 133 5/17/2025
9.8.0-pre-01 326 5/14/2025
9.7.4 921 5/13/2025
9.7.4-pre-04 230 5/13/2025
9.7.4-pre-03 241 5/12/2025
9.7.4-pre-02 251 5/10/2025
9.7.4-pre-01 367 5/6/2025
9.7.3 240 5/5/2025
9.7.3-pre-05 153 5/5/2025
9.7.3-pre-04 163 5/5/2025
9.7.3-pre-03 179 5/5/2025
9.7.3-pre-02 156 5/3/2025
9.7.3-pre-01 196 5/1/2025
9.7.2 573 4/26/2025
9.7.1 155 4/26/2025
9.7.1-pre-03 248 4/24/2025
9.7.1-pre-01 185 4/24/2025
9.7.0 429 4/22/2025
9.7.0-pre-12 190 4/22/2025
9.7.0-pre-11 201 4/22/2025
9.7.0-pre-10 207 4/21/2025
9.7.0-pre-09 207 4/21/2025
9.7.0-pre-08 177 4/19/2025
9.7.0-pre-07 451 4/14/2025
9.7.0-pre-06 254 4/14/2025
9.7.0-pre-05 276 4/13/2025
9.7.0-pre-04 155 4/13/2025
9.7.0-pre-03 371 4/9/2025
9.7.0-pre-02 362 4/3/2025
9.6.1 436 3/29/2025
9.6.1-pre-02 159 3/28/2025
9.6.1-pre-01 134 3/28/2025
9.6.0 601 3/26/2025
9.6.0-pre-14 471 3/26/2025
9.6.0-pre-13 478 3/26/2025
9.6.0-pre-12 164 3/21/2025
9.6.0-pre-11 389 3/15/2025
9.6.0-pre-10 141 3/14/2025
9.6.0-pre-08 705 3/11/2025
9.6.0-pre-07 203 3/10/2025
9.6.0-pre-06 251 3/8/2025
9.6.0-pre-05 483 3/5/2025
9.6.0-pre-04 255 3/5/2025
9.6.0-pre-03 356 3/2/2025
9.6.0-pre-02 175 3/1/2025
9.6.0-pre-01 142 3/1/2025
9.5.1 924 2/27/2025
9.5.1-pre-04 127 2/27/2025
9.5.1-pre-03 140 2/27/2025
9.5.1-pre-02 141 2/26/2025
9.5.1-pre-01 126 2/25/2025
9.5.0 207 2/24/2025
9.5.0-pre-05 134 2/24/2025
9.5.0-pre-04 291 2/22/2025
9.5.0-pre-03 122 2/22/2025
9.5.0-pre-02 367 2/20/2025
9.5.0-pre-01 133 2/20/2025
9.4.2-pre-04 175 2/18/2025
9.4.2-pre-03 174 2/17/2025
9.4.2-pre-02 219 2/16/2025
9.4.2-pre-01 447 2/12/2025
9.4.1 1,165 2/8/2025
9.4.1-pre-01 117 2/8/2025
9.4.0 181 2/8/2025
9.4.0-pre-05 120 2/8/2025
9.4.0-pre-04 162 2/7/2025
9.4.0-pre-03 177 2/6/2025
9.4.0-pre-02 188 2/2/2025
9.4.0-pre-01 111 2/1/2025
9.3.1-pre-05 521 1/26/2025
9.3.1-pre-04 464 1/23/2025
9.3.1-pre-03 251 1/19/2025
9.3.1-pre-02 99 1/18/2025
9.3.1-pre-01 185 1/14/2025
9.3.0 930 1/11/2025
9.3.0-pre-01 91 1/11/2025
9.2.1 603 1/5/2025
9.2.1-pre-02 209 1/4/2025
9.2.1-pre-01 225 1/3/2025
9.2.0 217 1/1/2025
9.2.0-pre-04 107 1/1/2025
9.2.0-pre-03 129 12/31/2024
9.2.0-pre-02 177 12/31/2024
9.2.0-pre-01 116 12/30/2024
9.1.2 563 12/24/2024
9.1.2-pre-01 115 12/23/2024
9.1.1 507 12/15/2024
9.1.1-pre-01 122 12/15/2024
9.1.0 186 12/14/2024
9.1.0-pre-13 124 12/13/2024
9.1.0-pre-12 115 12/13/2024
9.1.0-pre-11 118 12/13/2024
9.1.0-pre-10 202 12/10/2024
9.1.0-pre-09 188 12/6/2024
9.1.0-pre-08 262 12/2/2024
9.1.0-pre-07 100 12/2/2024
9.1.0-pre-06 87 12/2/2024
9.1.0-pre-05 182 12/1/2024
9.1.0-pre-04 136 11/29/2024
9.1.0-pre-03 431 11/25/2024
9.1.0-pre-02 182 11/24/2024
9.1.0-pre-01 122 11/23/2024
9.0.1 524 11/20/2024
9.0.0 254 11/18/2024
9.0.0-pre-02 98 11/18/2024
9.0.0-pre-01 231 11/15/2024
8.12.0 507 11/12/2024
8.12.0-pre-15 152 11/11/2024
8.12.0-pre-14 134 11/11/2024
8.12.0-pre-13 161 11/11/2024
8.12.0-pre-12 140 11/10/2024
8.12.0-pre-11 151 11/9/2024
8.12.0-pre-10 272 11/5/2024
8.12.0-pre-09 110 11/5/2024
8.12.0-pre-08 275 11/1/2024
8.12.0-pre-07 317 10/27/2024
8.12.0-pre-06 212 10/24/2024
8.12.0-pre-05 157 10/21/2024
8.12.0-pre-04 139 10/20/2024
8.12.0-pre-03 597 10/6/2024
8.12.0-pre-02 217 10/2/2024
8.12.0-pre-01 134 9/29/2024
8.11.1-pre-04 162 9/27/2024
8.11.1-pre-03 123 9/26/2024
8.11.1-pre-02 279 9/22/2024
8.11.1-pre-01 219 9/19/2024
8.11.0 524 9/16/2024
8.11.0-pre-09 144 9/15/2024
8.11.0-pre-08 166 9/13/2024
8.11.0-pre-07 178 9/10/2024
8.11.0-pre-06 318 9/4/2024
8.11.0-pre-05 142 9/3/2024
8.11.0-pre-04 356 8/22/2024
8.11.0-pre-03 178 8/21/2024
8.11.0-pre-02 185 8/19/2024
8.11.0-pre-01 199 8/16/2024
8.10.0 695 8/8/2024
8.10.0-pre-05 193 8/4/2024
8.10.0-pre-04 114 8/3/2024
8.10.0-pre-03 775 6/26/2024
8.10.0-pre-02 147 6/26/2024
8.10.0-pre-01 133 6/25/2024
8.9.0 1,253 6/9/2024
8.9.0-pre-04 132 6/9/2024
8.9.0-pre-03 180 6/6/2024
8.9.0-pre-02 226 5/31/2024
8.9.0-pre-01 134 5/28/2024
8.8.2-pre-05 163 5/27/2024
8.8.2-pre-04 138 5/26/2024
8.8.2-pre-03 153 5/23/2024
8.8.2-pre-02 308 5/9/2024
8.8.2-pre-01 197 5/1/2024
8.8.1 3,566 4/13/2024
8.8.1-pre-02 113 4/12/2024
8.8.1-pre-01 145 4/12/2024
8.8.0 575 4/1/2024
8.8.0-pre-04 156 3/29/2024
8.8.0-pre-03 273 3/16/2024
8.8.0-pre-02 200 3/10/2024
8.8.0-pre-01 303 2/27/2024
8.7.6 1,800 2/23/2024
8.7.6-pre-08 192 2/23/2024
8.7.6-pre-07 130 2/21/2024
8.7.6-pre-06 134 2/21/2024
8.7.6-pre-05 153 2/18/2024
8.7.6-pre-04 176 2/14/2024
8.7.6-pre-03 128 2/14/2024
8.7.6-pre-02 120 2/14/2024
8.7.6-pre-01 118 2/12/2024
8.7.5 240 2/9/2024
8.7.5-pre-04 147 2/3/2024
8.7.5-pre-03 155 1/29/2024
8.7.5-pre-02 157 1/25/2024
8.7.5-pre-01 117 1/24/2024
8.7.4 406 1/23/2024
8.7.3-pre-02 135 1/22/2024
8.7.3-pre-01 215 1/20/2024
8.7.2 245 1/17/2024
8.7.2-pre-02 116 1/17/2024
8.7.2-pre-01 219 1/11/2024
8.7.1 351 1/9/2024
8.7.0 246 1/8/2024
8.7.0-pre-05 170 1/7/2024
8.7.0-pre-04 185 1/5/2024
8.7.0-pre-03 144 1/4/2024
8.7.0-pre-02 185 12/31/2023
8.7.0-pre-01 133 12/31/2023
8.6.0 242 12/31/2023
8.6.0-pre-03 191 12/25/2023
8.6.0-pre-02 129 12/25/2023
8.6.0-pre-01 217 12/21/2023
8.5.0 291 12/20/2023
8.5.0-pre-02 193 12/16/2023
8.5.0-pre-01 137 12/15/2023
8.4.0 220 12/14/2023
8.4.0-pre-01 141 12/13/2023
8.3.0 200 12/12/2023
8.3.0-pre-03 153 12/11/2023
8.3.0-pre-02 157 12/11/2023
8.3.0-pre-01 154 12/11/2023
8.2.0 361 12/2/2023
8.2.0-pre-05 149 12/2/2023
8.2.0-pre-04 202 12/1/2023
8.2.0-pre-03 165 11/30/2023
8.2.0-pre-02 187 11/29/2023
8.2.0-pre-01 296 11/25/2023
8.1.0 336 11/22/2023
8.1.0-pre-03 147 11/22/2023
8.1.0-pre-02 184 11/20/2023
8.1.0-pre-01 206 11/17/2023
8.0.1 244 11/14/2023
8.0.0-pre-01 168 11/14/2023
7.3.0 155 11/14/2023
7.3.0-pre-01 102 11/14/2023
7.2.0 131 11/14/2023
7.2.0-pre-02 108 11/14/2023
7.2.0-pre-01 158 11/12/2023
7.1.0 210 11/8/2023
7.1.0-pre-05 144 11/7/2023
7.1.0-pre-04 323 11/4/2023
7.1.0-pre-03 392 10/27/2023
7.1.0-pre-02 289 10/23/2023
7.1.0-pre-01 327 10/17/2023
7.0.0 318 10/15/2023
7.0.0-pre-02 108 10/15/2023
7.0.0-pre-01 225 10/13/2023
6.1.0 258 10/13/2023
6.1.0-pre-03 112 10/13/2023
6.1.0-pre-02 127 10/12/2023
6.1.0-pre-01 168 10/11/2023
6.0.0 210 10/9/2023
6.0.0-pre-05 126 10/8/2023
6.0.0-pre-04 136 10/6/2023
6.0.0-pre-03 169 10/2/2023
6.0.0-pre-02 180 9/29/2023
6.0.0-pre-01 139 9/27/2023
5.6.1 438 9/20/2023
5.6.1-pre-01 142 9/20/2023
5.6.0 197 9/20/2023
5.6.0-pre-03 136 9/20/2023
5.6.0-pre-02 244 9/18/2023
5.6.0-pre-01 352 9/14/2023
5.5.0 628 9/2/2023
5.5.0-pre-08 213 9/2/2023
5.5.0-pre-07 218 8/30/2023
5.5.0-pre-06 181 8/29/2023
5.5.0-pre-05 205 8/28/2023
5.5.0-pre-04 178 8/28/2023
5.5.0-pre-03 218 8/27/2023
5.5.0-pre-02 205 8/26/2023
5.5.0-pre-01 198 8/24/2023
5.4.0 316 8/20/2023
5.4.0-pre-05 195 8/20/2023
5.4.0-pre-04 223 8/19/2023
5.4.0-pre-03 191 8/19/2023
5.4.0-pre-02 198 8/19/2023
5.4.0-pre-01 257 8/15/2023
5.3.0 371 8/10/2023
5.3.0-pre-07 200 8/9/2023
5.3.0-pre-06 214 8/8/2023
5.3.0-pre-05 240 8/7/2023
5.3.0-pre-04 242 8/6/2023
5.3.0-pre-03 268 8/1/2023
5.3.0-pre-02 173 8/1/2023
5.3.0-pre-01 197 7/31/2023
5.2.0 323 7/28/2023
5.2.0-pre-05 206 7/27/2023
5.2.0-pre-03 603 7/24/2023
5.2.0-pre-02 206 7/24/2023
5.2.0-pre-01 297 7/10/2023
5.1.0 500 7/5/2023
5.1.0-pre-16 198 7/4/2023
5.1.0-pre-15 246 7/3/2023
5.1.0-pre-14 204 7/3/2023
5.1.0-pre-13 188 7/3/2023
5.1.0-pre-12 207 7/2/2023
5.1.0-pre-11 187 7/2/2023
5.1.0-pre-10 180 7/2/2023
5.1.0-pre-09 261 6/29/2023
5.1.0-pre-08 217 6/27/2023
5.1.0-pre-07 187 6/25/2023
5.1.0-pre-06 196 6/24/2023
5.1.0-pre-04 213 6/24/2023
5.1.0-pre-03 239 6/22/2023
5.1.0-pre-02 283 6/17/2023
5.1.0-pre-01 207 6/16/2023
5.0.0 432 5/29/2023
5.0.0-pre-02 191 5/29/2023
5.0.0-pre-01 213 5/25/2023
4.9.11-pre-02 179 5/25/2023
4.9.11-pre-01 192 5/25/2023
4.9.10 304 5/25/2023
4.9.10-pre-07 175 5/25/2023
4.9.10-pre-06 237 5/16/2023
4.9.10-pre-05 182 5/15/2023
4.9.10-pre-04 230 5/6/2023
4.9.10-pre-03 225 5/2/2023
4.9.10-pre-01 211 4/26/2023
4.9.9 455 4/10/2023
4.9.9-pre-03 201 4/9/2023
4.9.9-pre-02 244 3/29/2023
4.9.9-pre-01 238 3/29/2023
4.9.8-pre-02 303 3/21/2023
4.9.8-pre-01 230 3/20/2023
4.9.7-pre-01 298 3/6/2023
4.9.6 660 2/25/2023
4.9.6-pre-05 272 2/23/2023
4.9.6-pre-04 211 2/23/2023
4.9.6-pre-03 271 2/20/2023
4.9.6-pre-02 236 2/15/2023
4.9.5 644 2/8/2023
4.9.5-pre-03 202 2/8/2023
4.9.5-pre-02 199 2/8/2023
4.9.5-pre-01 204 2/7/2023
4.9.4 487 1/31/2023
4.9.4-pre-02 225 1/31/2023
4.9.4-pre-01 239 1/27/2023
4.9.3-pre-04 259 1/22/2023
4.9.3-pre-03 244 1/20/2023
4.9.3-pre-02 248 1/19/2023
4.9.2-pre-01 273 1/9/2023
4.9.1-pre-02 321 12/26/2022
4.9.1-pre-01 234 12/18/2022
4.9.0-pre-02 305 11/27/2022
4.9.0-pre-01 225 11/22/2022
4.8.0 597 11/15/2022
4.8.0-pre-02 189 11/14/2022
4.8.0-pre-01 222 11/11/2022
4.7.0 427 10/31/2022
4.7.0-pre-04 169 10/31/2022
4.7.0-pre-03 157 10/31/2022
4.7.0-pre-02 219 10/29/2022
4.7.0-pre-01 178 10/27/2022
4.6.0-pre-01 161 10/27/2022
4.5.0-pre-01 255 10/20/2022
4.4.1-pre-01 197 10/20/2022
4.4.0-pre-01 174 10/15/2022
4.3.2-pre-04 158 10/7/2022
4.3.2-pre-03 150 10/6/2022
4.3.2-pre-01 175 9/29/2022
4.3.1 778 9/21/2022
4.3.0 177 9/21/2022
4.2.0-pre-07 187 9/19/2022
4.2.0-pre-05 225 9/18/2022
4.2.0-pre-04 211 9/18/2022
4.2.0-pre-02 296 9/14/2022
4.2.0-pre-01 170 9/12/2022
4.1.0 418 9/8/2022
4.1.0-pre-01 199 9/8/2022
4.0.0 289 9/1/2022
3.1.0-pre-07 168 9/1/2022
3.1.0-pre-06 169 8/30/2022
3.1.0-pre-05 172 8/29/2022
3.1.0-pre-04 186 8/28/2022
3.1.0-pre-03 166 8/27/2022
3.1.0-pre-02 194 8/25/2022
3.1.0-pre-01 192 8/23/2022
3.0.0 318 8/15/2022
3.0.0-pre-09 182 8/15/2022
3.0.0-pre-08 175 8/15/2022
3.0.0-pre-07 201 8/15/2022
3.0.0-pre-06 221 8/14/2022
3.0.0-pre-05 232 8/14/2022
3.0.0-pre-04 339 8/9/2022
3.0.0-pre-03 258 8/8/2022
3.0.0-pre-02 275 8/7/2022
3.0.0-pre-01 414 7/29/2022
2.0.0 653 7/25/2022
2.0.0-pre-14 269 7/24/2022
2.0.0-pre-12 289 7/21/2022
2.0.0-pre-11 226 7/21/2022
2.0.0-pre-10 222 7/20/2022
2.0.0-pre-09 352 7/20/2022
2.0.0-pre-08 382 7/19/2022
2.0.0-pre-07 391 7/19/2022
2.0.0-pre-06 281 7/18/2022
2.0.0-pre-05 370 7/17/2022
2.0.0-pre-04 349 7/14/2022
2.0.0-pre-03 341 7/13/2022
2.0.0-pre-02 323 7/12/2022
2.0.0-pre-01 441 7/8/2022
2.0.0-pre-00 339 7/4/2022
1.0.2 835 7/4/2022
1.0.0 626 7/4/2022