Libplanet.Action 6.0.0-dev.20250213074059

This is a prerelease version of Libplanet.Action.
This package has a SemVer 2.0.0 package version: 6.0.0-dev.20250213074059+7d469db.
dotnet add package Libplanet.Action --version 6.0.0-dev.20250213074059
                    
NuGet\Install-Package Libplanet.Action -Version 6.0.0-dev.20250213074059
                    
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="Libplanet.Action" Version="6.0.0-dev.20250213074059" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Libplanet.Action" Version="6.0.0-dev.20250213074059" />
                    
Directory.Packages.props
<PackageReference Include="Libplanet.Action" />
                    
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 Libplanet.Action --version 6.0.0-dev.20250213074059
                    
#r "nuget: Libplanet.Action, 6.0.0-dev.20250213074059"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Libplanet.Action&version=6.0.0-dev.20250213074059&prerelease
                    
Install Libplanet.Action as a Cake Addin
#tool nuget:?package=Libplanet.Action&version=6.0.0-dev.20250213074059&prerelease
                    
Install Libplanet.Action as a Cake Tool

Libplanet

Discord Build Status (CircleCI) Codecov NuGet NuGet (prerelease)

Libplanet is a .NET library for creating multiplayer online game in decentralized fashion, which means the whole gameplay occurs on a peer-to-peer network among equal nodes rather than an authorized central server. Under the hood, it incorporates many features (e.g., digital signature, BFT consensus, data replication) of a blockchain.

It has competitive advantages over other solutions for decentralized gaming:

  • Embeddable: A game app does not have to communicate with another running process, hence it doesn't require extra marshaling or processes management. To draw a parallel, Libplanet is closer to SQLite than MySQL or PostgreSQL.

  • Isomorphic: Libplanet is a .NET library, so every game logic can be written in the same language, C#, and run on the blockchain. No glue code or "smart contracts" are needed.

  • Token-independent: Unlike almost every blockchain system, it does not force users to create and deal with yet-another-cryptocurrency. Your game can be free to play, and enjoyed by regular gamers.

To learn more about why Planetarium is creating technology for fully decentralized games, please refer to our blog post.

NuGet

For every stable release, we pack Libplanet into a .nupkg and upload it to NuGet and GitHub releases page. (You can find the changelog for versions from releases page.) To use Libplanet in your game, your project needs to add a dependency to Libplanet package. On Visual Studio IDE, run the following command in Package Manager Console:

Install-Package Libplanet

If you prefer dotnet CLI run the following command instead:

dotnet add package Libplanet

See also Microsoft's docs on different ways to install NuGet package.

In addition to stable releases, we also provide pre-release packages. For every day and every merge commit, it is packed into a .nupkg and uploaded to NuGet with a hyphen-suffixed version name.

For a merge commit build, a version name looks like 0.1.0-dev.20181231235959+a0b1c2d where 20181231235959 is a UTC timestamp of the build and a0b1c2d is the first 7 hexadecimals of the Git commit hash. For a daily build, a version name is like 0.1.0-nightly.20181231+a0b1c2d.

Unfortunately, Unity currently does not support NuGet. There are some Unity plug-ins to deal with NuGet package system, and these seem immature at present. To use Libplanet on Unity, you need to manually extract Libplanet.dll from Libplanet.*.nupkg file and place it inside of your Unity project. We are acknowledging the fact Libplanet is currently not very usable together with Unity, and promise to make it better in the next few minor releases. Until then, you could try MSBuildForUnity which is experimental as of January 2020.

Build

You could build Libplanet.dll and Libplanet.Stun.dll assemblies from the source code.

The following command installs dependencies (required library packages) and builds the whole Libplanet solution:

dotnet build

Note that dotnet command is distributed together with .NET Core SDK.

If you'd like to contribute code to the Libplanet project in earnest, please read our contributor guide.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Libplanet.Action:

Package Downloads
Libplanet

A .NET library for creating multiplayer online game in decentralized fashion. See also the docs for details: https://docs.libplanet.io/

