GBX.NET 2.4.5-nightly.20260924.c849105f

GBX.NET

NuGet Discord

A general purpose library for Gbx files - data from Nadeo games like Trackmania or Shootmania, written in C#/.NET. It supports high performance serialization and deserialization of 400+ Gbx classes.

For more details, see the main README.

Framework support

Due to the recently paced evolution of .NET, framework support has been limited only to a few ones compared to GBX.NET 1:

  • .NET 10
  • .NET 9
  • .NET 8
  • .NET Standard 2.0

You can still use GBX.NET 2 on the old .NET Framework, but the performance of the library could be degraded.

Usage

These examples expect you to have <ImplicitUsings>enable</ImplicitUsings>. If this does not work for you, add using System.Linq; at the top.

Map information

Additional package GBX.NET.LZO is required in this example.

using GBX.NET;
using GBX.NET.Engines.Game;
using GBX.NET.LZO;

Gbx.LZO = new Lzo();

var map = Gbx.ParseNode<CGameCtnChallenge>("Path/To/My.Map.Gbx");

foreach (var block in map.GetBlocks().GroupBy(x => x.Name))
{
    Console.WriteLine($"{block.Key}: {block.Count()}");
}

Map information from Gbx header

using GBX.NET;
using GBX.NET.Engines.Game;
using GBX.NET.LZO;

var map = Gbx.ParseHeaderNode<CGameCtnChallenge>("Path/To/My.Map.Gbx");

Console.WriteLine(map.MapName);
Console.WriteLine(map.Xml);

Header contains a lot less information than the full node.

Modify and save a map

using GBX.NET;
using GBX.NET.Engines.Game;
using GBX.NET.LZO;

Gbx.LZO = new Lzo();

var gbx = Gbx.Parse<CGameCtnChallenge>("Path/To/My.Map.Gbx");
var map = gbx.Node; // See Clarity section for more info

map.MapName = "My new map name";

gbx.Save("Path/To/MyNew.Map.Gbx");

The trick here is that the Gbx properties are saved in the gbx object variable (Gbx class).

If you were to go with ParseNode in this case, this would not work for TMF and older games, but it is still possible if you specify the Gbx parameters in the Save method:

map.Save("Path/To/MyNew.Map.Gbx", new()
{
    PackDescVersion = 2 // Latest known PackDesc version in TMF
});

For TMS or TMN ESWC, you would have to specify ClassIdRemapMode for example:

map.Save("Path/To/MyNew.Map.Gbx", new()
{
    ClassIdRemapMode = ClassIdRemapMode.Id2006
    PackDescVersion = 1
});

These save parameters depend on the game of choice, but since Trackmania 2, this does not matter.

Processing multiple Gbx types

Additional package GBX.NET.LZO is required in this example.

This example shows how you can retrieve ghost objects from multiple different types of Gbx:

using GBX.NET;
using GBX.NET.Engines.Game;
using GBX.NET.LZO;

Gbx.LZO = new Lzo();

var node = Gbx.ParseNode("Path/To/My.Gbx");

var ghost = node switch
{
    CGameCtnReplayRecord replay => replay.GetGhosts().FirstOrDefault(),
    CGameCtnMediaClip clip => clip.GetGhosts().FirstOrDefault(),
    CGameCtnGhost g => g,
    _ => null
};

if (ghost is null)
{
    Console.WriteLine("This Gbx file does not have any ghost.");
}
else
{
    Console.WriteLine("Time: {0}", ghost.RaceTime);
}

Using pattern matching with non-generic Parse methods is a safer approach (no exceptions on different Gbx types), but less trim-friendly.

Read a large amount of replay metadata quickly

In case you only need the most basic information about many of the most common Gbx files (maps, replays, items, ...), do not read the full Gbx file, but only the header part. It is a great performance benefit for disk scans.

using GBX.NET;
using GBX.NET.Engines.Game;

foreach (var filePath in Directory.EnumerateFiles("Path/To/My/Directory", "*.Replay.Gbx", SearchOption.AllDirectories))
{
    try
    {
        DisplayBasicReplayInfo(filePath);
    }
    catch (Exception ex)
    {
        Console.WriteLine($"Gbx exception occurred {Path.GetFileName(filePath)}: {ex}");
    }
}

void DisplayBasicReplayInfo(string filePath)
{
    var nodeHeader = Gbx.ParseHeaderNode(filePath);

    if (nodeHeader is CGameCtnReplayRecord replay)
    {
        Console.WriteLine($"{replay.MapInfo}: {replay.Time}");
    }
}

File types

Some of the common types to start with (a lot more are supported):

