Bit.Bswup 9.7.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.7.0-pre-02
                    
NuGet\Install-Package Bit.Bswup -Version 9.7.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.7.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.7.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.7.0-pre-02
                    
#r "nuget: Bit.Bswup, 9.7.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.
#:package Bit.Bswup@9.7.0-pre-02
                    
#: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.7.0-pre-02&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Bit.Bswup&version=9.7.0-pre-02&prerelease
                    
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
10.0.0-pre-06 113 10/31/2025
10.0.0-pre-05 214 10/21/2025
10.0.0-pre-04 206 10/15/2025
10.0.0-pre-03 168 10/12/2025
10.0.0-pre-02 225 9/25/2025
10.0.0-pre-01 328 9/15/2025
9.12.0 851 9/15/2025
9.12.0-pre-02 269 9/15/2025
9.12.0-pre-01 228 9/14/2025
9.11.4 477 9/3/2025
9.11.4-pre-03 199 9/2/2025
9.11.4-pre-02 189 9/2/2025
9.11.4-pre-01 158 8/22/2025
9.11.3 800 8/6/2025
9.11.3-pre-02 257 8/6/2025
9.11.3-pre-01 254 8/4/2025
9.11.2 277 7/31/2025
9.11.2-pre-02 142 7/30/2025
9.11.2-pre-01 140 7/29/2025
9.11.1 552 7/24/2025
9.11.1-pre-01 510 7/24/2025
9.11.0 655 7/22/2025
9.11.0-pre-04 525 7/21/2025
9.11.0-pre-03 310 7/20/2025
9.11.0-pre-02 194 7/16/2025
9.11.0-pre-01 228 7/13/2025
9.10.0 532 7/4/2025
9.10.0-pre-01 226 7/2/2025
9.9.2 692 6/14/2025
9.9.1 550 6/9/2025
9.9.1-pre-01 278 6/9/2025
9.9.0 278 6/7/2025
9.9.0-pre-03 279 6/5/2025
9.9.0-pre-02 283 6/3/2025
9.9.0-pre-01 192 6/3/2025
9.8.0 413 5/30/2025
9.8.0-pre-08 230 5/29/2025
9.8.0-pre-07 328 5/27/2025
9.8.0-pre-06 329 5/23/2025
9.8.0-pre-05 200 5/22/2025
9.8.0-pre-04 249 5/19/2025
9.8.0-pre-03 202 5/18/2025
9.8.0-pre-02 164 5/17/2025
9.8.0-pre-01 365 5/14/2025
9.7.4 1,073 5/13/2025
9.7.4-pre-04 270 5/13/2025
9.7.4-pre-03 268 5/12/2025
9.7.4-pre-02 295 5/10/2025
9.7.4-pre-01 405 5/6/2025
9.7.3 275 5/5/2025
9.7.3-pre-05 192 5/5/2025
9.7.3-pre-04 215 5/5/2025
9.7.3-pre-03 219 5/5/2025
9.7.3-pre-02 183 5/3/2025
9.7.3-pre-01 226 5/1/2025
9.7.2 617 4/26/2025
9.7.1 208 4/26/2025
9.7.1-pre-03 279 4/24/2025
9.7.1-pre-01 222 4/24/2025
9.7.0 469 4/22/2025
9.7.0-pre-12 218 4/22/2025
9.7.0-pre-11 249 4/22/2025
9.7.0-pre-10 223 4/21/2025
9.7.0-pre-09 259 4/21/2025
9.7.0-pre-08 222 4/19/2025
9.7.0-pre-07 476 4/14/2025
9.7.0-pre-06 295 4/14/2025
9.7.0-pre-05 313 4/13/2025
9.7.0-pre-04 172 4/13/2025
9.7.0-pre-03 412 4/9/2025
9.7.0-pre-02 400 4/3/2025
9.6.1 474 3/29/2025
9.6.1-pre-02 187 3/28/2025
9.6.1-pre-01 179 3/28/2025
9.6.0 645 3/26/2025
9.6.0-pre-14 500 3/26/2025
9.6.0-pre-13 510 3/26/2025
9.6.0-pre-12 205 3/21/2025
9.6.0-pre-11 433 3/15/2025
9.6.0-pre-10 167 3/14/2025
9.6.0-pre-08 780 3/11/2025
9.6.0-pre-07 247 3/10/2025
9.6.0-pre-06 299 3/8/2025
9.6.0-pre-05 509 3/5/2025
9.6.0-pre-04 291 3/5/2025
9.6.0-pre-03 397 3/2/2025
9.6.0-pre-02 202 3/1/2025
9.6.0-pre-01 187 3/1/2025
9.5.1 1,021 2/27/2025
9.5.1-pre-04 156 2/27/2025
9.5.1-pre-03 180 2/27/2025
9.5.1-pre-02 180 2/26/2025
9.5.1-pre-01 160 2/25/2025
9.5.0 258 2/24/2025
9.5.0-pre-05 178 2/24/2025
9.5.0-pre-04 320 2/22/2025
9.5.0-pre-03 164 2/22/2025
9.5.0-pre-02 391 2/20/2025
9.5.0-pre-01 171 2/20/2025
9.4.2-pre-04 199 2/18/2025
9.4.2-pre-03 201 2/17/2025
9.4.2-pre-02 244 2/16/2025
9.4.2-pre-01 491 2/12/2025
9.4.1 1,208 2/8/2025
9.4.1-pre-01 134 2/8/2025
9.4.0 235 2/8/2025
9.4.0-pre-05 160 2/8/2025
9.4.0-pre-04 205 2/7/2025
9.4.0-pre-03 213 2/6/2025
9.4.0-pre-02 228 2/2/2025
9.4.0-pre-01 137 2/1/2025
9.3.1-pre-05 565 1/26/2025
9.3.1-pre-04 493 1/23/2025
9.3.1-pre-03 277 1/19/2025
9.3.1-pre-02 150 1/18/2025
9.3.1-pre-01 220 1/14/2025
9.3.0 1,144 1/11/2025
9.3.0-pre-01 117 1/11/2025
9.2.1 655 1/5/2025
9.2.1-pre-02 249 1/4/2025
9.2.1-pre-01 266 1/3/2025
9.2.0 270 1/1/2025
9.2.0-pre-04 134 1/1/2025
9.2.0-pre-03 167 12/31/2024
9.2.0-pre-02 217 12/31/2024
9.2.0-pre-01 162 12/30/2024
9.1.2 614 12/24/2024
9.1.2-pre-01 140 12/23/2024
9.1.1 567 12/15/2024
9.1.1-pre-01 158 12/15/2024
9.1.0 231 12/14/2024
9.1.0-pre-13 149 12/13/2024
9.1.0-pre-12 147 12/13/2024
9.1.0-pre-11 161 12/13/2024
9.1.0-pre-10 227 12/10/2024
9.1.0-pre-09 221 12/6/2024
9.1.0-pre-08 279 12/2/2024
9.1.0-pre-07 144 12/2/2024
9.1.0-pre-06 115 12/2/2024
9.1.0-pre-05 211 12/1/2024
9.1.0-pre-04 169 11/29/2024
9.1.0-pre-03 458 11/25/2024
9.1.0-pre-02 220 11/24/2024
9.1.0-pre-01 155 11/23/2024
9.0.1 577 11/20/2024
9.0.0 305 11/18/2024
9.0.0-pre-02 123 11/18/2024
9.0.0-pre-01 274 11/15/2024
8.12.0 545 11/12/2024
8.12.0-pre-15 176 11/11/2024
8.12.0-pre-14 166 11/11/2024
8.12.0-pre-13 208 11/11/2024
8.12.0-pre-12 175 11/10/2024
8.12.0-pre-11 173 11/9/2024
8.12.0-pre-10 299 11/5/2024
8.12.0-pre-09 138 11/5/2024
8.12.0-pre-08 312 11/1/2024
8.12.0-pre-07 358 10/27/2024
8.12.0-pre-06 257 10/24/2024
8.12.0-pre-05 173 10/21/2024
8.12.0-pre-04 165 10/20/2024
8.12.0-pre-03 632 10/6/2024
8.12.0-pre-02 244 10/2/2024
8.12.0-pre-01 184 9/29/2024
8.11.1-pre-04 200 9/27/2024
8.11.1-pre-03 166 9/26/2024
8.11.1-pre-02 303 9/22/2024
8.11.1-pre-01 272 9/19/2024
8.11.0 561 9/16/2024
8.11.0-pre-09 180 9/15/2024
8.11.0-pre-08 201 9/13/2024
8.11.0-pre-07 204 9/10/2024
8.11.0-pre-06 393 9/4/2024
8.11.0-pre-05 184 9/3/2024
8.11.0-pre-04 396 8/22/2024
8.11.0-pre-03 213 8/21/2024
8.11.0-pre-02 212 8/19/2024
8.11.0-pre-01 237 8/16/2024
8.10.0 751 8/8/2024
8.10.0-pre-05 231 8/4/2024
8.10.0-pre-04 147 8/3/2024
8.10.0-pre-03 819 6/26/2024
8.10.0-pre-02 176 6/26/2024
8.10.0-pre-01 162 6/25/2024
8.9.0 1,338 6/9/2024
8.9.0-pre-04 160 6/9/2024
8.9.0-pre-03 205 6/6/2024
8.9.0-pre-02 253 5/31/2024
8.9.0-pre-01 160 5/28/2024
8.8.2-pre-05 203 5/27/2024
8.8.2-pre-04 180 5/26/2024
8.8.2-pre-03 191 5/23/2024
8.8.2-pre-02 312 5/9/2024
8.8.2-pre-01 223 5/1/2024
8.8.1 3,622 4/13/2024
8.8.1-pre-02 129 4/12/2024
8.8.1-pre-01 175 4/12/2024
8.8.0 634 4/1/2024
8.8.0-pre-04 196 3/29/2024
8.8.0-pre-03 298 3/16/2024
8.8.0-pre-02 243 3/10/2024
8.8.0-pre-01 332 2/27/2024
8.7.6 1,853 2/23/2024
8.7.6-pre-08 233 2/23/2024
8.7.6-pre-07 160 2/21/2024
8.7.6-pre-06 152 2/21/2024
8.7.6-pre-05 197 2/18/2024
8.7.6-pre-04 199 2/14/2024
8.7.6-pre-03 174 2/14/2024
8.7.6-pre-02 148 2/14/2024
8.7.6-pre-01 163 2/12/2024
8.7.5 288 2/9/2024
8.7.5-pre-04 184 2/3/2024
8.7.5-pre-03 201 1/29/2024
8.7.5-pre-02 196 1/25/2024
8.7.5-pre-01 144 1/24/2024
8.7.4 458 1/23/2024
8.7.3-pre-02 173 1/22/2024
8.7.3-pre-01 258 1/20/2024
8.7.2 296 1/17/2024
8.7.2-pre-02 133 1/17/2024
8.7.2-pre-01 235 1/11/2024
8.7.1 400 1/9/2024
8.7.0 288 1/8/2024
8.7.0-pre-05 213 1/7/2024
8.7.0-pre-04 223 1/5/2024
8.7.0-pre-03 192 1/4/2024
8.7.0-pre-02 233 12/31/2023
8.7.0-pre-01 161 12/31/2023
8.6.0 277 12/31/2023
8.6.0-pre-03 218 12/25/2023
8.6.0-pre-02 155 12/25/2023
8.6.0-pre-01 250 12/21/2023
8.5.0 340 12/20/2023
8.5.0-pre-02 224 12/16/2023
8.5.0-pre-01 173 12/15/2023
8.4.0 261 12/14/2023
8.4.0-pre-01 177 12/13/2023
8.3.0 242 12/12/2023
8.3.0-pre-03 195 12/11/2023
8.3.0-pre-02 196 12/11/2023
8.3.0-pre-01 180 12/11/2023
8.2.0 391 12/2/2023
8.2.0-pre-05 172 12/2/2023
8.2.0-pre-04 243 12/1/2023
8.2.0-pre-03 199 11/30/2023
8.2.0-pre-02 202 11/29/2023
8.2.0-pre-01 334 11/25/2023
8.1.0 371 11/22/2023
8.1.0-pre-03 162 11/22/2023
8.1.0-pre-02 225 11/20/2023
8.1.0-pre-01 233 11/17/2023
8.0.1 275 11/14/2023
8.0.0-pre-01 208 11/14/2023
7.3.0 172 11/14/2023
7.3.0-pre-01 120 11/14/2023
7.2.0 152 11/14/2023
7.2.0-pre-02 125 11/14/2023
7.2.0-pre-01 186 11/12/2023
7.1.0 229 11/8/2023
7.1.0-pre-05 166 11/7/2023
7.1.0-pre-04 347 11/4/2023
7.1.0-pre-03 396 10/27/2023
7.1.0-pre-02 307 10/23/2023
7.1.0-pre-01 348 10/17/2023
7.0.0 326 10/15/2023
7.0.0-pre-02 116 10/15/2023
7.0.0-pre-01 232 10/13/2023
6.1.0 264 10/13/2023
6.1.0-pre-03 130 10/13/2023
6.1.0-pre-02 142 10/12/2023
6.1.0-pre-01 185 10/11/2023
6.0.0 229 10/9/2023
6.0.0-pre-05 141 10/8/2023
6.0.0-pre-04 154 10/6/2023
6.0.0-pre-03 181 10/2/2023
6.0.0-pre-02 201 9/29/2023
6.0.0-pre-01 154 9/27/2023
5.6.1 481 9/20/2023
5.6.1-pre-01 182 9/20/2023
5.6.0 234 9/20/2023
5.6.0-pre-03 166 9/20/2023
5.6.0-pre-02 274 9/18/2023
5.6.0-pre-01 392 9/14/2023
5.5.0 675 9/2/2023
5.5.0-pre-08 259 9/2/2023
5.5.0-pre-07 252 8/30/2023
5.5.0-pre-06 221 8/29/2023
5.5.0-pre-05 233 8/28/2023
5.5.0-pre-04 217 8/28/2023
5.5.0-pre-03 240 8/27/2023
5.5.0-pre-02 233 8/26/2023
5.5.0-pre-01 240 8/24/2023
5.4.0 361 8/20/2023
5.4.0-pre-05 245 8/20/2023
5.4.0-pre-04 261 8/19/2023
5.4.0-pre-03 223 8/19/2023
5.4.0-pre-02 243 8/19/2023
5.4.0-pre-01 297 8/15/2023
5.3.0 417 8/10/2023
5.3.0-pre-07 242 8/9/2023
5.3.0-pre-06 266 8/8/2023
5.3.0-pre-05 272 8/7/2023
5.3.0-pre-04 289 8/6/2023
5.3.0-pre-03 299 8/1/2023
5.3.0-pre-02 219 8/1/2023
5.3.0-pre-01 241 7/31/2023
5.2.0 355 7/28/2023
5.2.0-pre-05 243 7/27/2023
5.2.0-pre-03 642 7/24/2023
5.2.0-pre-02 239 7/24/2023
5.2.0-pre-01 341 7/10/2023
5.1.0 534 7/5/2023
5.1.0-pre-16 238 7/4/2023
5.1.0-pre-15 284 7/3/2023
5.1.0-pre-14 247 7/3/2023
5.1.0-pre-13 233 7/3/2023
5.1.0-pre-12 250 7/2/2023
5.1.0-pre-11 224 7/2/2023
5.1.0-pre-10 230 7/2/2023
5.1.0-pre-09 293 6/29/2023
5.1.0-pre-08 256 6/27/2023
5.1.0-pre-07 242 6/25/2023
5.1.0-pre-06 234 6/24/2023
5.1.0-pre-04 262 6/24/2023
5.1.0-pre-03 286 6/22/2023
5.1.0-pre-02 337 6/17/2023
5.1.0-pre-01 251 6/16/2023
5.0.0 490 5/29/2023
5.0.0-pre-02 240 5/29/2023
5.0.0-pre-01 256 5/25/2023
4.9.11-pre-02 217 5/25/2023
4.9.11-pre-01 247 5/25/2023
4.9.10 344 5/25/2023
4.9.10-pre-07 204 5/25/2023
4.9.10-pre-06 294 5/16/2023
4.9.10-pre-05 225 5/15/2023
4.9.10-pre-04 272 5/6/2023
4.9.10-pre-03 270 5/2/2023
4.9.10-pre-01 262 4/26/2023
4.9.9 507 4/10/2023
4.9.9-pre-03 258 4/9/2023
4.9.9-pre-02 303 3/29/2023
4.9.9-pre-01 285 3/29/2023
4.9.8-pre-02 354 3/21/2023
4.9.8-pre-01 284 3/20/2023
4.9.7-pre-01 340 3/6/2023
4.9.6 719 2/25/2023
4.9.6-pre-05 328 2/23/2023
4.9.6-pre-04 264 2/23/2023
4.9.6-pre-03 328 2/20/2023
4.9.6-pre-02 279 2/15/2023
4.9.5 689 2/8/2023
4.9.5-pre-03 254 2/8/2023
4.9.5-pre-02 242 2/8/2023
4.9.5-pre-01 259 2/7/2023
4.9.4 536 1/31/2023
4.9.4-pre-02 286 1/31/2023
4.9.4-pre-01 288 1/27/2023
4.9.3-pre-04 301 1/22/2023
4.9.3-pre-03 299 1/20/2023
4.9.3-pre-02 303 1/19/2023
4.9.2-pre-01 327 1/9/2023
4.9.1-pre-02 374 12/26/2022
4.9.1-pre-01 289 12/18/2022
4.9.0-pre-02 359 11/27/2022
4.9.0-pre-01 275 11/22/2022
4.8.0 653 11/15/2022
4.8.0-pre-02 244 11/14/2022
4.8.0-pre-01 256 11/11/2022
4.7.0 471 10/31/2022
4.7.0-pre-04 190 10/31/2022
4.7.0-pre-03 197 10/31/2022
4.7.0-pre-02 250 10/29/2022
4.7.0-pre-01 213 10/27/2022
4.6.0-pre-01 194 10/27/2022
4.5.0-pre-01 278 10/20/2022
4.4.1-pre-01 220 10/20/2022
4.4.0-pre-01 216 10/15/2022
4.3.2-pre-04 198 10/7/2022
4.3.2-pre-03 193 10/6/2022
4.3.2-pre-01 206 9/29/2022
4.3.1 815 9/21/2022
4.3.0 199 9/21/2022
4.2.0-pre-07 226 9/19/2022
4.2.0-pre-05 263 9/18/2022
4.2.0-pre-04 244 9/18/2022
4.2.0-pre-02 338 9/14/2022
4.2.0-pre-01 191 9/12/2022
4.1.0 456 9/8/2022
4.1.0-pre-01 239 9/8/2022
4.0.0 330 9/1/2022
3.1.0-pre-07 213 9/1/2022
3.1.0-pre-06 210 8/30/2022
3.1.0-pre-05 206 8/29/2022
3.1.0-pre-04 218 8/28/2022
3.1.0-pre-03 193 8/27/2022
3.1.0-pre-02 218 8/25/2022
3.1.0-pre-01 214 8/23/2022
3.0.0 356 8/15/2022
3.0.0-pre-09 218 8/15/2022
3.0.0-pre-08 213 8/15/2022
3.0.0-pre-07 242 8/15/2022
3.0.0-pre-06 280 8/14/2022
3.0.0-pre-05 277 8/14/2022
3.0.0-pre-04 384 8/9/2022
3.0.0-pre-03 303 8/8/2022
3.0.0-pre-02 335 8/7/2022
3.0.0-pre-01 468 7/29/2022
2.0.0 700 7/25/2022
2.0.0-pre-14 321 7/24/2022
2.0.0-pre-12 337 7/21/2022
2.0.0-pre-11 272 7/21/2022
2.0.0-pre-10 276 7/20/2022
2.0.0-pre-09 424 7/20/2022
2.0.0-pre-08 484 7/19/2022
2.0.0-pre-07 483 7/19/2022
2.0.0-pre-06 369 7/18/2022
2.0.0-pre-05 457 7/17/2022
2.0.0-pre-04 426 7/14/2022
2.0.0-pre-03 448 7/13/2022
2.0.0-pre-02 403 7/12/2022
2.0.0-pre-01 547 7/8/2022
2.0.0-pre-00 432 7/4/2022
1.0.2 942 7/4/2022
1.0.0 743 7/4/2022