FiftyOne.DeviceDetection.Hash.Engine.OnPremise 4.5.0-alpha.183

This is a prerelease version of FiftyOne.DeviceDetection.Hash.Engine.OnPremise.
dotnet add package FiftyOne.DeviceDetection.Hash.Engine.OnPremise --version 4.5.0-alpha.183
                    
NuGet\Install-Package FiftyOne.DeviceDetection.Hash.Engine.OnPremise -Version 4.5.0-alpha.183
                    
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="FiftyOne.DeviceDetection.Hash.Engine.OnPremise" Version="4.5.0-alpha.183" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FiftyOne.DeviceDetection.Hash.Engine.OnPremise" Version="4.5.0-alpha.183" />
                    
Directory.Packages.props
<PackageReference Include="FiftyOne.DeviceDetection.Hash.Engine.OnPremise" />
                    
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 FiftyOne.DeviceDetection.Hash.Engine.OnPremise --version 4.5.0-alpha.183
                    
#r "nuget: FiftyOne.DeviceDetection.Hash.Engine.OnPremise, 4.5.0-alpha.183"
                    
#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 FiftyOne.DeviceDetection.Hash.Engine.OnPremise@4.5.0-alpha.183
                    
#: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=FiftyOne.DeviceDetection.Hash.Engine.OnPremise&version=4.5.0-alpha.183&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=FiftyOne.DeviceDetection.Hash.Engine.OnPremise&version=4.5.0-alpha.183&prerelease
                    
Install as a Cake Tool

51Degrees Device Detection Engines

51Degrees Pipeline API

Developer Documentation

Introduction

This repository contains the device detection engines for the .NET implementation of the Pipeline API.

The specification is also available on GitHub and is recommended reading if you wish to understand the concepts and design of this API.

Dependencies

Visual Studio 2022 or later is recommended. Although Visual Studio Code can be used for working with most of the projects.

The core device detection projects are written in C and C++. The Pipeline engines are written in C# and target .NET Standard 2.0.3. Example and test projects mostly target .NET 6.0 though in some cases, projects are available targeting other frameworks.

For runtime dependencies, see our dependencies page. The ci/options.json file lists the tested and packaged .NET versions and operating systems automatic tests are performed with. The solution will likely operate with other versions.

Data

The API can either use our cloud service to get its data or it can use a local (on-premise) copy of the data.

Cloud

You will require a resource key to use the Cloud API. You can create resource keys using our configurator, see our documentation on how to use this.

On-Premise

In order to perform device detection on-premise, you will need to use a 51Degrees data file. This repository includes a free, 'lite' file in the 'device-detection-data' sub-module that has a significantly reduced set of properties. To obtain a file with a more complete set of device properties see the 51Degrees website. If you want to use the lite file, you will need to install GitLFS.

On Linux:

sudo apt-get install git-lfs
git lfs install

Then, navigate to 'device-detection-cxx/device-detection-data' and execute:

git lfs pull

Solutions and projects

  • FiftyOne.DeviceDetection - Device detection engines and related projects.
    • FiftyOne.DeviceDetection - Contains device detection engine builders.
    • FiftyOne.DeviceDetection.Cloud - A .NET engine which retrieves device detection results by consuming the 51Degrees cloud service. This can be swapped out with either the hash or pattern engines seamlessly.
    • FiftyOne.DeviceDetection.Hash.Engine.OnPremise - .NET implementation of the device detection hash engine. CMake is used to build the native binaries.
    • FiftyOne.DeviceDetection.Shared - Shared classes used by the device detection engines.

Installation

Nuget

The easiest way to install is to use NuGet to add the reference to the package:

Install-Package FiftyOne.DeviceDetection

Build from Source

Device detection on-premise uses a native binary (i.e. compiled from C code to target a specific platform/architecture). The NuGet package contains several binaries for common platforms. However, in some cases, you'll need to build the native binaries yourself for your target platform. This section explains how to do this.

Pre-requisites
  • Install C build tools:
    • Windows:
      • You will need either Visual Studio 2022 or the C++ Build Tools installed.
        • Minimum platform toolset version is v143
        • Minimum Windows SDK version is 10.0.18362.0
    • Linux/MacOS:
      • sudo apt-get install g++ make libatomic1
  • If you have not already done so, pull the git submodules that contain the native code:
    • git submodule update --init --recursive