Latest extension Class Can read Can write Other extension/s
Map.Gbx CGameCtnChallenge Yes Yes Challenge.Gbx
Replay.Gbx CGameCtnReplayRecord Yes No
Ghost.Gbx CGameCtnGhost Yes Yes
Clip.Gbx CGameCtnMediaClip Yes Yes
Item.Gbx CGameItemModel Yes Yes Block.Gbx
Mat.Gbx CPlugMaterialUserInst Yes Yes
Mesh.Gbx CPlugSolid2Model Yes Yes
Shape.Gbx CPlugSurface Yes Yes
Macroblock.Gbx CGameCtnMacroBlockInfo Yes Yes
Profile.Gbx CGamePlayerProfile / CGameUserProfile Yes Yes
SystemConfig.Gbx CSystemConfig Yes Yes
ScriptCache.Gbx CScriptTraitsMetadata Yes Yes
Scores.Gbx CGamePlayerScore Yes Yes

Supported games

Many essential Gbx files from many games are supported:

  • Trackmania (2020), January 2026 update
  • ManiaPlanet 4(.1), TM2/SM
  • Trackmania Turbo
  • ManiaPlanet 3, TM2/SM
  • ManiaPlanet 2, TM2/SM
  • ManiaPlanet 1, TM2
  • TrackMania Forever, Nations/United (including TMUnlimiter)
  • Virtual Skipper 5
  • TrackMania United
  • TrackMania Nations ESWC
  • TrackMania Sunrise eXtreme
  • TrackMania Original
  • TrackMania Sunrise
  • TrackMania Power Up
  • TrackMania (1.0)

License

GBX.NET library (this package) is MIT Licensed.

However, if you would use GBX.NET.LZO package with it (which is usually required), you'd need to follow the GNU GPL v3 License. See License section on the main README for more details.

Special thanks

Without these people, this project wouldn't be what it is today (ordered by impact):

  • Stefan Baumann (Solux)
  • Melissa (Miss)
  • florenzius
  • Kim
  • tilman
  • schadocalex
  • James Romeril
  • frolad (Juice)
  • Mika Kuijpers (TheMrMiku)
  • donadigo

And many thanks to every bug reporter!

Showing the top 20 packages that depend on GBX.NET.

