Bit.Bswup 10.0.0-pre-03

This is a prerelease version of Bit.Bswup.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Bit.Bswup --version 10.0.0-pre-03
                    
NuGet\Install-Package Bit.Bswup -Version 10.0.0-pre-03
                    
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="10.0.0-pre-03" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bit.Bswup" Version="10.0.0-pre-03" />
                    
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 10.0.0-pre-03
                    
#r "nuget: Bit.Bswup, 10.0.0-pre-03"
                    
#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@10.0.0-pre-03
                    
#: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=10.0.0-pre-03&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Bit.Bswup&version=10.0.0-pre-03&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.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.
  • 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.
  • forcePrerender: Forces the prerendering of the default document for every navigation request to ensure that the server always has the latest version of the app. This is useful when you have a server-rendered app and you want to make sure that the client always has the latest version of the app.
  • enableCacheControl: Enables the cache-control mechanism by providing cache busting setting and header to each request (cache:no-store settings and cache-control:no-cache header).
  • mode: Determines the mode of the Bswup. Possible values are:
    • NoPrerender: Disables the prerendering of the default document for every navigation request.
    • InitialPrerender: Enables the prerendering of the default document only for the initial navigation request.
    • AlwaysPrerender: Enables the prerendering of the default document for every navigation request.
    • FullOffline: Enables the full offline mode where all assets are cached and served from the cache from first time the app is loaded.
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 is compatible.  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-04 29 10/15/2025
10.0.0-pre-03 99 10/12/2025
10.0.0-pre-02 221 9/25/2025
10.0.0-pre-01 326 9/15/2025
9.12.0 623 9/15/2025
9.12.0-pre-02 267 9/15/2025
9.12.0-pre-01 226 9/14/2025
9.11.4 471 9/3/2025
9.11.4-pre-03 197 9/2/2025
9.11.4-pre-02 186 9/2/2025
9.11.4-pre-01 156 8/22/2025
9.11.3 750 8/6/2025
9.11.3-pre-02 252 8/6/2025
9.11.3-pre-01 252 8/4/2025
9.11.2 272 7/31/2025
9.11.2-pre-02 138 7/30/2025
9.11.2-pre-01 139 7/29/2025
9.11.1 547 7/24/2025
9.11.1-pre-01 508 7/24/2025
9.11.0 650 7/22/2025
9.11.0-pre-04 523 7/21/2025
9.11.0-pre-03 308 7/20/2025
9.11.0-pre-02 188 7/16/2025
9.11.0-pre-01 223 7/13/2025
9.10.0 526 7/4/2025
9.10.0-pre-01 226 7/2/2025
9.9.2 680 6/14/2025
9.9.1 543 6/9/2025
9.9.1-pre-01 271 6/9/2025
9.9.0 271 6/7/2025
9.9.0-pre-03 273 6/5/2025
9.9.0-pre-02 281 6/3/2025
9.9.0-pre-01 187 6/3/2025
9.8.0 402 5/30/2025
9.8.0-pre-08 229 5/29/2025
9.8.0-pre-07 325 5/27/2025
9.8.0-pre-06 324 5/23/2025
9.8.0-pre-05 198 5/22/2025
9.8.0-pre-04 245 5/19/2025
9.8.0-pre-03 194 5/18/2025
9.8.0-pre-02 162 5/17/2025
9.8.0-pre-01 358 5/14/2025
9.7.4 1,048 5/13/2025
9.7.4-pre-04 265 5/13/2025
9.7.4-pre-03 265 5/12/2025
9.7.4-pre-02 287 5/10/2025
9.7.4-pre-01 402 5/6/2025
9.7.3 272 5/5/2025
9.7.3-pre-05 187 5/5/2025
9.7.3-pre-04 203 5/5/2025
9.7.3-pre-03 212 5/5/2025
9.7.3-pre-02 177 5/3/2025
9.7.3-pre-01 223 5/1/2025
9.7.2 610 4/26/2025
9.7.1 198 4/26/2025
9.7.1-pre-03 275 4/24/2025
9.7.1-pre-01 212 4/24/2025
9.7.0 463 4/22/2025
9.7.0-pre-12 211 4/22/2025
9.7.0-pre-11 244 4/22/2025
9.7.0-pre-10 221 4/21/2025
9.7.0-pre-09 254 4/21/2025
9.7.0-pre-08 218 4/19/2025
9.7.0-pre-07 475 4/14/2025
9.7.0-pre-06 292 4/14/2025
9.7.0-pre-05 306 4/13/2025
9.7.0-pre-04 169 4/13/2025
9.7.0-pre-03 405 4/9/2025
9.7.0-pre-02 389 4/3/2025
9.6.1 471 3/29/2025
9.6.1-pre-02 183 3/28/2025
9.6.1-pre-01 169 3/28/2025
9.6.0 639 3/26/2025
9.6.0-pre-14 497 3/26/2025
9.6.0-pre-13 501 3/26/2025
9.6.0-pre-12 200 3/21/2025
9.6.0-pre-11 423 3/15/2025
9.6.0-pre-10 166 3/14/2025
9.6.0-pre-08 778 3/11/2025
9.6.0-pre-07 239 3/10/2025
9.6.0-pre-06 284 3/8/2025
9.6.0-pre-05 503 3/5/2025
9.6.0-pre-04 286 3/5/2025
9.6.0-pre-03 389 3/2/2025
9.6.0-pre-02 198 3/1/2025
9.6.0-pre-01 178 3/1/2025
9.5.1 1,010 2/27/2025
9.5.1-pre-04 150 2/27/2025
9.5.1-pre-03 173 2/27/2025
9.5.1-pre-02 175 2/26/2025
9.5.1-pre-01 157 2/25/2025
9.5.0 250 2/24/2025
9.5.0-pre-05 171 2/24/2025
9.5.0-pre-04 314 2/22/2025
9.5.0-pre-03 157 2/22/2025
9.5.0-pre-02 390 2/20/2025
9.5.0-pre-01 165 2/20/2025
9.4.2-pre-04 198 2/18/2025
9.4.2-pre-03 197 2/17/2025
9.4.2-pre-02 242 2/16/2025
9.4.2-pre-01 483 2/12/2025
9.4.1 1,201 2/8/2025
9.4.1-pre-01 130 2/8/2025
9.4.0 223 2/8/2025
9.4.0-pre-05 155 2/8/2025
9.4.0-pre-04 198 2/7/2025
9.4.0-pre-03 206 2/6/2025
9.4.0-pre-02 223 2/2/2025
9.4.0-pre-01 136 2/1/2025
9.3.1-pre-05 559 1/26/2025
9.3.1-pre-04 488 1/23/2025
9.3.1-pre-03 274 1/19/2025
9.3.1-pre-02 143 1/18/2025
9.3.1-pre-01 211 1/14/2025
9.3.0 1,114 1/11/2025
9.3.0-pre-01 114 1/11/2025
9.2.1 649 1/5/2025
9.2.1-pre-02 246 1/4/2025
9.2.1-pre-01 261 1/3/2025
9.2.0 261 1/1/2025
9.2.0-pre-04 130 1/1/2025
9.2.0-pre-03 164 12/31/2024
9.2.0-pre-02 214 12/31/2024
9.2.0-pre-01 152 12/30/2024
9.1.2 605 12/24/2024
9.1.2-pre-01 138 12/23/2024
9.1.1 557 12/15/2024
9.1.1-pre-01 155 12/15/2024
9.1.0 225 12/14/2024
9.1.0-pre-13 148 12/13/2024
9.1.0-pre-12 143 12/13/2024
9.1.0-pre-11 149 12/13/2024
9.1.0-pre-10 225 12/10/2024
9.1.0-pre-09 219 12/6/2024
9.1.0-pre-08 276 12/2/2024
9.1.0-pre-07 138 12/2/2024
9.1.0-pre-06 111 12/2/2024
9.1.0-pre-05 206 12/1/2024
9.1.0-pre-04 161 11/29/2024
9.1.0-pre-03 456 11/25/2024
9.1.0-pre-02 212 11/24/2024
9.1.0-pre-01 152 11/23/2024
9.0.1 568 11/20/2024
9.0.0 296 11/18/2024
9.0.0-pre-02 121 11/18/2024
9.0.0-pre-01 270 11/15/2024
8.12.0 541 11/12/2024
8.12.0-pre-15 175 11/11/2024
8.12.0-pre-14 164 11/11/2024
8.12.0-pre-13 203 11/11/2024
8.12.0-pre-12 171 11/10/2024
8.12.0-pre-11 170 11/9/2024
8.12.0-pre-10 296 11/5/2024
8.12.0-pre-09 135 11/5/2024
8.12.0-pre-08 306 11/1/2024
8.12.0-pre-07 354 10/27/2024
8.12.0-pre-06 249 10/24/2024
8.12.0-pre-05 172 10/21/2024
8.12.0-pre-04 164 10/20/2024
8.12.0-pre-03 629 10/6/2024
8.12.0-pre-02 241 10/2/2024
8.12.0-pre-01 172 9/29/2024
8.11.1-pre-04 193 9/27/2024
8.11.1-pre-03 158 9/26/2024
8.11.1-pre-02 302 9/22/2024
8.11.1-pre-01 262 9/19/2024
8.11.0 558 9/16/2024
8.11.0-pre-09 176 9/15/2024
8.11.0-pre-08 196 9/13/2024
8.11.0-pre-07 201 9/10/2024
8.11.0-pre-06 386 9/4/2024
8.11.0-pre-05 176 9/3/2024
8.11.0-pre-04 392 8/22/2024
8.11.0-pre-03 208 8/21/2024
8.11.0-pre-02 209 8/19/2024
8.11.0-pre-01 233 8/16/2024
8.10.0 741 8/8/2024
8.10.0-pre-05 228 8/4/2024
8.10.0-pre-04 143 8/3/2024
8.10.0-pre-03 815 6/26/2024
8.10.0-pre-02 169 6/26/2024
8.10.0-pre-01 155 6/25/2024
8.9.0 1,326 6/9/2024
8.9.0-pre-04 156 6/9/2024
8.9.0-pre-03 202 6/6/2024
8.9.0-pre-02 250 5/31/2024
8.9.0-pre-01 159 5/28/2024
8.8.2-pre-05 200 5/27/2024
8.8.2-pre-04 175 5/26/2024
8.8.2-pre-03 184 5/23/2024
8.8.2-pre-02 310 5/9/2024
8.8.2-pre-01 220 5/1/2024
8.8.1 3,611 4/13/2024
8.8.1-pre-02 128 4/12/2024
8.8.1-pre-01 169 4/12/2024
8.8.0 626 4/1/2024
8.8.0-pre-04 190 3/29/2024
8.8.0-pre-03 296 3/16/2024
8.8.0-pre-02 237 3/10/2024
8.8.0-pre-01 329 2/27/2024
8.7.6 1,845 2/23/2024
8.7.6-pre-08 231 2/23/2024
8.7.6-pre-07 152 2/21/2024
8.7.6-pre-06 149 2/21/2024
8.7.6-pre-05 193 2/18/2024
8.7.6-pre-04 193 2/14/2024
8.7.6-pre-03 170 2/14/2024
8.7.6-pre-02 144 2/14/2024
8.7.6-pre-01 153 2/12/2024
8.7.5 280 2/9/2024
8.7.5-pre-04 182 2/3/2024
8.7.5-pre-03 195 1/29/2024
8.7.5-pre-02 195 1/25/2024
8.7.5-pre-01 141 1/24/2024
8.7.4 453 1/23/2024
8.7.3-pre-02 169 1/22/2024
8.7.3-pre-01 252 1/20/2024
8.7.2 290 1/17/2024
8.7.2-pre-02 132 1/17/2024
8.7.2-pre-01 233 1/11/2024
8.7.1 394 1/9/2024
8.7.0 281 1/8/2024
8.7.0-pre-05 206 1/7/2024
8.7.0-pre-04 220 1/5/2024
8.7.0-pre-03 182 1/4/2024
8.7.0-pre-02 227 12/31/2023
8.7.0-pre-01 156 12/31/2023
8.6.0 274 12/31/2023
8.6.0-pre-03 214 12/25/2023
8.6.0-pre-02 153 12/25/2023
8.6.0-pre-01 241 12/21/2023
8.5.0 333 12/20/2023
8.5.0-pre-02 218 12/16/2023
8.5.0-pre-01 168 12/15/2023
8.4.0 255 12/14/2023
8.4.0-pre-01 172 12/13/2023
8.3.0 233 12/12/2023
8.3.0-pre-03 191 12/11/2023
8.3.0-pre-02 192 12/11/2023
8.3.0-pre-01 177 12/11/2023
8.2.0 390 12/2/2023
8.2.0-pre-05 171 12/2/2023
8.2.0-pre-04 239 12/1/2023
8.2.0-pre-03 189 11/30/2023
8.2.0-pre-02 200 11/29/2023
8.2.0-pre-01 331 11/25/2023
8.1.0 364 11/22/2023
8.1.0-pre-03 160 11/22/2023
8.1.0-pre-02 221 11/20/2023
8.1.0-pre-01 227 11/17/2023
8.0.1 271 11/14/2023
8.0.0-pre-01 204 11/14/2023
7.3.0 165 11/14/2023
7.3.0-pre-01 112 11/14/2023
7.2.0 143 11/14/2023
7.2.0-pre-02 120 11/14/2023
7.2.0-pre-01 175 11/12/2023
7.1.0 220 11/8/2023
7.1.0-pre-05 161 11/7/2023
7.1.0-pre-04 340 11/4/2023
7.1.0-pre-03 395 10/27/2023
7.1.0-pre-02 304 10/23/2023
7.1.0-pre-01 343 10/17/2023
7.0.0 323 10/15/2023
7.0.0-pre-02 111 10/15/2023
7.0.0-pre-01 228 10/13/2023
6.1.0 262 10/13/2023
6.1.0-pre-03 122 10/13/2023
6.1.0-pre-02 140 10/12/2023
6.1.0-pre-01 183 10/11/2023
6.0.0 226 10/9/2023
6.0.0-pre-05 138 10/8/2023
6.0.0-pre-04 151 10/6/2023
6.0.0-pre-03 179 10/2/2023
6.0.0-pre-02 192 9/29/2023
6.0.0-pre-01 149 9/27/2023
5.6.1 475 9/20/2023
5.6.1-pre-01 177 9/20/2023
5.6.0 230 9/20/2023
5.6.0-pre-03 160 9/20/2023
5.6.0-pre-02 267 9/18/2023
5.6.0-pre-01 384 9/14/2023
5.5.0 670 9/2/2023
5.5.0-pre-08 250 9/2/2023
5.5.0-pre-07 248 8/30/2023
5.5.0-pre-06 217 8/29/2023
5.5.0-pre-05 232 8/28/2023
5.5.0-pre-04 210 8/28/2023
5.5.0-pre-03 237 8/27/2023
5.5.0-pre-02 232 8/26/2023
5.5.0-pre-01 237 8/24/2023
5.4.0 354 8/20/2023
5.4.0-pre-05 238 8/20/2023
5.4.0-pre-04 255 8/19/2023
5.4.0-pre-03 219 8/19/2023
5.4.0-pre-02 236 8/19/2023
5.4.0-pre-01 291 8/15/2023
5.3.0 415 8/10/2023
5.3.0-pre-07 239 8/9/2023
5.3.0-pre-06 260 8/8/2023
5.3.0-pre-05 269 8/7/2023
5.3.0-pre-04 282 8/6/2023
5.3.0-pre-03 296 8/1/2023
5.3.0-pre-02 211 8/1/2023
5.3.0-pre-01 236 7/31/2023
5.2.0 352 7/28/2023
5.2.0-pre-05 234 7/27/2023
5.2.0-pre-03 635 7/24/2023
5.2.0-pre-02 237 7/24/2023
5.2.0-pre-01 334 7/10/2023
5.1.0 530 7/5/2023
5.1.0-pre-16 229 7/4/2023
5.1.0-pre-15 278 7/3/2023
5.1.0-pre-14 235 7/3/2023
5.1.0-pre-13 228 7/3/2023
5.1.0-pre-12 241 7/2/2023
5.1.0-pre-11 217 7/2/2023
5.1.0-pre-10 218 7/2/2023
5.1.0-pre-09 291 6/29/2023
5.1.0-pre-08 248 6/27/2023
5.1.0-pre-07 231 6/25/2023
5.1.0-pre-06 229 6/24/2023
5.1.0-pre-04 254 6/24/2023
5.1.0-pre-03 277 6/22/2023
5.1.0-pre-02 325 6/17/2023
5.1.0-pre-01 247 6/16/2023
5.0.0 478 5/29/2023
5.0.0-pre-02 233 5/29/2023
5.0.0-pre-01 246 5/25/2023
4.9.11-pre-02 211 5/25/2023
4.9.11-pre-01 234 5/25/2023
4.9.10 337 5/25/2023
4.9.10-pre-07 198 5/25/2023
4.9.10-pre-06 284 5/16/2023
4.9.10-pre-05 213 5/15/2023
4.9.10-pre-04 265 5/6/2023
4.9.10-pre-03 260 5/2/2023
4.9.10-pre-01 251 4/26/2023
4.9.9 499 4/10/2023
4.9.9-pre-03 245 4/9/2023
4.9.9-pre-02 292 3/29/2023
4.9.9-pre-01 277 3/29/2023
4.9.8-pre-02 344 3/21/2023
4.9.8-pre-01 276 3/20/2023
4.9.7-pre-01 333 3/6/2023
4.9.6 711 2/25/2023
4.9.6-pre-05 321 2/23/2023
4.9.6-pre-04 254 2/23/2023
4.9.6-pre-03 320 2/20/2023
4.9.6-pre-02 273 2/15/2023
4.9.5 681 2/8/2023
4.9.5-pre-03 246 2/8/2023
4.9.5-pre-02 235 2/8/2023
4.9.5-pre-01 250 2/7/2023
4.9.4 532 1/31/2023
4.9.4-pre-02 277 1/31/2023
4.9.4-pre-01 284 1/27/2023
4.9.3-pre-04 296 1/22/2023
4.9.3-pre-03 290 1/20/2023
4.9.3-pre-02 297 1/19/2023
4.9.2-pre-01 322 1/9/2023
4.9.1-pre-02 366 12/26/2022
4.9.1-pre-01 283 12/18/2022
4.9.0-pre-02 353 11/27/2022
4.9.0-pre-01 273 11/22/2022
4.8.0 647 11/15/2022
4.8.0-pre-02 238 11/14/2022
4.8.0-pre-01 252 11/11/2022
4.7.0 461 10/31/2022
4.7.0-pre-04 188 10/31/2022
4.7.0-pre-03 188 10/31/2022
4.7.0-pre-02 246 10/29/2022
4.7.0-pre-01 204 10/27/2022
4.6.0-pre-01 189 10/27/2022
4.5.0-pre-01 275 10/20/2022
4.4.1-pre-01 215 10/20/2022
4.4.0-pre-01 205 10/15/2022
4.3.2-pre-04 193 10/7/2022
4.3.2-pre-03 183 10/6/2022
4.3.2-pre-01 202 9/29/2022
4.3.1 807 9/21/2022
4.3.0 196 9/21/2022
4.2.0-pre-07 216 9/19/2022
4.2.0-pre-05 256 9/18/2022
4.2.0-pre-04 240 9/18/2022
4.2.0-pre-02 329 9/14/2022
4.2.0-pre-01 188 9/12/2022
4.1.0 450 9/8/2022
4.1.0-pre-01 232 9/8/2022
4.0.0 318 9/1/2022
3.1.0-pre-07 199 9/1/2022
3.1.0-pre-06 199 8/30/2022
3.1.0-pre-05 202 8/29/2022
3.1.0-pre-04 212 8/28/2022
3.1.0-pre-03 186 8/27/2022
3.1.0-pre-02 213 8/25/2022
3.1.0-pre-01 211 8/23/2022
3.0.0 346 8/15/2022
3.0.0-pre-09 211 8/15/2022
3.0.0-pre-08 203 8/15/2022
3.0.0-pre-07 231 8/15/2022
3.0.0-pre-06 272 8/14/2022
3.0.0-pre-05 272 8/14/2022
3.0.0-pre-04 378 8/9/2022
3.0.0-pre-03 299 8/8/2022
3.0.0-pre-02 329 8/7/2022
3.0.0-pre-01 461 7/29/2022
2.0.0 694 7/25/2022
2.0.0-pre-14 311 7/24/2022
2.0.0-pre-12 329 7/21/2022
2.0.0-pre-11 267 7/21/2022
2.0.0-pre-10 265 7/20/2022
2.0.0-pre-09 406 7/20/2022
2.0.0-pre-08 467 7/19/2022
2.0.0-pre-07 466 7/19/2022
2.0.0-pre-06 354 7/18/2022
2.0.0-pre-05 440 7/17/2022
2.0.0-pre-04 413 7/14/2022
2.0.0-pre-03 429 7/13/2022
2.0.0-pre-02 389 7/12/2022
2.0.0-pre-01 530 7/8/2022
2.0.0-pre-00 416 7/4/2022
1.0.2 926 7/4/2022
1.0.0 726 7/4/2022