Libplanet.Mocks

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.0-dev.20250213074059 166 2/13/2025
6.0.0-dev.20250117091335 46 1/17/2025
6.0.0-dev.20250117011557 45 1/17/2025
6.0.0-dev.20250116103041 44 1/16/2025
6.0.0-dev.20250116020155 43 1/16/2025
6.0.0-dev.20250115051348 26 1/15/2025
5.5.1 377 2/17/2025
5.5.0 3,158 1/15/2025
5.5.0-dev.20250115025247 23 1/15/2025
5.5.0-dev.20250107054502 44 1/7/2025
5.5.0-dev.20241220054825 57 12/20/2024
5.5.0-dev.20241217014719 53 12/17/2024
5.5.0-dev.20241129060240 50 11/29/2024
5.5.0-dev.20241125091512 39 11/25/2024
5.5.0-dev.20241122065817 45 11/22/2024
5.5.0-dev.20241122015856 40 11/22/2024
5.5.0-dev.20241122014007 38 11/22/2024
5.4.2 3,887 12/13/2024
5.4.1 5,377 11/22/2024
5.4.0 1,516 11/13/2024
5.4.0-dev.20241121063809 52 11/21/2024
5.4.0-dev.20241113071101 38 11/13/2024
5.4.0-dev.20241112053036 43 11/12/2024
5.4.0-dev.20241028012328 67 10/28/2024
5.4.0-dev.20241027073636 43 10/27/2024
5.4.0-dev.20241022082950 50 10/22/2024
5.4.0-dev.20241018025046 39 10/18/2024
5.4.0-dev.20241016053049 40 10/16/2024
5.4.0-dev.20241014055711 43 10/14/2024
5.4.0-dev.20241010085954 97 10/10/2024
5.3.2 290 11/22/2024
5.3.2-alpha.1 4,794 10/22/2024
5.3.1 436 10/14/2024
5.3.0 364 10/10/2024
5.3.0-dev.20249951551 45 9/9/2024
5.3.0-dev.20249671014 54 9/6/2024
5.3.0-dev.20249642617 50 9/6/2024
5.3.0-dev.20249581735 48 9/5/2024
5.3.0-dev.20249413035 77 9/4/2024
5.3.0-dev.202493013215 59 9/30/2024
5.3.0-dev.202491004320 46 9/10/2024
5.3.0-dev.202482783113 49 8/27/2024
5.3.0-dev.2024823113441 58 8/23/2024
5.3.0-dev.20248226836 54 8/22/2024
5.3.0-dev.202482254437 56 8/22/2024
5.3.0-dev.20248211397 50 8/21/2024
5.3.0-dev.20248204151 69 8/2/2024
5.3.0-dev.2024820161030 67 8/20/2024
5.3.0-dev.202482015485 63 8/20/2024
5.3.0-dev.202481204216 62 8/12/2024
5.3.0-dev.20247307825 66 7/30/2024
5.3.0-dev.2024730153459 56 7/30/2024
5.3.0-dev.2024730135757 59 7/30/2024
5.3.0-dev.202472972146 52 7/29/2024
5.3.0-dev.2024723133823 181 7/23/2024
5.3.0-dev.20241010085018 70 10/10/2024
5.3.0-dev.20241010081544 51 10/10/2024
5.3.0-dev.20241008090307 62 10/8/2024
5.3.0-dev.20241008080046 47 10/8/2024
5.3.0-dev.20241004070428 77 10/4/2024
5.3.0-dev.2024955310 53 9/5/2024
5.3.0-dev.2024936541 65 9/3/2024
5.3.0-dev.2024898322 58 8/9/2024
5.3.0-dev.2024811710 112 8/1/2024
5.3.0-alpha.3 1,604 9/6/2024
5.3.0-alpha.2 80 9/5/2024
5.3.0-alpha.1 77 8/27/2024
5.2.2 1,421 8/8/2024
5.2.1 279 7/31/2024
5.2.0 463 7/23/2024
5.2.0-dev.20247238264 57 7/23/2024
5.2.0-dev.202472373315 53 7/23/2024
5.2.0-dev.202472285749 72 7/22/2024
5.2.0-dev.2024722101838 67 7/22/2024
5.2.0-dev.20247185135 57 7/18/2024
5.2.0-dev.202471675723 58 7/16/2024
5.2.0-dev.202471601240 56 7/16/2024
5.2.0-dev.202471532231 55 7/15/2024
5.1.3 257 7/30/2024
5.1.2 423 7/17/2024
5.1.1 288 7/15/2024
5.1.1-dev.2024715236 60 7/15/2024
5.1.0 293 7/11/2024
5.1.0-dev.20247571634 61 7/5/2024
5.1.0-dev.20247462615 47 7/4/2024
5.1.0-dev.20247454726 62 7/4/2024
5.1.0-dev.20247265137 59 7/2/2024
5.1.0-dev.202472113113 96 7/2/2024
5.1.0-dev.202471143629 61 7/11/2024
5.1.0-dev.202471124831 60 7/11/2024
5.1.0-dev.202471085334 49 7/10/2024
5.1.0-dev.202471063535 57 7/10/2024
5.0.0 1,331 7/2/2024
5.0.0-dev.20247262324 56 7/2/2024
5.0.0-dev.20247244612 69 7/2/2024
5.0.0-dev.20247210237 48 7/2/2024
5.0.0-dev.20247210056 55 7/2/2024
5.0.0-dev.202462794635 60 6/27/2024
5.0.0-dev.202462785251 56 6/27/2024
5.0.0-dev.202462631912 66 6/26/2024
5.0.0-dev.202462592754 51 6/25/2024
5.0.0-dev.20246258148 58 6/25/2024
5.0.0-dev.20246252407 62 6/25/2024
5.0.0-dev.202462474125 62 6/24/2024
5.0.0-dev.202462123754 63 6/21/2024
5.0.0-dev.202462082718 60 6/20/2024
5.0.0-dev.202462074928 65 6/20/2024
5.0.0-dev.202462072540 57 6/20/2024
5.0.0-dev.20246207226 59 6/20/2024
5.0.0-dev.20246206482 60 6/20/2024
5.0.0-dev.202461952927 71 6/19/2024
5.0.0-dev.202461923283 66 6/19/2024
5.0.0-dev.202461872832 57 6/18/2024
5.0.0-dev.202461374339 57 6/13/2024
5.0.0-dev.202461352248 60 6/13/2024
5.0.0-dev.202461351256 57 6/13/2024
5.0.0-dev.202461243517 58 6/12/2024
5.0.0-dev.2024611111529 81 6/11/2024
5.0.0-alpha.4 84 7/2/2024
5.0.0-alpha.3 85 6/13/2024
4.6.1 424 6/11/2024
4.6.1-dev.2024611105615 69 6/11/2024
4.6.0 444 5/27/2024
4.6.0-dev.20246117049 64 6/11/2024
4.6.0-dev.20246106246 79 6/10/2024
4.6.0-dev.2024610123735 74 6/10/2024
4.6.0-dev.202452745448 40 5/27/2024
4.6.0-dev.202452494431 47 5/24/2024
4.6.0-dev.202452391110 46 5/23/2024
4.6.0-dev.2024523113944 48 5/23/2024
4.6.0-dev.202452184238 46 5/21/2024
4.6.0-dev.202452181948 42 5/21/2024
4.6.0-dev.20245214382 48 5/21/2024
4.6.0-dev.202452082951 45 5/20/2024
4.6.0-dev.202451615321 69 5/16/2024
4.6.0-dev.2024527208 41 5/27/2024
4.5.2 386 6/11/2024
4.5.1 1,082 5/27/2024
4.5.0 382 5/14/2024
4.5.0-dev.20245985830 53 5/9/2024
4.5.0-dev.20245975524 53 5/9/2024
4.5.0-dev.20245362940 31 5/3/2024
4.5.0-dev.20245251958 64 5/2/2024
4.5.0-dev.202451405947 51 5/14/2024
4.5.0-dev.202451071148 62 5/10/2024
4.5.0-dev.202443041622 58 4/30/2024
4.5.0-dev.202443035711 57 4/30/2024
4.5.0-dev.202443012220 59 4/30/2024
4.5.0-dev.202442983922 42 4/29/2024
4.5.0-dev.20244183463 71 4/18/2024
4.5.0-dev.2024573814 68 5/7/2024
4.5.0-dev.2024531149 36 5/3/2024
4.5.0-dev.2024514850 62 5/14/2024
4.4.2 459 4/29/2024
4.4.1 1,252 4/18/2024
4.4.0 444 4/17/2024
4.4.0-dev.20244895252 187 4/8/2024
4.4.0-dev.202441792859 69 4/17/2024
4.4.0-dev.202441724517 63 4/17/2024
4.4.0-dev.202441722636 65 4/17/2024
4.4.0-dev.202441564949 49 4/15/2024
4.4.0-dev.202441533017 53 4/15/2024
4.4.0-dev.202441513740 52 4/15/2024
4.4.0-dev.20244129144 71 4/12/2024
4.4.0-dev.20244122344 53 4/12/2024
4.4.0-dev.202441194039 61 4/11/2024
4.4.0-dev.2024499372 69 4/9/2024
4.4.0-dev.2024497250 66 4/9/2024
4.3.1 415 4/18/2024
4.3.0 542 4/8/2024
4.3.0-dev.20244872312 58 4/8/2024
4.3.0-dev.20244475249 64 4/4/2024
4.3.0-dev.20244292719 81 4/2/2024
4.3.0-dev.202442155621 63 4/2/2024
4.3.0-dev.20244210115 63 4/2/2024
4.3.0-dev.20244134845 60 4/1/2024
4.3.0-dev.202441235321 50 4/2/2024
4.3.0-dev.2024329115816 56 3/29/2024
4.3.0-dev.202432911270 41 3/29/2024
4.3.0-dev.202432863823 58 3/28/2024
4.3.0-dev.202432852737 65 3/28/2024
4.3.0-dev.2024328235743 56 3/29/2024
4.3.0-dev.202432584936 77 3/25/2024
4.3.0-dev.2024322131938 114 3/22/2024
4.3.0-dev.2024488290 65 4/8/2024
4.3.0-dev.2024454133 47 4/5/2024
4.3.0-dev.2024441244 61 4/4/2024
4.3.0-dev.2024435488 60 4/3/2024
4.3.0-dev.2024411340 60 4/1/2024
4.2.0 788 3/22/2024
4.2.0-dev.202438103211 132 3/8/2024
4.2.0-dev.202432285034 59 3/22/2024
4.2.0-dev.202432253216 60 3/22/2024
4.2.0-dev.202432211924 54 3/22/2024
4.2.0-dev.202432210038 58 3/22/2024
4.2.0-dev.202432185316 58 3/21/2024
4.2.0-dev.202432165652 65 3/21/2024
4.2.0-dev.202431992026 66 3/19/2024
4.2.0-dev.202431975540 67 3/19/2024
4.2.0-dev.202431475642 72 3/14/2024
4.2.0-dev.202431473650 58 3/14/2024
4.2.0-dev.202431455436 71 3/14/2024
4.1.0 848 3/8/2024
4.1.0-dev.20243851041 60 3/8/2024
4.1.0-dev.20242745721 303 2/7/2024
4.1.0-dev.20242617225 117 2/6/2024
4.1.0-dev.202422841417 61 2/28/2024
4.1.0-dev.202422795846 71 2/27/2024
4.1.0-dev.202422212418 69 2/22/2024
4.1.0-dev.202422084141 80 2/20/2024
4.1.0-dev.202421442719 73 2/14/2024
4.1.0-dev.20241308431 75 1/30/2024
4.1.0-dev.202413045951 68 1/30/2024
4.1.0-dev.202412691246 75 1/26/2024
4.1.0-dev.202412453653 77 1/24/2024
4.1.0-dev.20241229566 106 1/22/2024
4.1.0-dev.2024277529 70 2/7/2024
4.1.0-dev.2024277350 75 2/7/2024
4.1.0-dev.2024271127 70 2/7/2024
4.1.0-dev.2024266858 69 2/6/2024
4.1.0-dev.2024255926 77 2/5/2024
4.0.6 957 2/22/2024
4.0.5 777 2/20/2024
4.0.4 819 2/7/2024
4.0.3 872 2/6/2024
4.0.2 873 2/6/2024
4.0.1 906 1/26/2024
4.0.0 1,026 1/22/2024
4.0.0-dev.20241985820 93 1/9/2024
4.0.0-dev.202418124437 73 1/8/2024
4.0.0-dev.20241723134 77 1/7/2024
4.0.0-dev.20241584548 86 1/5/2024
4.0.0-dev.20241574151 77 1/5/2024
4.0.0-dev.20241463147 86 1/4/2024
4.0.0-dev.202414141828 168 1/4/2024
4.0.0-dev.20241229132 80 1/22/2024
4.0.0-dev.20241227237 79 1/22/2024
4.0.0-dev.202412251634 85 1/22/2024
4.0.0-dev.20241198199 72 1/19/2024
4.0.0-dev.20241194751 78 1/19/2024
4.0.0-dev.2024118133421 88 1/18/2024
4.0.0-dev.202411774631 83 1/17/2024
4.0.0-dev.202411642750 86 1/16/2024
4.0.0-dev.2024116124653 75 1/16/2024
4.0.0-dev.202411562941 81 1/15/2024
4.0.0-dev.202411512648 70 1/15/2024
4.0.0-dev.202411084026 91 1/10/2024
4.0.0-dev.20241107180 91 1/10/2024
4.0.0-dev.20231288334 140 12/8/2023
4.0.0-dev.20231275158 106 12/7/2023
4.0.0-dev.20231253212 95 12/5/2023
4.0.0-dev.202312454555 122 12/4/2023
4.0.0-dev.2023121273426 103 12/12/2023
4.0.0-dev.202312121244 97 12/12/2023
4.0.0-dev.20231211114559 82 12/11/2023
4.0.0-dev.2023112991842 104 11/29/2023
4.0.0-dev.202311286740 89 11/28/2023
4.0.0-dev.202311276737 89 11/27/2023
4.0.0-dev.2023111311464 105 11/13/2023
4.0.0-dev.2023111214334 90 11/12/2023
4.0.0-dev.2023103113710 97 10/31/2023
4.0.0-dev.2023103064422 106 10/30/2023
4.0.0-dev.202310306150 99 10/30/2023
4.0.0-dev.20231030113325 112 10/30/2023
4.0.0-dev.2024191129 69 1/9/2024
3.9.6 825 1/26/2024
3.9.5 977 1/18/2024
3.9.4 1,108 1/11/2024
3.9.3 1,135 1/4/2024
3.9.2 1,107 12/15/2023
3.9.1 1,264 12/8/2023
3.9.0 1,175 12/5/2023
3.8.1 1,351 11/27/2023
3.8.0 1,158 11/24/2023
3.7.1 1,163 11/21/2023
3.7.0 1,398 10/30/2023
3.7.0-dev.2023103055432 98 10/30/2023
3.7.0-dev.2023103053844 96 10/30/2023
3.7.0-dev.2023103015623 96 10/30/2023
3.7.0-dev.20231028163510 93 10/28/2023
3.7.0-dev.2023102502921 96 10/25/2023
3.7.0-dev.2023102344043 98 10/23/2023
3.7.0-dev.2023102322916 105 10/23/2023
3.7.0-dev.2023101664642 98 10/16/2023
3.7.0-dev.2023101005633 103 10/10/2023
3.6.2 1,058 11/21/2023
3.6.1 1,230 11/20/2023
3.6.0 1,649 10/6/2023
3.6.0-dev.202310692622 97 10/6/2023
3.6.0-dev.202310685630 108 10/6/2023
3.6.0-dev.202310674641 101 10/6/2023
3.6.0-dev.202310661628 107 10/6/2023
3.6.0-dev.20231066125 104 10/6/2023
3.6.0-dev.2023104115737 108 10/4/2023
3.5.0 1,327 10/4/2023
3.5.0-dev.2023925113257 70 9/25/2023
3.5.0-dev.202310481625 68 10/4/2023
3.5.0-dev.20231046283 58 10/4/2023
3.4.0 1,352 9/25/2023
3.4.0-dev.20239812129 68 9/8/2023
3.4.0-dev.202392585338 63 9/25/2023
3.4.0-dev.202392582032 64 9/25/2023
3.4.0-dev.202391885619 70 9/18/2023
3.4.0-dev.202391331135 63 9/13/2023
3.3.1 1,555 9/8/2023
3.3.0 1,520 9/7/2023
3.3.0-dev.20239783735 76 9/7/2023
3.3.0-dev.20239724943 72 9/7/2023
3.3.0-dev.202397102355 63 9/7/2023
3.3.0-dev.20239615624 78 9/6/2023
3.3.0-dev.20239495347 62 9/4/2023
3.3.0-dev.20239484830 65 9/4/2023
3.3.0-dev.20239411226 72 9/4/2023
3.3.0-dev.20239175439 69 9/1/2023
3.3.0-dev.20239153213 63 9/1/2023
3.3.0-dev.20239152918 63 9/1/2023
3.3.0-dev.2023831114551 68 8/31/2023
3.3.0-dev.2023831111832 74 8/31/2023
3.3.0-dev.2023831104859 67 8/31/2023
3.3.0-dev.202383082619 66 8/30/2023
3.3.0-dev.20238307249 72 8/30/2023
3.3.0-dev.20238307233 72 8/30/2023
3.3.0-dev.202382983658 70 8/29/2023
3.3.0-dev.2023825102525 75 8/25/2023
3.3.0-dev.202382324634 64 8/23/2023
3.3.0-dev.20238214245 67 8/21/2023
3.3.0-dev.202381884021 61 8/18/2023
3.3.0-dev.2023818194946 64 8/18/2023
3.3.0-dev.2023818192049 68 8/18/2023
3.3.0-dev.202381816385 75 8/18/2023
3.3.0-dev.2023818161628 63 8/18/2023
3.3.0-dev.2023818153555 68 8/18/2023
3.3.0-dev.202381814158 66 8/18/2023
3.3.0-dev.2023818141549 61 8/18/2023
3.3.0-dev.202381813332 61 8/18/2023
3.3.0-dev.2023818131327 64 8/18/2023
3.3.0-dev.202381135124 74 8/11/2023
3.3.0-dev.202381133553 69 8/11/2023
3.3.0-dev.2023955312 50 9/5/2023
3.3.0-dev.2023818969 69 8/18/2023
3.2.0 1,666 8/11/2023
3.2.0-dev.20238994119 75 8/9/2023
3.2.0-dev.20238845541 74 8/8/2023
3.2.0-dev.20238821221 72 8/8/2023
3.2.0-dev.20238461459 80 8/4/2023
3.2.0-dev.20238275646 66 8/2/2023
3.2.0-dev.20238154018 73 8/1/2023
3.2.0-dev.202381111721 82 8/1/2023
3.2.0-dev.202381111550 68 8/11/2023
3.2.0-dev.202381075911 72 8/10/2023
3.2.0-dev.20238104507 53 8/10/2023
3.2.0-dev.202381012236 76 8/10/2023
3.2.0-dev.20237315249 74 7/31/2023
3.2.0-dev.202373121725 72 7/31/2023
3.2.0-dev.2023729152048 76 7/29/2023
3.2.0-dev.20237281368 80 7/28/2023
3.1.2 1,860 8/10/2023
3.1.1 1,651 8/9/2023
3.1.0 1,476 7/27/2023
3.1.0-dev.20237279418 75 7/27/2023
3.1.0-dev.202372791136 72 7/27/2023
3.1.0-dev.20237217261 74 7/21/2023
3.1.0-dev.202372164639 74 7/21/2023
3.1.0-dev.20237216222 76 7/21/2023
3.1.0-dev.202372133813 74 7/21/2023
3.1.0-dev.20237212138 73 7/21/2023
3.1.0-dev.202372045226 75 7/20/2023
3.1.0-dev.202372031249 74 7/20/2023
3.1.0-dev.202372025146 79 7/20/2023
3.1.0-dev.202371982157 71 7/19/2023
3.0.1 1,436 7/21/2023
3.0.0 1,498 7/19/2023
3.0.0-dev.20237197488 76 7/19/2023
2.6.0-dev.20237197613 82 7/19/2023
2.6.0-dev.202371951054 70 7/19/2023
2.6.0-dev.202371835838 74 7/18/2023
2.6.0-dev.2023717173937 76 7/17/2023