Packages Downloads
GBX.NET.LZO
An LZO compression plugin for GBX.NET to allow de/serialization of compressed Gbx bodies. This official implementation uses lzo 2.10 from NativeSharpLzo and minilzo 2.06 port by zzattack.
306
GBX.NET.Tool
Base library for creating rich tools for different environments with GBX.NET.
268
GBX.NET.Imaging.SkiaSharp
Provides extensions for image handling in GBX.NET (Google's Skia with SkiaSharp).
259
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
234
GBX.NET.Hashing
Hashing features (CRC32) for GBX.NET 2.
229
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
222
GBX.NET.Tool
Base library for creating rich tools for different environments with GBX.NET.
215
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
215
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
211
GBX.NET.PAK
Support for reading Pak (NadeoPak) package files, integrated with GBX.NET.
209
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
209
GBX.NET.Imaging
Provides extensions for image handling in GBX.NET (GDI+, Windows only).
206
GBX.NET.Tool
Base library for creating rich tools for different environments with GBX.NET.
205
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
204
GBX.NET.Tool
Base library for creating rich tools for different environments with GBX.NET.
203
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
202
GBX.NET.Tool
Base library for creating rich tools for different environments with GBX.NET.
201
GBX.NET.Tool
Base library for creating rich tools for different environments with GBX.NET.
200
GBX.NET.ZLib
Support for zlib compressed parts of Gbx, integrated with GBX.NET. This official implementation uses Iconic.Zlib.Netstandard.
200

  • Added block skin and flag support for TM1.0 (by greffmaster)
  • Added GameplayId support to CPlugMaterial (by Zai)
  • Implemented profile vehicle details
  • Implemented better way to read properties from CGameCtnChallengeParameters in CGameCtnChallenge
  • Fixed and enhanced support for modern CPlugSurface (by XertroV agent)
  • Fixed newer ManiaPlanet sample types and network ghosts
  • Fixed early exit on v5+ lightmap versions with no lightmap frames

Version Downloads Last updated
2.4.5 13 09/17/2026
2.4.5-nightly.20260924.c849105f 0 09/24/2026
2.4.5-nightly.20260923.c849105f 1 09/23/2026
2.4.5-nightly.20260922.cedeb94f 2 09/22/2026
2.4.5-nightly.20260921.cedeb94f 4 09/21/2026
2.4.5-nightly.20260920.cedeb94f 7 09/20/2026
2.4.5-nightly.20260919.cedeb94f 7 09/19/2026
2.4.5-nightly.20260918.cedeb94f 8 09/18/2026
2.4.4 61 07/30/2026
2.4.4-nightly.20260917.c808f408 9 09/17/2026
2.4.4-nightly.20260916.c808f408 6 09/16/2026
2.4.4-nightly.20260915.c808f408 8 09/15/2026
2.4.4-nightly.20260914.cb9716b7 7 09/14/2026
2.4.4-nightly.20260913.c9a372a4 7 09/13/2026
2.4.4-nightly.20260912.c9a372a4 10 09/12/2026
2.4.4-nightly.20260911.c9a372a4 12 09/11/2026
2.4.4-nightly.20260910.c9a372a4 12 09/10/2026
2.4.4-nightly.20260909.c9a372a4 16 09/09/2026
2.4.4-nightly.20260908.c9a372a4 12 09/08/2026
2.4.4-nightly.20260907.c3a8eddd 12 09/07/2026
2.4.4-nightly.20260906.c3a8eddd 15 09/06/2026
2.4.4-nightly.20260905.c3a8eddd 13 09/05/2026
2.4.4-nightly.20260904.c3a8eddd 16 09/04/2026
2.4.4-nightly.20260903.c3a8eddd 17 09/03/2026
2.4.4-nightly.20260902.c3a8eddd 16 09/02/2026
2.4.4-nightly.20260901.c3a8eddd 17 09/01/2026
2.4.4-nightly.20260831.c3a8eddd 13 08/31/2026
2.4.4-nightly.20260830.c3a8eddd 17 08/30/2026
2.4.4-nightly.20260829.c3a8eddd 18 08/29/2026
2.4.4-nightly.20260828.c9bc5c0b 19 08/28/2026
2.4.4-nightly.20260827.c9bc5c0b 18 08/27/2026
2.4.4-nightly.20260826.cf33b8c3 22 08/26/2026
2.4.4-nightly.20260825.cf33b8c3 17 08/25/2026
2.4.4-nightly.20260824.cf33b8c3 17 08/24/2026
2.4.4-nightly.20260823.cf33b8c3 20 08/23/2026
2.4.4-nightly.20260822.cf6f8300 18 08/22/2026
2.4.4-nightly.20260821.c98ad968 22 08/21/2026
2.4.4-nightly.20260820.c98ad968 14 08/20/2026
2.4.4-nightly.20260819.c98ad968 24 08/19/2026
2.4.4-nightly.20260818.c98ad968 21 08/18/2026
2.4.4-nightly.20260817.c98ad968 17 08/17/2026
2.4.4-nightly.20260816.c98ad968 19 08/16/2026
2.4.4-nightly.20260815.c98ad968 25 08/15/2026
2.4.4-nightly.20260814.c98ad968 20 08/14/2026
2.4.4-nightly.20260813.c98ad968 18 08/13/2026
2.4.4-nightly.20260812.c98ad968 22 08/12/2026
2.4.4-nightly.20260811.c98ad968 19 08/11/2026
2.4.4-nightly.20260810.c643b6c4 24 08/10/2026
2.4.4-nightly.20260809.c643b6c4 30 08/09/2026
2.4.4-nightly.20260808.c643b6c4 24 08/08/2026
2.4.4-nightly.20260807.c643b6c4 26 08/07/2026
2.4.4-nightly.20260806.c643b6c4 27 08/06/2026
2.4.4-nightly.20260805.c643b6c4 26 08/05/2026
2.4.4-nightly.20260804.c643b6c4 25 08/04/2026
2.4.4-nightly.20260803.c643b6c4 34 08/03/2026
2.4.4-nightly.20260802.c643b6c4 24 08/02/2026
2.4.4-nightly.20260801.c643b6c4 35 08/01/2026
2.4.4-nightly.20260731.c643b6c4 28 07/31/2026
2.4.4-nightly.20260730.c7676b9d 35 07/30/2026
2.4.4-nightly.20260729.c7676b9d 27 07/29/2026
2.4.4-nightly.20260728.c7676b9d 31 07/28/2026
2.4.4-nightly.20260727.c7676b9d 28 07/27/2026
2.4.4-nightly.20260726.c7676b9d 35 07/26/2026
2.4.4-nightly.20260725.c7676b9d 34 07/25/2026
2.4.4-nightly.20260724.caf3b274 33 07/24/2026
2.4.4-nightly.20260723.caf3b274 37 07/23/2026
2.4.4-nightly.20260722.caf3b274 41 07/22/2026
2.4.4-nightly.20260721.caf3b274 41 07/21/2026
2.4.4-nightly.20260720.c3178509 38 07/20/2026
2.4.4-nightly.20260719.c3178509 27 07/19/2026
2.4.4-nightly.20260718.c3178509 36 07/18/2026
2.4.4-nightly.20260717.c3178509 32 07/17/2026
2.4.4-nightly.20260716.c3178509 32 07/16/2026
2.4.4-nightly.20260715.c3178509 23 07/15/2026
2.4.4-nightly.20260714.c3178509 31 07/14/2026
2.4.4-nightly.20260713.c3178509 35 07/13/2026
2.4.4-nightly.20260712.cf8a1ee4 35 07/12/2026
2.4.4-nightly.20260711.cf8a1ee4 39 07/11/2026
2.4.4-nightly.20260710.cf8a1ee4 39 07/10/2026
2.4.4-nightly.20260709.cddacfae 36 07/09/2026
2.4.4-nightly.20260708.cddacfae 36 07/08/2026
2.4.4-nightly.20260707.ca56589b 40 07/07/2026
2.4.4-nightly.20260706.c63e4da8 34 07/06/2026
2.4.4-nightly.20260705.c63e4da8 39 07/05/2026
2.4.4-nightly.20260704.ce53d74d 38 07/04/2026
2.4.4-nightly.20260703.ce53d74d 46 07/03/2026
2.4.4-nightly.20260702.ce53d74d 43 07/02/2026
2.4.4-nightly.20260701.ce53d74d 39 07/01/2026
2.4.4-nightly.20260630.ce53d74d 33 06/30/2026
2.4.4-nightly.20260629.ce53d74d 45 06/29/2026
2.4.4-nightly.20260628.c8802933 44 06/28/2026
2.4.4-nightly.20260627.cd2f91d8 42 06/27/2026
2.4.4-nightly.20260626.cd2f91d8 63 06/26/2026
2.4.3 44 06/25/2026
2.4.3-nightly.20260625.c5bfaa2c 40 06/25/2026
2.4.2 102 04/11/2026
2.4.2-nightly.20260624.c9086b5b 48 06/24/2026
2.4.2-nightly.20260623.c9086b5b 46 06/23/2026
2.4.2-nightly.20260622.c9086b5b 43 06/22/2026
2.4.2-nightly.20260621.c9086b5b 39 06/21/2026
2.4.2-nightly.20260620.c9086b5b 50 06/20/2026
2.4.2-nightly.20260619.c9086b5b 40 06/19/2026
2.4.2-nightly.20260618.c9086b5b 38 06/18/2026
2.4.2-nightly.20260617.c9086b5b 42 06/17/2026
2.4.2-nightly.20260616.c9086b5b 47 06/16/2026
2.4.2-nightly.20260615.c9086b5b 42 06/15/2026
2.4.2-nightly.20260614.c9086b5b 51 06/14/2026
2.4.2-nightly.20260613.c9086b5b 56 06/13/2026
2.4.2-nightly.20260612.c9086b5b 62 06/12/2026
2.4.2-nightly.20260611.c9086b5b 45 06/11/2026
2.4.2-nightly.20260610.cf0b7c2e 48 06/10/2026
2.4.2-nightly.20260609.cf0b7c2e 67 06/09/2026
2.4.2-nightly.20260608.cf0b7c2e 64 06/08/2026
2.4.2-nightly.20260510.cde301da 74 05/10/2026
2.4.2-nightly.20260509.cb43f0e4 73 05/09/2026
2.4.2-nightly.20260508.cb43f0e4 84 05/08/2026
2.4.2-nightly.20260507.cb43f0e4 98 05/07/2026
2.4.2-nightly.20260506.cb43f0e4 69 05/06/2026
2.4.2-nightly.20260505.cb43f0e4 68 05/05/2026
2.4.2-nightly.20260504.cb43f0e4 66 05/04/2026
2.4.2-nightly.20260503.cb43f0e4 69 05/03/2026
2.4.2-nightly.20260502.cb43f0e4 72 05/02/2026
2.4.2-nightly.20260501.c0ff75f3 64 05/01/2026
2.4.2-nightly.20260430.c0ff75f3 80 04/30/2026
2.4.2-nightly.20260429.c0ff75f3 74 04/29/2026
2.4.2-nightly.20260428.c0ff75f3 77 04/28/2026
2.4.2-nightly.20260427.c0ff75f3 60 04/27/2026
2.4.2-nightly.20260426.c0ff75f3 77 04/26/2026
2.4.2-nightly.20260425.c0ff75f3 69 04/25/2026
2.4.2-nightly.20260424.c0ff75f3 65 04/24/2026
2.4.2-nightly.20260423.c0ff75f3 79 04/23/2026
2.4.2-nightly.20260422.c0ff75f3 68 04/22/2026
2.4.2-nightly.20260421.c0ff75f3 70 04/21/2026
2.4.2-nightly.20260420.c0ff75f3 64 04/20/2026
2.4.2-nightly.20260419.c0ff75f3 72 04/19/2026
2.4.2-nightly.20260418.c0ff75f3 71 04/18/2026
2.4.2-nightly.20260417.c0ff75f3 78 04/17/2026
2.4.2-nightly.20260416.cd3520c7 90 04/16/2026
2.4.2-nightly.20260415.cd3520c7 58 04/15/2026
2.4.2-nightly.20260414.cd3520c7 86 04/14/2026
2.4.2-nightly.20260413.cd3520c7 75 04/13/2026
2.4.2-nightly.20260412.cd5d581a 42 04/12/2026
2.4.2-nightly.20260411.c376d97c 75 04/11/2026
2.4.2-nightly.20260410.c5e97672 84 04/10/2026
2.4.2-nightly.20260409.c5e97672 78 04/09/2026
2.4.2-nightly.20260408.c5e97672 71 04/08/2026
2.4.2-nightly.20260407.c9008162 71 04/07/2026
2.4.1 97 04/04/2026
2.4.1-nightly.20260406.c72baf92 89 04/06/2026
2.4.1-nightly.20260405.c5a481e7 75 04/05/2026
2.4.0 72 04/04/2026
2.4.0-nightly.20260404.caef6567 88 04/04/2026
2.4.0-nightly.20260403.cfc177fc 99 04/03/2026
2.4.0-nightly.20260402.cfc177fc 85 04/02/2026
2.4.0-nightly.20260401.cfc177fc 88 04/01/2026
2.4.0-nightly.20260331.c8b9f627 96 03/31/2026
2.4.0-nightly.20260330.cb9a9ca5 89 03/30/2026
2.4.0-nightly.20260329.ce880012 89 03/29/2026
2.4.0-nightly.20260328.cfa8c150 91 03/28/2026
2.4.0-nightly.20260327.c19e2803 87 03/27/2026
2.4.0-nightly.20260326.c03c2824 90 03/26/2026
2.4.0-nightly.20260325.cb6a04e2 96 03/25/2026
2.4.0-nightly.20260324.cb6a04e2 107 03/24/2026
2.4.0-nightly.20260323.cd2babf2 102 03/23/2026
2.4.0-nightly.20260322.c2f09fa2 92 03/22/2026
2.4.0-nightly.20260321.c2f09fa2 87 03/21/2026
2.4.0-nightly.20260320.c2f09fa2 90 03/20/2026
2.4.0-nightly.20260319.cc69c4c4 98 03/19/2026
2.4.0-nightly.20260318.cc69c4c4 94 03/18/2026
2.4.0-nightly.20260317.c881ff01 88 03/17/2026
2.4.0-nightly.20260316.c80458ae 95 03/16/2026
2.4.0-nightly.20260315.cfc8048c 80 03/15/2026
2.4.0-nightly.20260314.cec1bf94 100 03/14/2026
2.4.0-nightly.20260313.c3a0bee2 109 03/13/2026
2.4.0-nightly.20260313.c397d32b 115 03/13/2026
2.4.0-nightly.20260312.c3a0bee2 96 03/12/2026
2.4.0-nightly.20260311.c3a0bee2 109 03/11/2026
2.4.0-nightly.20260310.c0aa0a8c 99 03/10/2026
2.4.0-nightly.20260309.c4694d5b 117 03/09/2026
2.4.0-nightly.20260308.cf51dfba 88 03/08/2026
2.4.0-nightly.20260307.c4cd63b0 94 03/07/2026
2.4.0-nightly.20260306.cd1d7950 94 03/06/2026
2.4.0-nightly.20260305.c44d6fff 102 03/05/2026
2.4.0-nightly.20260304.cbfc36bd 105 03/04/2026
2.4.0-nightly.20260303.cea45f4a 95 03/03/2026
2.3.4 113 02/19/2026
2.3.4-nightly.20260302.cfcb5a0b 95 03/02/2026
2.3.4-nightly.20260301.cfcb5a0b 89 03/01/2026
2.3.4-nightly.20260228.cfcb5a0b 99 02/28/2026
2.3.4-nightly.20260227.cfcb5a0b 86 02/27/2026
2.3.4-nightly.20260226.ca0fa852 102 02/26/2026
2.3.4-nightly.20260225.ca0fa852 87 02/25/2026
2.3.4-nightly.20260224.c72e252d 85 02/24/2026
2.3.4-nightly.20260223.c2c53972 90 02/23/2026
2.3.4-nightly.20260222.c2c53972 107 02/22/2026
2.3.4-nightly.20260221.c2c53972 94 02/21/2026
2.3.4-nightly.20260220.cb4c2544 95 02/20/2026
2.3.3 117 02/06/2026
2.3.3-nightly.20260218.c61de90a 105 02/18/2026
2.3.3-nightly.20260217.c61de90a 106 02/17/2026
2.3.3-nightly.20260216.cb860944 104 02/16/2026
2.3.3-nightly.20260215.c79ed6f5 95 02/15/2026
2.3.3-nightly.20260214.c9dda661 105 02/14/2026
2.3.3-nightly.20260213.c24fcba4 110 02/13/2026
2.3.3-nightly.20260212.c24fcba4 106 02/12/2026
2.3.3-nightly.20260211.c24fcba4 119 02/11/2026
2.3.3-nightly.20260210.c24fcba4 106 02/10/2026
2.3.3-nightly.20260209.c24fcba4 102 02/09/2026
2.3.3-nightly.20260208.cb9e7d37 108 02/08/2026
2.3.3-nightly.20260207.cb9e7d37 115 02/07/2026
2.3.3-nightly.20260206.c876e805 115 02/06/2026
2.3.3-nightly.20260205.c876e805 78 02/05/2026
2.3.2 136 01/31/2026
2.3.2-nightly.20260204.c36b2750 106 02/04/2026
2.3.2-nightly.20260203.ce70bca8 71 02/03/2026
2.3.2-nightly.20260202.c5155b72 117 02/02/2026
2.3.2-nightly.20260201.c08e9cf0 107 02/01/2026
2.3.2-nightly.20260131.ca3d31a1 111 01/31/2026
2.3.2-nightly.20260130.c71043e7 110 01/30/2026
2.3.2-nightly.20260129.cab73d6a 105 01/29/2026
2.3.1 132 01/28/2026
2.3.0 176 01/06/2026
2.3.0-nightly.20260128.cca24500 76 01/28/2026
2.3.0-nightly.20260127.c901462b 113 01/27/2026
2.3.0-nightly.20260126.c901462b 104 01/26/2026
2.3.0-nightly.20260125.c901462b 118 01/25/2026
2.3.0-nightly.20260124.c901462b 109 01/24/2026
2.3.0-nightly.20260123.c901462b 122 01/23/2026
2.3.0-nightly.20260122.c7a55df5 129 01/22/2026
2.3.0-nightly.20260121.c7a55df5 108 01/21/2026
2.3.0-nightly.20260120.c7a55df5 116 01/20/2026
2.3.0-nightly.20260119.c7a55df5 119 01/19/2026
2.3.0-nightly.20260118.c7a55df5 104 01/18/2026
2.3.0-nightly.20260117.c7a55df5 127 01/17/2026
2.3.0-nightly.20260116.c90625c0 117 01/16/2026
2.3.0-nightly.20260115.c90625c0 115 01/15/2026
2.3.0-nightly.20260114.c90625c0 111 01/14/2026
2.3.0-nightly.20260113.cbc80995 111 01/13/2026
2.3.0-nightly.20260112.cacd11b1 119 01/12/2026
2.3.0-nightly.20260111.cacd11b1 137 01/11/2026
2.3.0-nightly.20260110.cacd11b1 114 01/10/2026
2.3.0-nightly.20260109.cb7e37fc 116 01/09/2026
2.3.0-nightly.20260108.c8bc1866 106 01/08/2026
2.3.0-nightly.20260107.c8bc1866 120 01/07/2026
2.3.0-nightly.20260106.c02413cc 119 01/06/2026
2.3.0-nightly.20260105.c02413cc 128 01/05/2026
2.3.0-nightly.20260104.cf04ebd8 84 01/04/2026
2.3.0-nightly.20260103.c4dfc285 125 01/03/2026
2.3.0-nightly.20260102.c4dfc285 139 01/02/2026
2.3.0-nightly.20260101.c4dfc285 136 01/01/2026
2.3.0-nightly.20251231.c4dfc285 127 12/31/2025
2.3.0-nightly.20251230.c4dfc285 143 12/30/2025
2.3.0-nightly.20251229.c4dfc285 123 12/29/2025
2.3.0-nightly.20251228.c4dfc285 150 12/28/2025
2.3.0-nightly.20251227.c4dfc285 125 12/27/2025
2.3.0-nightly.20251226.c4dfc285 142 12/26/2025
2.3.0-nightly.20251225.c4dfc285 126 12/25/2025
2.3.0-nightly.20251224.c4dfc285 135 12/24/2025
2.3.0-nightly.20251223.c4dfc285 121 12/23/2025
2.3.0-nightly.20251222.c5e605d0 127 12/22/2025
2.3.0-nightly.20251221.c5e605d0 137 12/21/2025
2.3.0-nightly.20251220.c5e605d0 121 12/20/2025
2.3.0-nightly.20251219.c5e605d0 120 12/19/2025
2.3.0-nightly.20251218.c5e605d0 130 12/18/2025
2.3.0-nightly.20251217.cf86955d 132 12/17/2025
2.3.0-nightly.20251216.c7d5e6b0 127 12/16/2025
2.3.0-nightly.20251215.cdd724b7 136 12/15/2025
2.3.0-nightly.20251215.c7d5e6b0 148 12/15/2025
2.3.0-nightly.20251214.cb34438e 139 12/14/2025
2.3.0-nightly.20251214.c8b776c7 136 12/14/2025
2.3.0-nightly.20251214.c2b1ee1f 146 12/14/2025
2.3.0-nightly.20251213.c8b776c7 133 12/13/2025
2.3.0-nightly.20251212.c8b776c7 137 12/12/2025
2.3.0-nightly.20251211.c8b776c7 135 12/11/2025
2.3.0-nightly.20251210.c8b776c7 134 12/10/2025
2.3.0-nightly.20251209.c7a2121c 137 12/09/2025
2.3.0-nightly.20251208.c7a2121c 123 12/08/2025
2.3.0-nightly.20251207.c7a2121c 89 12/07/2025
2.3.0-nightly.20251206.c7a2121c 129 12/06/2025
2.3.0-nightly.20251205.c7a2121c 127 12/05/2025
2.3.0-nightly.20251204.c7a2121c 114 12/04/2025
2.3.0-nightly.20251203.c7a2121c 152 12/03/2025
2.3.0-nightly.20251202.c7a2121c 109 12/02/2025
2.3.0-nightly.20251201.c7952f69 103 12/01/2025
2.3.0-nightly.20251130.cee286e5 147 11/30/2025
2.3.0-nightly.20251129.cee286e5 145 11/29/2025
2.3.0-nightly.20251128.cee286e5 145 11/28/2025
2.3.0-nightly.20251127.cee286e5 144 11/27/2025
2.3.0-nightly.20251126.cee286e5 124 11/26/2025
2.3.0-nightly.20251125.cee286e5 92 11/25/2025
2.3.0-nightly.20251124.cee286e5 164 11/24/2025
2.3.0-nightly.20251123.cee286e5 169 11/23/2025
2.3.0-nightly.20251122.cee286e5 158 11/22/2025
2.3.0-nightly.20251121.cee286e5 126 11/21/2025
2.3.0-nightly.20251120.cee286e5 160 11/20/2025
2.3.0-nightly.20251119.cee286e5 171 11/19/2025
2.3.0-nightly.20251118.cee286e5 169 11/18/2025
2.3.0-nightly.20251117.cee286e5 168 11/17/2025
2.3.0-nightly.20251116.cd6cbb8f 166 11/16/2025
2.3.0-nightly.20251115.cd6cbb8f 146 11/15/2025
2.3.0-nightly.20251114.cd6cbb8f 97 11/14/2025
2.2.2 323 09/12/2025
2.2.2-nightly.20251113.cc7ee0c7 149 11/13/2025
2.2.2-nightly.20251112.cc7ee0c7 104 11/12/2025
2.2.2-nightly.20251111.cc7ee0c7 142 11/11/2025
2.2.2-nightly.20251110.cc7ee0c7 175 11/10/2025
2.2.2-nightly.20251109.cc7ee0c7 160 11/09/2025
2.2.2-nightly.20251108.cc7ee0c7 152 11/08/2025
2.2.2-nightly.20251107.cc7ee0c7 158 11/07/2025
2.2.2-nightly.20251106.cc7ee0c7 133 11/06/2025
2.2.2-nightly.20251105.cc7ee0c7 157 11/05/2025
2.2.2-nightly.20251104.cc7ee0c7 115 11/04/2025
2.2.2-nightly.20251103.cc7ee0c7 163 11/03/2025
2.2.2-nightly.20251102.c43def11 155 11/02/2025
2.2.2-nightly.20251101.c43def11 156 11/01/2025
2.2.2-nightly.20251031.c43def11 157 10/31/2025
2.2.2-nightly.20251030.c43def11 161 10/30/2025
2.2.2-nightly.20251029.c43def11 167 10/29/2025
2.2.2-nightly.20251028.ce6a6ed6 174 10/28/2025
2.2.2-nightly.20251027.ce6a6ed6 109 10/27/2025
2.2.2-nightly.20251026.ce6a6ed6 158 10/26/2025
2.2.2-nightly.20251025.ce6a6ed6 154 10/25/2025
2.2.2-nightly.20251024.ce6a6ed6 147 10/24/2025
2.2.2-nightly.20251023.ce6a6ed6 164 10/23/2025
2.2.2-nightly.20251022.ce6a6ed6 160 10/22/2025
2.2.2-nightly.20251021.ce6a6ed6 164 10/21/2025
2.2.2-nightly.20251020.cd56d4a7 151 10/20/2025
2.2.2-nightly.20251019.cf7d66e0 160 10/19/2025
2.2.2-nightly.20251018.cf7d66e0 125 10/18/2025
2.2.2-nightly.20251017.c5a52eb9 160 10/17/2025
2.2.2-nightly.20251016.c5a52eb9 165 10/16/2025
2.2.2-nightly.20251015.c5a52eb9 144 10/15/2025
2.2.2-nightly.20251014.c5a52eb9 131 10/14/2025
2.2.2-nightly.20251013.c5a52eb9 115 10/13/2025
2.2.2-nightly.20251012.c5a52eb9 157 10/12/2025
2.2.2-nightly.20251011.c5a52eb9 167 10/11/2025
2.2.2-nightly.20251010.c5a52eb9 136 10/10/2025
2.2.2-nightly.20251009.c5a52eb9 185 10/09/2025
2.2.2-nightly.20251008.c5a52eb9 155 10/08/2025
2.2.2-nightly.20251007.c55d6ba0 117 10/07/2025
2.2.2-nightly.20251006.c55d6ba0 174 10/06/2025
2.2.2-nightly.20251005.c2c8c81e 167 10/05/2025
2.2.2-nightly.20251004.c2c8c81e 176 10/04/2025
2.2.2-nightly.20251003.cce76ab7 140 10/03/2025
2.2.2-nightly.20251002.cce76ab7 169 10/02/2025
2.2.2-nightly.20251001.cce76ab7 157 10/01/2025
2.2.2-nightly.20250930.cce76ab7 171 09/30/2025
2.2.2-nightly.20250929.cce76ab7 133 09/29/2025
2.2.2-nightly.20250928.cce76ab7 159 09/28/2025
2.2.2-nightly.20250927.cce76ab7 152 09/27/2025
2.2.2-nightly.20250926.cce76ab7 109 09/26/2025
2.2.2-nightly.20250925.cce76ab7 175 09/25/2025
2.2.2-nightly.20250924.cce76ab7 125 09/24/2025
2.2.2-nightly.20250923.cce76ab7 170 09/23/2025
2.2.2-nightly.20250922.cce76ab7 169 09/22/2025
2.2.2-nightly.20250921.cce76ab7 180 09/21/2025
2.2.2-nightly.20250920.cce76ab7 168 09/20/2025
2.2.2-nightly.20250919.cce76ab7 114 09/19/2025
2.2.2-nightly.20250918.cce76ab7 128 09/18/2025
2.2.2-nightly.20250917.cce76ab7 121 09/17/2025
2.2.2-nightly.20250916.cce76ab7 118 09/16/2025
2.2.2-nightly.20250915.cce76ab7 121 09/15/2025
2.2.2-nightly.20250914.cce76ab7 190 09/14/2025
2.2.2-nightly.20250913.cce76ab7 127 09/13/2025
2.2.2-nightly.20250912.cba11d3c 122 09/12/2025
2.2.2-nightly.20250911.cba11d3c 131 09/11/2025
2.2.2-nightly.20250910.cba11d3c 141 09/10/2025
2.2.2-nightly.20250909.cba11d3c 176 09/09/2025
2.2.2-nightly.20250908.cba11d3c 162 09/08/2025
2.2.2-nightly.20250907.cba11d3c 172 09/07/2025
2.2.2-nightly.20250906.cba11d3c 167 09/06/2025
2.2.2-nightly.20250905.cba11d3c 194 09/05/2025
2.2.2-nightly.20250904.cba11d3c 179 09/04/2025
2.2.2-nightly.20250903.cba11d3c 186 09/03/2025
2.2.2-nightly.20250902.cba11d3c 186 09/02/2025
2.2.2-nightly.20250901.cba11d3c 180 09/01/2025
2.2.2-nightly.20250831.cba11d3c 188 08/31/2025
2.2.2-nightly.20250830.cba11d3c 186 08/30/2025
2.2.2-nightly.20250829.cba11d3c 121 08/29/2025
2.2.2-nightly.20250828.cde940d2 175 08/28/2025
2.2.2-nightly.20250827.c8257ead 198 08/27/2025
2.2.1-nightly.20250826.c1aa6590 186 08/26/2025
2.2.1-nightly.20250825.c3a861aa 183 08/25/2025
2.2.1-nightly.20250824.c3a861aa 205 08/24/2025
2.2.1-nightly.20250823.c3a861aa 197 08/23/2025
2.2.1-nightly.20250822.c3a861aa 126 08/22/2025
2.2.1-nightly.20250821.c3a861aa 198 08/21/2025
2.2.1-nightly.20250820.c3a861aa 104 08/20/2025
2.2.1-nightly.20250819.c3a861aa 133 08/19/2025
2.2.1-nightly.20250818.c5bbab68 183 08/18/2025
2.2.1-nightly.20250817.ce814990 129 08/17/2025
2.2.1-nightly.20250817.c6817f0a 184 08/17/2025
2.2.1-nightly.20250816.c6817f0a 128 08/16/2025
2.2.1-nightly.20250815.c6817f0a 214 08/15/2025
2.2.1-nightly.20250814.c6817f0a 123 08/14/2025
2.2.1-nightly.20250813.c6817f0a 195 08/13/2025
2.2.1-nightly.20250812.c6817f0a 188 08/12/2025
2.2.1-nightly.20250811.c6817f0a 99 08/11/2025
2.2.1-nightly.20250810.c6817f0a 133 08/10/2025
2.2.1-nightly.20250809.c6817f0a 130 08/09/2025
2.2.1-nightly.20250808.c6817f0a 137 08/08/2025
2.2.1-nightly.20250807.c6817f0a 120 08/07/2025
2.2.1-nightly.20250806.c6817f0a 113 08/06/2025
2.2.1-nightly.20250805.c6817f0a 133 08/05/2025
2.2.1-nightly.20250804.c6817f0a 222 08/04/2025
2.2.1-nightly.20250803.c6817f0a 179 08/03/2025
2.2.1-nightly.20250802.c6817f0a 149 08/02/2025
2.2.1-nightly.20250801.c6817f0a 134 08/01/2025
2.2.1-nightly.20250731.c6817f0a 142 07/31/2025
2.2.1-nightly.20250730.c6817f0a 201 07/30/2025
2.2.1-nightly.20250729.c6817f0a 151 07/29/2025
2.2.1-nightly.20250728.ca7f9be8 173 07/28/2025
2.2.1-nightly.20250727.cd7b47aa 137 07/27/2025
2.2.1-nightly.20250726.cd7b47aa 172 07/26/2025
2.2.1-nightly.20250725.cd7b47aa 172 07/25/2025
2.2.1-nightly.20250724.cd7b47aa 200 07/24/2025
2.2.1-nightly.20250723.cd7b47aa 196 07/23/2025
2.2.1-nightly.20250722.cd7b47aa 168 07/22/2025
2.2.1-nightly.20250721.cd7b47aa 201 07/21/2025