Z.Expressions.Eval
6.1.4
See the version list below for details.
dotnet add package Z.Expressions.Eval --version 6.1.4
NuGet\Install-Package Z.Expressions.Eval -Version 6.1.4
<PackageReference Include="Z.Expressions.Eval" Version="6.1.4" />
paket add Z.Expressions.Eval --version 6.1.4
#r "nuget: Z.Expressions.Eval, 6.1.4"
// Install Z.Expressions.Eval as a Cake Addin #addin nuget:?package=Z.Expressions.Eval&version=6.1.4 // Install Z.Expressions.Eval as a Cake Tool #tool nuget:?package=Z.Expressions.Eval&version=6.1.4
Z.Expressions.Eval: C# Eval Expression
Z.Expressions.Eval is a robust NuGet package that enables .NET developers to evaluate, compile, and execute dynamic C# expressions. By interpreting and processing strings as executable code, this package empowers developers to craft highly adaptable and customizable applications.
It has the capability to handle an extensive range of mathematical operations, string manipulations, boolean logic, and it can even interact with .NET objects and classes.
The principal advantage of Z.Expressions.Eval lies in its ability to provide enhanced flexibility by facilitating runtime execution and manipulation of C# expressions. This feature is particularly beneficial in scenarios where business rules are subject to frequent changes or need to be configurable.
Having earned the trust and endorsement of over 5000 customers worldwide, C# Eval Expression is a highly regarded library that has become an essential tool for a wide variety of projects.
Resources:
- Official Website: Visit for comprehensive information, updates, tutorials, and more. Learn how Z.Expressions.Eval can significantly enhance your application's capabilities.
- Contact Us: Have a question or need assistance? Don't hesitate to reach out. We're here to help you get the most out of C# Eval Expression.
- GitHub Issues: Encountered an issue or have a feature request? Let us know on GitHub. Your feedback helps us make C# Eval Expression even better.
Supported .NET Versions
Z.Expressions.Eval exhibits broad compatibility with a variety of .NET versions. Starting from .NET Framework 4.5 and .NET Core 2.0, it extends support to the most recent versions of .NET.
To take full advantage of the enhancements in newer .NET versions, we highly recommend upgrading to the latest package version of Z.Expressions.Eval.
Main Features
Z.Expressions.Eval provides a set of powerful features designed to simplify dynamic C# expression evaluation and execution. Here are some of the key features:
- Eval.Execute: Allows you to evaluate and execute a string as a C# expression at runtime. This feature can handle a wide variety of mathematical operations, string manipulations, boolean logic, and even work with .NET objects and classes.
- Eval.Compile: Offers the ability to compile a string as a C# expression at runtime, reducing the overhead of repeated evaluations. This feature is especially useful when working with expressions that need to be executed multiple times.
- LINQ Dynamic: Provides the power to execute LINQ expressions dynamically. This feature opens up new possibilities for creating highly flexible and configurable queries.
For a more detailed explanation and examples of each operation, please refer to the official documentation page.
Getting Started
To get a feel for Z.Expressions.Eval, here is a simple example:
using Z.Expressions;
public class Program
{
public static void Main()
{
var result = Eval.Execute<int>("X*Y", new { X = 10, Y = 20 });
Console.WriteLine(result); // Outputs: 200
}
}
In the above example, the "X*Y" string expression is evaluated dynamically at runtime with the values of X and Y provided in an anonymous object. The result is then printed to the console.
Want to explore the library further? We offer an extensive collection of online examples showcasing the various functionalities and capabilities of C# Eval Expression:
These examples are specifically designed to impart practical understanding of C# Eval Expression, demonstrating its potent features and adaptable options in a variety of scenarios.
Advanced Usage
Instance Context
Z.Expressions.Eval allows more advanced scenarios, such as operating in a specific context, using variables, and more. Here's an example illustrating the use of instance context:
// CREATE a new instance of EvalContext
var context = new EvalContext();
// USE the `Execute` method from the context created
var list1 = context.Execute<List<int>>("new List<int>() { 1, 2, 3 };");
In this example, we first create a new instance of EvalContext
. Then, we use the Execute
method from the created context to evaluate and execute a string as a C# expression, which instantiates a new List<int>
.
Register Type
The RegisterType
method allows you to register all types provided for the context. The method also registers extension methods from those types but does not register other static members. For instance, if you register the type "Z.MyNamespace.MyClass", you can subsequently create an expression such as "new MyClass()" or any extension methods from this type.
In the following example, we'll register the types MyClassHelper
and MyExtensions
to include their extension methods. We'll first demonstrate how to use our class and extension methods in an arithmetic operation. We'll then show how to utilize the IsRegisteredType
and UnregisterType
methods with MyClassHelper
to verify if the type is currently registered and to unregister it.
using System;
using System.Collections.Generic;
using Z.Expressions;
public class Program
{
public static void Main()
{
// Global Context: EvalManager.DefaultContext.RegisterType(typeof(Helper));
var context = new EvalContext();
context.RegisterType(typeof(MyClassHelper));
context.RegisterType(typeof(MyExtensions));
var r1 = context.Execute<int>("new MyClassHelper().MyClassHelperID + 2.AddMe(3)"); // return 6
Console.WriteLine("1 - Result: " + r1);
// Check if the type `MyClassHelper` is registered
var r2 = context.IsRegisteredType(typeof(MyClassHelper)); // return true
Console.WriteLine("2 - Result: " + r2);
// Unregister the type `MyClassHelper`
context.UnregisterType(typeof(MyClassHelper));
// Check the type `MyClassHelper` has been succesfully unregistered
var r3 = context.IsRegisteredType(typeof(MyClassHelper)); // return false
Console.WriteLine("3 - Result: " + r3);
}
public class MyClassHelper
{
public int MyClassHelperID { get; set; } = 1;
}
}
public static class MyExtensions
{
public static int AddMe(this int x, int y)
{
return x + y;
}
}
Use Options
The SafeMode
option allows you to set the context to only allow the usage of registered members and types within expressions. In essence, it enables a secure execution environment for user input, restricting usage to only what you explicitly permit. By default, SafeMode
is set to false
.
In this example, we demonstrate how SafeMode
method. Please ensure to thoroughly understand the SafeMode
documentation if you intend to use this option.
// Global Context: EvalManager.DefaultContext.SafeMode = true;
var context = new EvalContext();
context.SafeMode = true;
context.UnregisterAll();
try
{
var fail = context.Execute("Math.Min(1, 2)");
Console.WriteLine(fail);
}
catch(Exception ex)
{
Console.WriteLine("1 - Exception: " + ex.Message);
}
// try again by registering "System.Math" member
context.RegisterMember(typeof(System.Math));
var r2 = context.Execute("Math.Min(1, 2)");
Console.WriteLine("2 - Result: " + r2);
Release Notes
For a thorough record of enhancements, bug fixes, and upgrades in each iteration of C# Eval Expression, we recommend referring to the official Release Notes located in our GitHub repository.
The Release Notes offer essential insights about each version, detailing new features, addressing resolved issues, and mentioning any breaking changes (if applicable). We strongly advise reviewing these notes prior to upgrading to a newer version. This practice not only ensures you leverage the full potential of the newly introduced features but also helps prevent unforeseen complications.
License
C# Eval Expression utilizes a paid licensing model. To acquire a license, please visit our official Pricing Page on the Eval Expression website.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
.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 is compatible. |
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. 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. |
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.5.0)
- Microsoft.Extensions.Caching.Memory (>= 2.0.0)
- System.Configuration.ConfigurationManager (>= 4.5.0)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.TypeExtensions (>= 4.5.0)
-
.NETStandard 2.1
- Microsoft.CSharp (>= 4.5.0)
- Microsoft.Extensions.Caching.Memory (>= 2.0.0)
- System.Configuration.ConfigurationManager (>= 4.5.0)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.TypeExtensions (>= 4.5.0)
-
net6.0
- Microsoft.Extensions.Caching.Memory (>= 2.0.0)
- System.Configuration.ConfigurationManager (>= 4.5.0)
-
net8.0
- Microsoft.Extensions.Caching.Memory (>= 8.0.0)
- System.Configuration.ConfigurationManager (>= 8.0.0)
NuGet packages (14)
Showing the top 5 NuGet packages that depend on Z.Expressions.Eval:
Package | Downloads |
---|---|
Z.EntityFramework.Plus.EFCore
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more **IMPORTANT** - For EF Core 9.x, use the latest EF Plus v9.x version - For EF Core 8.x, use the latest EF Plus v8.x version - For EF Core 7.x, use the latest EF Plus v7.x version - For EF Core 6.x, use the latest EF Plus v6.x version - For EF Core 5.x, use the latest EF Plus v5.x version - For EF Core 3.x, use the latest EF Plus v3.x version - For EF Core 2.x, use the latest EF Plus v2.x version |
|
Z.EntityFramework.Plus.EF6
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more |
|
Z.EntityFramework.Classic
Entity Framework Classic is an EF6 fork with performance enhancement, new features, and .NET Core support. This package is FREE (Community Version) Some features are Prime (Enterprise Version) Prime features can be disabled with "EntityFrameworkManager.IsCommunity = true;" |
|
Z.EntityFramework.Plus.EF5
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more EF Core Package: https://www.nuget.org/packages/Z.EntityFramework.Plus.EFCore/ EF6 Package: https://www.nuget.org/packages/Z.EntityFramework.Plus.EF6/ |
|
DianFengBaseLib.Infrastructure
配合DDD使用 |
GitHub repositories (6)
Showing the top 5 popular GitHub repositories that depend on Z.Expressions.Eval:
Repository | Stars |
---|---|
zzzprojects/EntityFramework-Plus
Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more
|
|
zzzprojects/EntityFramework.DynamicFilters
Global filtering for Entity Framework.
|
|
zzzprojects/Eval-Expression.NET
C# Eval Expression | Evaluate, Compile, and Execute C# code and expression at runtime.
|
|
zzzprojects/EntityFramework-Effort
Entity Framework Effort is a powerful tool that enables a convenient way to create automated tests for Entity Framework based applications.
|
|
DigitalPlatform/dp2
Integrated Library System / 图书馆集成系统
|
Version | Downloads | Last updated |
---|---|---|
6.2.1 | 34,864 | 10/22/2024 |
6.2.0 | 144,949 | 9/23/2024 |
6.2.0-beta1 | 85 | 10/2/2024 |
6.1.10 | 150,667 | 8/27/2024 |
6.1.9 | 132,079 | 8/12/2024 |
6.1.8 | 134,266 | 7/22/2024 |
6.1.7 | 323,577 | 6/18/2024 |
6.1.6 | 113,120 | 6/3/2024 |
6.1.2 | 595,409 | 3/11/2024 |
6.1.1 | 160,438 | 2/27/2024 |
6.1.0 | 382,442 | 2/13/2024 |
6.0.6 | 506,368 | 1/15/2024 |
6.0.5 | 248,767 | 12/18/2023 |
6.0.4 | 3,162 | 12/11/2023 |
6.0.3 | 117,702 | 12/5/2023 |
6.0.2 | 107,223 | 11/28/2023 |
6.0.1 | 1,156 | 11/28/2023 |
6.0.0 | 211,253 | 11/15/2023 |
5.0.12 | 3,082 | 11/7/2023 |
5.0.11 | 381,142 | 10/17/2023 |
5.0.10 | 256,191 | 9/26/2023 |
5.0.9 | 232,477 | 9/11/2023 |
5.0.8 | 228,262 | 8/15/2023 |
5.0.7 | 588,174 | 7/11/2023 |
5.0.6 | 302,319 | 6/12/2023 |
5.0.5 | 7,710 | 5/30/2023 |
5.0.4 | 448,101 | 5/16/2023 |
5.0.3 | 353,097 | 4/17/2023 |
5.0.2 | 334,038 | 3/20/2023 |
5.0.1 | 496,190 | 2/20/2023 |
5.0.0 | 807,531 | 1/17/2023 |
4.0.92 | 408,806 | 12/20/2022 |
4.0.91 | 369,174 | 12/5/2022 |
4.0.90 | 572,210 | 11/14/2022 |
4.0.89 | 945,853 | 10/10/2022 |
4.0.88 | 1,177,985 | 9/12/2022 |
4.0.87 | 779,562 | 8/16/2022 |
4.0.86 | 997,087 | 7/19/2022 |
4.0.85 | 771,627 | 6/14/2022 |
4.0.84 | 139,245 | 6/7/2022 |
4.0.83 | 24,170 | 5/26/2022 |
4.0.82 | 435,963 | 5/24/2022 |
4.0.81 | 207,376 | 5/17/2022 |
4.0.80 | 198,446 | 5/10/2022 |
4.0.79 | 782,916 | 4/12/2022 |
4.0.78 | 479,789 | 3/30/2022 |
4.0.77 | 730,717 | 3/15/2022 |
4.0.76 | 296,829 | 3/1/2022 |
4.0.75 | 145,964 | 2/22/2022 |
4.0.74 | 289,135 | 2/14/2022 |
4.0.73 | 128,083 | 2/8/2022 |
4.0.72 | 17,689 | 2/1/2022 |
4.0.71 | 566,336 | 1/18/2022 |
4.0.70 | 283,739 | 1/11/2022 |
4.0.69 | 1,617,626 | 12/30/2021 |
4.0.68 | 14,332 | 12/15/2021 |
4.0.67 | 265,341 | 12/14/2021 |
4.0.66 | 3,668 | 12/7/2021 |
4.0.65 | 2,930 | 11/30/2021 |
4.0.64 | 328,398 | 11/24/2021 |
4.0.63 | 337,686 | 11/17/2021 |
4.0.62 | 293,248 | 11/9/2021 |
4.0.61 | 2,936 | 11/4/2021 |
4.0.60 | 301,453 | 10/27/2021 |
4.0.59 | 144,988 | 10/20/2021 |
4.0.58 | 89,338 | 10/13/2021 |
4.0.57 | 2,634 | 10/12/2021 |
4.0.56 | 6,661 | 10/6/2021 |
4.0.55 | 6,111 | 9/29/2021 |
4.0.54 | 555,040 | 9/15/2021 |
4.0.53 | 109,381 | 9/8/2021 |
4.0.52 | 202,717 | 9/1/2021 |
4.0.51 | 87,878 | 8/25/2021 |
4.0.50 | 164,108 | 8/17/2021 |
4.0.49 | 176,151 | 8/4/2021 |
4.0.48 | 458,500 | 7/28/2021 |
4.0.47 | 195,589 | 7/20/2021 |
4.0.46 | 231,818 | 7/13/2021 |
4.0.45 | 521,669 | 6/16/2021 |
4.0.44 | 75,051 | 6/14/2021 |
4.0.43 | 479,185 | 5/12/2021 |
4.0.42 | 134,839 | 5/3/2021 |
4.0.41 | 214,216 | 4/26/2021 |
4.0.40 | 2,410 | 4/22/2021 |
4.0.39 | 115,735 | 4/19/2021 |
4.0.38 | 153,855 | 4/7/2021 |
4.0.37 | 264,042 | 3/24/2021 |
4.0.37-beta1 | 1,632 | 4/1/2021 |
4.0.36 | 143,062 | 3/16/2021 |
4.0.35 | 38,351 | 3/15/2021 |
4.0.34 | 207,983 | 3/10/2021 |
4.0.33 | 11,448 | 2/23/2021 |
4.0.32 | 580,233 | 2/16/2021 |
4.0.31 | 155,915 | 2/10/2021 |
4.0.30 | 161,854 | 2/2/2021 |
4.0.29 | 308,202 | 1/13/2021 |
4.0.28 | 573,385 | 12/14/2020 |
4.0.27 | 67,473 | 12/8/2020 |
4.0.26 | 104,330 | 12/1/2020 |
4.0.25 | 71,728 | 11/27/2020 |
4.0.24 | 205,187 | 11/11/2020 |
4.0.23 | 215,532 | 10/30/2020 |
4.0.22 | 727,551 | 10/11/2020 |
4.0.21 | 51,761 | 10/7/2020 |
4.0.20 | 3,247 | 10/5/2020 |
4.0.19 | 102,681 | 9/30/2020 |
4.0.18 | 4,326 | 9/29/2020 |
4.0.17 | 29,466 | 9/24/2020 |
4.0.16 | 315,616 | 9/14/2020 |
4.0.15 | 228,147 | 8/31/2020 |
4.0.14 | 7,168 | 8/25/2020 |
4.0.13 | 5,227 | 8/17/2020 |
4.0.12 | 229,328 | 8/11/2020 |
4.0.11 | 100,108 | 8/3/2020 |
4.0.10 | 18,230 | 7/28/2020 |
4.0.9 | 148,621 | 7/22/2020 |
4.0.8 | 3,211 | 7/19/2020 |
4.0.7 | 2,153 | 7/19/2020 |
4.0.6 | 255,441 | 7/14/2020 |
4.0.5 | 2,241 | 7/13/2020 |
4.0.4 | 90,072 | 7/12/2020 |
4.0.3 | 12,469 | 7/5/2020 |
4.0.2 | 8,442 | 6/30/2020 |
4.0.1 | 676,695 | 6/14/2020 |
4.0.0 | 79,547 | 6/1/2020 |
3.1.12 | 16,383 | 5/25/2020 |
3.1.11 | 671,975 | 5/14/2020 |
3.1.10 | 464,047 | 4/14/2020 |
3.1.9 | 49,136 | 4/3/2020 |
3.1.8 | 615,177 | 3/16/2020 |
3.1.7 | 5,906 | 3/10/2020 |
3.1.6 | 553,406 | 2/21/2020 |
3.1.5 | 305,092 | 2/18/2020 |
3.1.4 | 19,604 | 2/15/2020 |
3.1.3 | 56,361 | 2/7/2020 |
3.1.2 | 472,600 | 1/27/2020 |
3.1.1 | 4,146 | 1/23/2020 |
3.1.0 | 8,279 | 1/14/2020 |
3.0.14 | 6,256 | 1/13/2020 |
3.0.13 | 26,213 | 1/9/2020 |
3.0.12 | 5,351 | 1/3/2020 |
3.0.11 | 10,084 | 12/19/2019 |
3.0.10 | 3,792 | 12/17/2019 |
3.0.9 | 514,180 | 12/16/2019 |
3.0.8 | 5,820 | 12/11/2019 |
3.0.7 | 309,882 | 11/25/2019 |
3.0.6 | 23,657 | 11/18/2019 |
3.0.5 | 3,832 | 11/14/2019 |
3.0.4 | 7,767 | 11/12/2019 |
3.0.3 | 600,669 | 10/30/2019 |
3.0.2 | 2,204 | 10/30/2019 |
3.0.1 | 12,909 | 10/29/2019 |
3.0.0 | 2,617 | 10/29/2019 |
2.9.57 | 12,025 | 10/16/2019 |
2.9.56 | 2,642 | 10/10/2019 |
2.9.55 | 6,003 | 10/2/2019 |
2.9.54 | 16,263 | 9/22/2019 |
2.9.52 | 3,024 | 9/6/2019 |
2.9.51 | 2,265 | 9/5/2019 |
2.9.50 | 2,238 | 9/4/2019 |
2.9.49 | 2,704 | 8/29/2019 |
2.9.48 | 8,360 | 8/24/2019 |
2.9.47 | 2,300 | 8/24/2019 |
2.9.46 | 39,851 | 8/15/2019 |
2.9.45 | 160,953 | 7/28/2019 |
2.9.44 | 3,070 | 7/15/2019 |
2.9.43 | 3,518 | 7/9/2019 |
2.9.42 | 6,231 | 7/4/2019 |
2.9.41 | 2,435 | 7/3/2019 |
2.9.40 | 2,379 | 7/1/2019 |
2.9.39 | 16,140 | 6/29/2019 |
2.9.38 | 2,260 | 6/25/2019 |
2.9.37 | 2,778 | 6/12/2019 |
2.9.36 | 2,411 | 6/7/2019 |
2.9.35 | 2,263 | 6/4/2019 |
2.9.34 | 2,559 | 5/31/2019 |
2.9.33 | 4,263 | 5/31/2019 |
2.9.32 | 4,438 | 5/23/2019 |
2.9.31 | 35,955 | 5/20/2019 |
2.9.30 | 2,322 | 5/17/2019 |
2.9.29 | 2,375 | 5/9/2019 |
2.9.28 | 2,208 | 5/9/2019 |
2.9.27 | 4,356 | 5/5/2019 |
2.9.26 | 2,232 | 5/3/2019 |
2.9.25 | 7,183 | 4/30/2019 |
2.9.24 | 2,963 | 4/18/2019 |
2.9.22 | 2,408 | 4/16/2019 |
2.9.21 | 10,104 | 4/7/2019 |
2.9.20 | 32,357 | 3/30/2019 |
2.9.19 | 2,501 | 3/27/2019 |
2.9.18 | 2,331 | 3/26/2019 |
2.9.17 | 2,525 | 3/21/2019 |
2.9.16 | 2,237 | 3/20/2019 |
2.9.15 | 2,268 | 3/20/2019 |
2.9.14 | 2,413 | 3/16/2019 |
2.9.13 | 2,328 | 3/16/2019 |
2.9.12 | 92,125 | 2/27/2019 |
2.9.11 | 2,613 | 2/20/2019 |
2.9.10 | 2,335 | 2/18/2019 |
2.9.9 | 2,269 | 2/16/2019 |
2.9.8 | 2,963 | 2/13/2019 |
2.9.7 | 2,695 | 2/8/2019 |
2.9.6 | 6,098 | 1/30/2019 |
2.9.5 | 8,414 | 1/13/2019 |
2.9.4 | 5,924 | 12/30/2018 |
2.9.3 | 2,881 | 12/13/2018 |
2.9.2 | 2,465 | 12/13/2018 |
2.9.1 | 2,577 | 12/12/2018 |
2.9.0 | 2,397 | 12/12/2018 |
2.8.9 | 2,960 | 12/11/2018 |
2.8.8 | 69,974 | 11/29/2018 |
2.8.7 | 2,918 | 11/28/2018 |
2.8.6 | 2,427 | 11/27/2018 |
2.8.5 | 3,666 | 11/20/2018 |
2.8.4 | 2,536 | 11/18/2018 |
2.8.3 | 2,482 | 11/17/2018 |
2.8.2 | 2,487 | 11/17/2018 |
2.8.1 | 2,676 | 11/14/2018 |
2.8.0 | 2,421 | 11/14/2018 |
2.7.13 | 4,955 | 10/29/2018 |
2.7.12 | 9,513 | 10/28/2018 |
2.7.11 | 2,541 | 10/23/2018 |
2.7.10 | 4,125 | 10/17/2018 |
2.7.9 | 5,006 | 10/7/2018 |
2.7.8 | 5,528 | 9/29/2018 |
2.7.7 | 5,359 | 8/31/2018 |
2.7.6 | 6,039 | 8/30/2018 |
2.7.5 | 2,870 | 8/18/2018 |
2.7.4 | 5,327 | 8/16/2018 |
2.7.3 | 3,430 | 8/16/2018 |
2.7.2 | 4,751 | 7/31/2018 |
2.7.1 | 3,195 | 7/19/2018 |
2.7.0 | 3,187 | 7/5/2018 |
2.6.5 | 2,991 | 6/29/2018 |
2.6.4 | 3,689 | 5/31/2018 |
2.6.3 | 3,951 | 5/2/2018 |
2.6.2 | 3,026 | 4/30/2018 |
2.6.1 | 3,769 | 3/30/2018 |
2.6.0 | 2,926 | 3/26/2018 |
2.5.0 | 2,932 | 3/20/2018 |
2.4.21 | 2,757 | 3/20/2018 |
2.4.20 | 2,827 | 3/16/2018 |
2.4.19 | 3,329 | 2/27/2018 |
2.4.18 | 3,330 | 2/12/2018 |
2.4.17 | 2,673 | 2/6/2018 |
2.4.16 | 2,921 | 2/2/2018 |
2.4.15 | 2,839 | 1/31/2018 |
2.4.14 | 2,812 | 1/31/2018 |
2.4.13 | 2,853 | 1/23/2018 |
2.4.12 | 2,789 | 1/16/2018 |
2.4.11 | 2,927 | 1/8/2018 |
2.4.10 | 3,032 | 1/5/2018 |
2.4.9 | 3,096 | 12/29/2017 |
2.4.8 | 4,682 | 12/6/2017 |
2.4.7 | 2,860 | 11/30/2017 |
2.4.6 | 2,854 | 11/27/2017 |
2.4.5 | 3,099 | 11/16/2017 |
2.4.4 | 2,905 | 11/13/2017 |
2.4.3 | 4,161 | 11/7/2017 |
2.4.2 | 2,841 | 11/1/2017 |
2.4.1 | 2,967 | 10/30/2017 |
2.4.0 | 11,718 | 9/30/2017 |
2.3.0 | 2,963 | 9/30/2017 |
2.2.1 | 2,920 | 9/24/2017 |
2.2.0-beta1 | 2,514 | 9/20/2017 |
2.1.15 | 3,703 | 8/31/2017 |
2.1.14 | 2,821 | 8/8/2017 |
2.1.13 | 2,936 | 8/2/2017 |
2.1.12 | 2,688 | 8/1/2017 |
2.1.11 | 2,796 | 7/27/2017 |
2.1.10 | 2,866 | 7/25/2017 |
2.1.9 | 2,838 | 7/11/2017 |
2.1.8 | 8,835 | 7/10/2017 |
2.1.7 | 2,859 | 7/7/2017 |
2.1.6 | 2,722 | 7/6/2017 |
2.1.5 | 2,796 | 7/3/2017 |
2.1.4 | 3,269 | 6/29/2017 |