Visual studio should now be able to build the native binaries as part of its normal build process.

Packaging

You can package a project into NuGet *.nupkg file by running a command like:

dotnet pack [Project] -o "[PackagesFolder]" /p:PackageVersion=0.0.0 -c [Configuration] /p:Platform=[Architecture]
⚠️ Notes on packaging FiftyOne.DeviceDetection.Hash.Engine.OnPremise

📝 Using AnyCPU might prevent the unmanaged (C++) code from being built into .Native.dll library. Use x86/x64/arm64 specifically.

📝 If creating cross-platform package from multiple native dlls, put all 6x FiftyOne.DeviceDetection.Hash.Engine.OnPremise.Native.dll into respective folders:

../
    macos/
        arm64/
        x64/
    linux/
        x64/
        x86/
    windows/
        x64/
        x86/

and add to the packaging command:

/p:BuiltOnCI=true

related CI scripts:

  • BuiltOnCI var:
    • [https://github.com/51Degrees/common-ci/blob/main/dotnet/build-project-core.ps1]
    • [https://github.com/51Degrees/common-ci/blob/main/dotnet/build-package-nuget.ps1]
    • [https://github.com/51Degrees/common-ci/blob/main/dotnet/build-project-framework.ps1]
    • [https://github.com/51Degrees/device-detection-dotnet/blob/main/ci/run-performance-tests-console.ps1]
  • Copying native binaries:
    • [https://github.com/51Degrees/device-detection-dotnet/blob/main/ci/build-package.ps1]
Strong naming

We currently do not strong name assemblies due to downsides for developers. The main of which is that .NET Framework on Windows enables strict loading of assemblies once an assembly is strong named. A strong-named assembly reference must exactly match the version of the loaded assembly, forcing developers to configure binding redirects when using the assembly.

If it is absolutely critical for your use case to integrate a strong-named assembly - please create a feature request issue.

Examples

Examples can be found in device-detection-dotnet-examples repository.

Tests

Tests can be found in the Tests/ folder. These can all be run from within Visual Studio or by using the dotnet test command line tool.

Some tests require additional resources to run. These will either fail or return an 'inconclusive' result if these resources are not provided.

  • Some tests require an 'Enterprise' data file. This can be obtained by purchasing a license.
    • Once available, the full path to this data file must be specified in the DEVICEDETECTIONDATAFILE environment variable.
  • Tests using the cloud service require resource keys with specific properties to be provided using environment variables:
    • The SUPER_RESOURCE_KEY environment variable should be populated with a key that includes all properties. A license is required in order to access some properties.

Project documentation

For complete documentation on the Pipeline API and associated engines, see the 51Degrees documentation site.

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 was computed.  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.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.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 (1)

Showing the top 1 NuGet packages that depend on FiftyOne.DeviceDetection.Hash.Engine.OnPremise:

Package Downloads
FiftyOne.DeviceDetection

51Degrees Device Detection parses HTTP headers to return detailed hardware, operating system, browser, and crawler information for the devices used to access your website or service. This is an alternative to popular UAParser, DeviceAtlas, and WURFL packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.5.0-alpha.183 72 10/4/2025
4.5.0-alpha.181 112 10/3/2025
4.5.0-alpha.180 140 10/1/2025
4.5.0-alpha.179 186 9/25/2025
4.5.0-alpha.178 393 9/16/2025
4.5.0-alpha.176 306 9/3/2025
4.5.0-alpha.175 213 8/30/2025
4.5.0-alpha.174 210 8/29/2025
4.5.0-alpha.171 274 8/26/2025
4.5.0-alpha.170 169 8/21/2025
4.5.0-alpha.169 134 8/20/2025
4.5.0-alpha.168 141 8/12/2025
4.5.0-alpha.167 201 8/7/2025
4.5.0-alpha.165 205 8/6/2025
4.5.0-alpha.164 188 8/5/2025
4.5.0-alpha.163 101 7/30/2025
4.5.0-alpha.162 500 7/22/2025
4.5.0-alpha.161 47 7/19/2025
4.5.0-alpha.160 120 7/16/2025
4.5.0-alpha.159 427 7/10/2025
4.5.0-alpha.158 124 7/9/2025
4.5.0-alpha.157 124 7/8/2025
4.5.0-alpha.156 135 6/25/2025
4.5.0-alpha.155 290 6/18/2025
4.5.0-alpha.154 153 6/14/2025
4.5.0-alpha.153 151 6/4/2025
4.5.0-alpha.152 154 5/28/2025
4.5.0-alpha.151 148 5/22/2025
4.5.0-alpha.150 151 5/20/2025
4.5.0-alpha.149 242 5/13/2025
4.5.0-alpha.148 84 5/10/2025
4.5.0-alpha.147 136 5/9/2025
4.5.0-alpha.146 144 5/8/2025
4.5.0-alpha.144 152 5/7/2025
4.5.0-alpha.142 154 5/5/2025
4.5.0-alpha.131 198 4/15/2025
4.5.0-alpha.128 186 4/3/2025
4.5.0-alpha.127 165 4/3/2025
4.5.0-alpha.126 150 4/2/2025
4.5.0-alpha.125 3,509 4/1/2025
4.5.0-alpha.124 144 3/28/2025
4.5.0-alpha.123 133 3/27/2025
4.5.0-alpha.122 466 3/26/2025
4.5.0-alpha.121 135 3/21/2025
4.5.0-alpha.120 149 3/18/2025
4.5.0-alpha.119 177 3/11/2025
4.5.0-alpha.118 199 3/7/2025
4.5.0-alpha.117 220 3/6/2025
4.5.0-alpha.116 183 3/4/2025
4.5.0-alpha.115 95 2/27/2025
4.5.0-alpha.114 94 2/27/2025
4.5.0-alpha.112 95 2/25/2025
4.5.0-alpha.111 106 2/21/2025
4.5.0-alpha.110 111 2/18/2025
4.5.0-alpha.109 100 2/14/2025
4.5.0-alpha.108 109 2/12/2025
4.5.0-alpha.107 95 2/11/2025
4.5.0-alpha.106 92 2/9/2025
4.5.0-alpha.105 94 2/8/2025
4.5.0-alpha.104 90 2/7/2025
4.5.0-alpha.103 85 2/6/2025
4.5.0-alpha.102 104 2/6/2025
4.5.0-alpha.101 98 2/4/2025
4.5.0-alpha.99 2,642 1/30/2025
4.5.0-alpha.98 125 1/29/2025
4.5.0-alpha.97 183 1/26/2025
4.5.0-alpha.96 110 1/25/2025
4.5.0-alpha.94 114 1/24/2025
4.5.0-alpha.92 93 1/23/2025
4.5.0-alpha.91 89 1/22/2025
4.5.0-alpha.84 208 1/15/2025
4.5.0-alpha.83 75 1/14/2025
4.5.0-alpha.81 3,043 1/14/2025
4.5.0-alpha.79 97 1/12/2025
4.5.0-alpha.77 168 1/9/2025
4.5.0-alpha.75 83 1/8/2025
4.5.0-alpha.73 262 1/3/2025
4.5.0-alpha.71 91 12/31/2024
4.5.0-alpha.67 685 12/24/2024
4.5.0-alpha.65 90 12/23/2024
4.5.0-alpha.61 107 12/21/2024
4.5.0-alpha.59 97 12/20/2024
4.5.0-alpha.57 122 12/18/2024
4.5.0-alpha.53 96 12/16/2024
4.5.0-alpha.51 79 12/16/2024
4.5.0-alpha.50 89 12/16/2024
4.5.0-alpha.43 93 12/2/2024
4.5.0-alpha.32 106 11/14/2024
4.5.0-alpha.30 100 11/13/2024
4.5.0-alpha.28 91 11/12/2024
4.5.0-alpha.26 95 11/9/2024
4.5.0-alpha.24 91 11/7/2024
4.5.0-alpha.22 100 11/6/2024
4.5.0-alpha.18 91 11/5/2024
4.5.0-alpha.14 122 10/15/2024
4.5.0-alpha.12 83 10/14/2024
4.5.0-alpha.11 79 10/13/2024
4.5.0-alpha.9 99 10/10/2024
4.4.263 133 10/4/2025
4.4.262 168 10/3/2025
4.4.261 191 10/2/2025
4.4.260 390 9/25/2025
4.4.259 490 9/20/2025
4.4.258 475 9/16/2025
4.4.255 630 9/3/2025
4.4.254 256 9/2/2025
4.4.253 291 9/1/2025
4.4.252 335 8/29/2025
4.4.251 345 8/26/2025
4.4.250 503 8/20/2025
4.4.249 502 8/12/2025
4.4.248 5,292 4/15/2025
4.4.247 912 4/4/2025
4.4.246 381 4/3/2025
4.4.245 378 4/2/2025
4.4.244 353 4/1/2025
4.4.243 1,020 3/18/2025
4.4.242 337 3/15/2025
4.4.241 458 3/12/2025
4.4.240 393 3/11/2025
4.4.239 525 3/8/2025
4.4.238 453 3/7/2025
4.4.237 631 3/4/2025
4.4.236 363 3/2/2025
4.4.235 326 3/1/2025
4.4.234 374 2/27/2025
4.4.233 281 2/27/2025
4.4.232 352 2/26/2025
4.4.231 245 2/26/2025
4.4.230 614 2/18/2025
4.4.229 532 2/12/2025
4.4.228 457 2/8/2025
4.4.227 307 2/7/2025
4.4.226 391 2/6/2025
4.4.223 282 2/5/2025
4.4.222 269 2/5/2025
4.4.221 385 2/4/2025
4.4.220 364 2/2/2025
4.4.219 433 1/29/2025
4.4.218 505 1/26/2025
4.4.217 430 1/22/2025
4.4.216 377 1/20/2025
4.4.215 336 1/18/2025
4.4.214 361 1/16/2025
4.4.213 1,617 1/15/2025
4.4.212 737 1/9/2025
4.4.211 335 1/7/2025
4.4.210 492 1/3/2025
4.4.209 373 1/2/2025
4.4.208 334 1/1/2025
4.4.207 580 12/25/2024
4.4.206 378 12/23/2024
4.4.205 378 12/21/2024
4.4.204 340 12/20/2024
4.4.203 371 12/18/2024
4.4.202 365 12/17/2024
4.4.201 894 12/16/2024
4.4.200 559 12/11/2024
4.4.199 314 12/10/2024
4.4.198 609 12/3/2024
4.4.197 347 12/2/2024
4.4.196 324 12/1/2024
4.4.195 418 11/27/2024
4.4.194 787 11/14/2024
4.4.193 307 11/13/2024
4.4.192 293 11/12/2024
4.4.191 823 11/9/2024
4.4.190 376 11/6/2024
4.4.189 493 11/5/2024
4.4.188 330 11/3/2024
4.4.187 335 11/2/2024
4.4.186 552 10/23/2024
4.4.185 298 10/22/2024
4.4.184 1,763 10/18/2024
4.4.183 379 10/17/2024
4.4.182 2,019 10/10/2024
4.4.181 353 10/8/2024
4.4.180 401 10/4/2024
4.4.179 1,381 10/2/2024
4.4.178 389 10/1/2024
4.4.177 1,393 9/30/2024
4.4.176 350 9/28/2024
4.4.175 1,374 9/13/2024
4.4.174 397 9/10/2024
4.4.173 354 9/8/2024
4.4.172 317 9/7/2024
4.4.171 346 9/5/2024
4.4.170 357 9/4/2024
4.4.169 344 9/3/2024
4.4.168 437 8/30/2024
4.4.167 339 8/29/2024
4.4.166 699 8/20/2024
4.4.165 472 8/15/2024
4.4.164 351 8/14/2024
4.4.163 445 8/13/2024
4.4.162 821 8/7/2024
4.4.161 713 8/6/2024
4.4.160 303 8/5/2024
4.4.159 280 8/3/2024
4.4.158 294 7/30/2024
4.4.157 346 7/26/2024
4.4.156 246 7/26/2024
4.4.155 381 7/24/2024
4.4.154 2,041 7/19/2024
4.4.153 332 7/18/2024
4.4.152 336 7/17/2024
4.4.151 334 7/16/2024
4.4.150 328 7/15/2024
4.4.149 455 7/11/2024
4.4.148 339 7/10/2024
4.4.147 334 7/9/2024
4.4.146 377 7/7/2024
4.4.145 383 7/4/2024
4.4.144 578 6/27/2024
4.4.143 369 6/25/2024
4.4.142 908 6/19/2024
4.4.141 377 6/19/2024
4.4.140 439 6/15/2024
4.4.139 396 6/11/2024
4.4.138 1,484 6/1/2024
4.4.137 327 5/31/2024
4.4.136 391 5/29/2024
4.4.135 330 5/29/2024
4.4.134 1,973 5/25/2024
4.4.133 420 5/22/2024
4.4.132 428 5/18/2024
4.4.131 309 5/17/2024
4.4.130 290 5/16/2024
4.4.129 267 5/16/2024
4.4.128 275 5/15/2024
4.4.127 273 5/15/2024
4.4.126 340 5/14/2024
4.4.125 1,001 5/13/2024
4.4.124 347 5/12/2024
4.4.123 289 5/12/2024
4.4.122 476 5/8/2024
4.4.121 470 5/3/2024
4.4.120 276 5/2/2024
4.4.119 374 4/30/2024
4.4.118 512 4/28/2024
4.4.117 734 4/25/2024
4.4.116 467 4/23/2024
4.4.115 410 4/21/2024
4.4.114 410 4/20/2024
4.4.113 6,171 4/10/2024
4.4.112 357 4/4/2024
4.4.111 777 3/27/2024
4.4.110 2,126 3/21/2024
4.4.109 377 3/21/2024
4.4.108 446 3/19/2024
4.4.107 369 3/18/2024
4.4.106 389 3/17/2024
4.4.105 375 3/16/2024
4.4.104 1,297 2/22/2024
4.4.103 484 2/21/2024
4.4.102 540 2/16/2024
4.4.101 483 2/15/2024
4.4.100 519 2/14/2024
4.4.99 459 2/14/2024
4.4.98 764 2/2/2024
4.4.97 518 2/1/2024
4.4.96 2,427 1/28/2024
4.4.95 471 1/27/2024
4.4.94 461 1/26/2024
4.4.93 1,019 1/18/2024
4.4.92 490 1/16/2024
4.4.91 507 1/14/2024
4.4.90 500 1/13/2024
4.4.89 466 1/12/2024
4.4.88 483 1/11/2024
4.4.87 485 1/10/2024
4.4.86 577 1/7/2024
4.4.85 1,066 12/21/2023
4.4.84 475 12/19/2023
4.4.83 733 12/8/2023
4.4.82 552 12/3/2023
4.4.81 486 12/1/2023
4.4.80 497 11/30/2023
4.4.79 487 11/29/2023
4.4.78 524 11/26/2023
4.4.77 464 11/25/2023
4.4.76 491 11/24/2023
4.4.75 483 11/23/2023
4.4.74 501 11/21/2023
4.4.73 720 11/4/2023
4.4.72 446 11/3/2023
4.4.71 468 11/2/2023
4.4.70 424 11/1/2023
4.4.69 568 10/29/2023
4.4.68 462 10/28/2023
4.4.67 462 10/27/2023
4.4.66 471 10/26/2023
4.4.65 522 10/25/2023
4.4.64 2,029 10/12/2023
4.4.63 2,008 10/6/2023
4.4.62 1,128 9/24/2023
4.4.61 512 9/21/2023
4.4.60 440 9/21/2023
4.4.59 701 9/17/2023
4.4.58 446 9/16/2023
4.4.57 507 9/15/2023
4.4.56 529 9/14/2023
4.4.55 489 9/13/2023
4.4.54 590 9/11/2023
4.4.53 485 9/10/2023
4.4.52 504 9/9/2023
4.4.51 572 9/6/2023
4.4.50 556 9/3/2023
4.4.49 524 9/1/2023
4.4.48 554 8/31/2023
4.4.47 1,235 8/18/2023
4.4.46 687 8/11/2023
4.4.45 552 8/10/2023
4.4.44 518 8/8/2023
4.4.43 7,950 7/22/2023
4.4.42 546 7/20/2023
4.4.41 550 7/17/2023
4.4.40 525 7/15/2023
4.4.39 568 7/13/2023
4.4.38 627 7/9/2023
4.4.37 577 7/6/2023
4.4.36 558 7/4/2023
4.4.35 672 6/28/2023
4.4.34 553 6/27/2023
4.4.33 1,541 6/24/2023
4.4.32 1,083 6/22/2023
4.4.31 1,461 6/21/2023
4.4.30 592 6/20/2023
4.4.29 651 6/15/2023
4.4.28 554 6/14/2023
4.4.27 624 6/12/2023
4.4.26 597 6/10/2023
4.4.25 725 6/8/2023
4.4.24 5,041 6/5/2023
4.4.23 25,138 3/24/2023
4.4.22 1,972 3/20/2023
4.4.21 929 3/15/2023
4.4.20 742 3/10/2023
4.4.19 985 3/6/2023
4.4.17 4,655 2/15/2023
4.4.16 6,451 2/1/2023
4.4.15 1,114 1/18/2023
4.4.14 2,155 12/8/2022
4.4.13 1,719 12/7/2022
4.4.12 2,850 11/2/2022
4.4.11 1,285 8/30/2022
4.4.10 2,546 8/10/2022
4.4.9 1,427 7/27/2022
4.4.8 333,522 6/29/2022
4.4.7 1,081 6/22/2022
4.4.6 1,086 6/15/2022
4.4.5 1,249 5/25/2022
4.4.3 1,378 5/4/2022
4.4.2 1,041 4/27/2022
4.4.1 1,093 4/20/2022
4.4.0 1,505 4/7/2022
4.3.17 1,896 3/31/2022 4.3.17 is deprecated because it is no longer maintained.
4.3.16 1,862 3/2/2022 4.3.16 is deprecated because it is no longer maintained.
4.3.15 3,707 2/2/2022 4.3.15 is deprecated because it is no longer maintained.
4.3.14 1,492 1/25/2022 4.3.14 is deprecated because it is no longer maintained.
4.3.13 15,969 12/22/2021 4.3.13 is deprecated because it is no longer maintained.
4.3.12 1,103 12/15/2021 4.3.12 is deprecated because it is no longer maintained.
4.3.11 1,067 12/1/2021 4.3.11 is deprecated because it is no longer maintained.
4.3.10 1,069 11/17/2021 4.3.10 is deprecated because it is no longer maintained.
4.3.9 1,456 11/3/2021 4.3.9 is deprecated because it is no longer maintained.
4.3.8 1,230 10/6/2021 4.3.8 is deprecated because it is no longer maintained.
4.3.6 955 9/15/2021 4.3.6 is deprecated because it is no longer maintained.
4.3.5 223 9/1/2021 4.3.5 is deprecated because it is no longer maintained.
4.3.4 757 8/17/2021 4.3.4 is deprecated because it is no longer maintained.
4.3.3 269 8/3/2021 4.3.3 is deprecated because it is no longer maintained.
4.3.0 650 6/16/2021 4.3.0 is deprecated because it is no longer maintained.
4.2.4 2,665 5/11/2021 4.2.4 is deprecated because it is no longer maintained.
4.2.1 1,775 2/3/2021 4.2.1 is deprecated because it is no longer maintained.
4.2.0 1,232 1/6/2021 4.2.0 is deprecated because it is no longer maintained.
4.1.10 1,893 8/10/2020 4.1.10 is deprecated because it is no longer maintained.
4.1.8 385 7/13/2020 4.1.8 is deprecated because it is no longer maintained.
4.1.7 617 6/30/2020 4.1.7 is deprecated because it is no longer maintained.
4.1.6 2,044 5/29/2020 4.1.6 is deprecated because it is no longer maintained.
4.1.0-beta.26 366 2/18/2020 4.1.0-beta.26 is deprecated because it is no longer maintained.
4.1.0-beta.25 293 2/13/2020 4.1.0-beta.25 is deprecated because it is no longer maintained.
4.1.0-beta.19 333 1/7/2020 4.1.0-beta.19 is deprecated because it is no longer maintained.
4.1.0-beta.18 352 1/7/2020 4.1.0-beta.18 is deprecated because it is no longer maintained.