System.IO.Abstractions
17.0.23
See the version list below for details.
dotnet add package System.IO.Abstractions --version 17.0.23
NuGet\Install-Package System.IO.Abstractions -Version 17.0.23
<PackageReference Include="System.IO.Abstractions" Version="17.0.23" />
paket add System.IO.Abstractions --version 17.0.23
#r "nuget: System.IO.Abstractions, 17.0.23"
// Install System.IO.Abstractions as a Cake Addin #addin nuget:?package=System.IO.Abstractions&version=17.0.23 // Install System.IO.Abstractions as a Cake Tool #tool nuget:?package=System.IO.Abstractions&version=17.0.23
At the core of the library is IFileSystem
and FileSystem
. Instead of calling methods like File.ReadAllText
directly, use IFileSystem.File.ReadAllText
. We have exactly the same API, except that ours is injectable and testable.
dotnet add package System.IO.Abstractions
public class MyComponent
{
readonly IFileSystem fileSystem;
// <summary>Create MyComponent with the given fileSystem implementation</summary>
public MyComponent(IFileSystem fileSystem)
{
this.fileSystem = fileSystem;
}
/// <summary>Create MyComponent</summary>
public MyComponent() : this(
fileSystem: new FileSystem() //use default implementation which calls System.IO
)
{
}
public void Validate()
{
foreach (var textFile in fileSystem.Directory.GetFiles(@"c:\", "*.txt", SearchOption.TopDirectoryOnly))
{
var text = fileSystem.File.ReadAllText(textFile);
if (text != "Testing is awesome.")
throw new NotSupportedException("We can't go on together. It's not me, it's you.");
}
}
}
The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.
dotnet add package System.IO.Abstractions.TestingHelpers
[Test]
public void MyComponent_Validate_ShouldThrowNotSupportedExceptionIfTestingIsNotAwesome()
{
// Arrange
var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
{
{ @"c:\myfile.txt", new MockFileData("Testing is meh.") },
{ @"c:\demo\jQuery.js", new MockFileData("some js") },
{ @"c:\demo\image.gif", new MockFileData(new byte[] { 0x12, 0x34, 0x56, 0xd2 }) }
});
var component = new MyComponent(fileSystem);
try
{
// Act
component.Validate();
}
catch (NotSupportedException ex)
{
// Assert
Assert.AreEqual("We can't go on together. It's not me, it's you.", ex.Message);
return;
}
Assert.Fail("The expected exception was not thrown.");
}
We even support casting from the .NET Framework's untestable types to our testable wrappers:
FileInfo SomeApiMethodThatReturnsFileInfo()
{
return new FileInfo("a");
}
void MyFancyMethod()
{
var testableFileInfo = (FileInfoBase)SomeApiMethodThatReturnsFileInfo();
...
}
Since version 4.0 the top-level APIs expose interfaces instead of abstract base classes (these still exist, though), allowing you to completely mock the file system. Here's a small example, using Moq:
[Test]
public void Test1()
{
var watcher = Mock.Of<IFileSystemWatcher>();
var file = Mock.Of<IFile>();
Mock.Get(file).Setup(f => f.Exists(It.IsAny<string>())).Returns(true);
Mock.Get(file).Setup(f => f.ReadAllText(It.IsAny<string>())).Throws<OutOfMemoryException>();
var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);
Assert.Throws<OutOfMemoryException>(() => {
Mock.Get(watcher).Raise(w => w.Created += null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
});
Mock.Get(file).Verify(f => f.Exists(It.IsAny<string>()), Times.Once);
Assert.True(unitUnderTest.FileWasCreated);
}
public class SomeClassUsingFileSystemWatcher
{
private readonly IFileSystemWatcher _watcher;
private readonly IFile _file;
public bool FileWasCreated { get; private set; }
public SomeClassUsingFileSystemWatcher(IFileSystemWatcher watcher, IFile file)
{
this._file = file;
this._watcher = watcher;
this._watcher.Created += Watcher_Created;
}
private void Watcher_Created(object sender, System.IO.FileSystemEventArgs e)
{
FileWasCreated = true;
if(_file.Exists(e.FullPath))
{
var text = _file.ReadAllText(e.FullPath);
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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 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. |
.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 | net461 is compatible. 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.6.1
- No dependencies.
-
.NETStandard 2.0
- System.IO.FileSystem.AccessControl (>= 5.0.0)
-
.NETStandard 2.1
- System.IO.FileSystem.AccessControl (>= 5.0.0)
-
net5.0
- System.IO.FileSystem.AccessControl (>= 5.0.0)
-
net6.0
- No dependencies.
NuGet packages (313)
Showing the top 5 NuGet packages that depend on System.IO.Abstractions:
Package | Downloads |
---|---|
Reo.Core.Hosting
Package Description |
|
VirtoCommerce.Platform.Core
Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com |
|
Reo.Core.IdentityModel
Package Description |
|
Reo.Core.AutoHistory
Package Description |
|
Reo.Core.Database
Package Description |
GitHub repositories (63)
Showing the top 5 popular GitHub repositories that depend on System.IO.Abstractions:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
|
|
JosefNemec/Playnite
Video game library manager with support for wide range of 3rd party libraries and game emulation support, providing one unified interface for your games.
|
|
gitextensions/gitextensions
Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).
|
|
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
|
Version | Downloads | Last updated | |
---|---|---|---|
21.1.3 | 36,464 | 11/8/2024 | |
21.1.2 | 2,430 | 11/8/2024 | |
21.1.1 | 3,766 | 11/7/2024 | |
21.0.29 | 1,190,351 | 7/25/2024 | |
21.0.26 | 227,643 | 7/13/2024 | |
21.0.22 | 241,607 | 6/22/2024 | |
21.0.2 | 1,498,989 | 3/17/2024 | |
20.0.34 | 58,939 | 3/15/2024 | |
20.0.28 | 129,247 | 3/9/2024 | |
20.0.15 | 1,073,752 | 1/22/2024 | |
20.0.4 | 598,708 | 12/5/2023 | |
20.0.1 | 1,670 | 12/5/2023 | |
19.2.91 | 286,725 | 12/5/2023 | |
19.2.87 | 609,346 | 11/16/2023 | |
19.2.69 | 1,583,060 | 8/29/2023 | |
19.2.67 | 39,467 | 8/25/2023 | |
19.2.66 | 2,038 | 8/25/2023 | |
19.2.64 | 93,759 | 8/22/2023 | |
19.2.63 | 2,413 | 8/22/2023 | |
19.2.61 | 13,925 | 8/21/2023 | |
19.2.51 | 243,268 | 7/31/2023 | |
19.2.50 | 4,703 | 7/31/2023 | |
19.2.29 | 1,605,862 | 5/17/2023 | |
19.2.26 | 40,504 | 5/12/2023 | |
19.2.25 | 2,666 | 5/12/2023 | |
19.2.22 | 173,902 | 5/4/2023 | |
19.2.18 | 148,397 | 4/24/2023 | |
19.2.17 | 10,913 | 4/23/2023 | |
19.2.16 | 115,409 | 4/19/2023 | |
19.2.15 | 367,758 | 4/18/2023 | |
19.2.13 | 2,383 | 4/18/2023 | |
19.2.12 | 2,972 | 4/18/2023 | |
19.2.11 | 71,043 | 4/13/2023 | |
19.2.9 | 45,316 | 4/11/2023 | |
19.2.8 | 6,446 | 4/11/2023 | |
19.2.4 | 1,147,084 | 3/13/2023 | |
19.2.1 | 344,311 | 3/2/2023 | |
19.1.18 | 381,869 | 2/14/2023 | |
19.1.14 | 160,743 | 1/31/2023 | |
19.1.13 | 343,650 | 1/24/2023 | |
19.1.5 | 1,939,543 | 12/19/2022 | |
19.1.1 | 79,292 | 12/13/2022 | |
19.0.1 | 187,279 | 12/8/2022 | |
18.0.1 | 443,585 | 11/28/2022 | |
17.2.26 | 284,118 | 11/18/2022 | |
17.2.3 | 4,038,104 | 9/16/2022 | |
17.2.1 | 229,488 | 9/10/2022 | |
17.1.1 | 1,170,686 | 8/15/2022 | |
17.0.28 | 15,324 | 8/15/2022 | |
17.0.24 | 1,191,263 | 7/19/2022 | |
17.0.23 | 310,290 | 7/15/2022 | |
17.0.21 | 407,552 | 7/4/2022 | |
17.0.18 | 845,268 | 6/9/2022 | |
17.0.15 | 448,276 | 5/20/2022 | |
17.0.14 | 58,098 | 5/18/2022 | |
17.0.13 | 139,279 | 5/17/2022 | |
17.0.12 | 71,618 | 5/16/2022 | |
17.0.11 | 14,623 | 5/15/2022 | |
17.0.10 | 251,705 | 5/12/2022 | |
17.0.9 | 4,078 | 5/11/2022 | |
17.0.8 | 4,653 | 5/11/2022 | |
17.0.7 | 3,384 | 5/11/2022 | |
17.0.6 | 3,401 | 5/11/2022 | |
17.0.5 | 3,326 | 5/11/2022 | |
17.0.4 | 20,345 | 5/11/2022 | |
17.0.3 | 600,835 | 4/26/2022 | |
17.0.2 | 3,485 | 4/26/2022 | |
17.0.1 | 18,578 | 4/25/2022 | |
16.1.26 | 114,731 | 4/24/2022 | |
16.1.25 | 1,105,128 | 3/23/2022 | |
16.1.24 | 50,867 | 3/22/2022 | |
16.1.23 | 180,889 | 3/14/2022 | |
16.1.22 | 7,442 | 3/11/2022 | |
16.1.21 | 3,335 | 3/11/2022 | |
16.1.20 | 205,170 | 3/8/2022 | |
16.1.19 | 3,440 | 3/8/2022 | |
16.1.18 | 3,482 | 3/8/2022 | |
16.1.17 | 3,358 | 3/8/2022 | |
16.1.16 | 51,714 | 3/3/2022 | |
16.1.15 | 326,776 | 2/19/2022 | |
16.1.14 | 3,438 | 2/19/2022 | |
16.1.13 | 4,124 | 2/19/2022 | |
16.1.12 | 3,404 | 2/19/2022 | |
16.1.11 | 35,240 | 2/17/2022 | |
16.1.10 | 573,090 | 2/4/2022 | |
16.1.9 | 41,658 | 2/2/2022 | |
16.1.8 | 4,912 | 2/2/2022 | |
16.1.7 | 29,418 | 1/31/2022 | |
16.1.6 | 3,705 | 1/31/2022 | |
16.1.5 | 6,882 | 1/31/2022 | |
16.1.4 | 744,170 | 1/12/2022 | |
16.1.2 | 4,301 | 1/12/2022 | |
16.1.1 | 41,532 | 1/11/2022 | |
16.0.8 | 168,739 | 1/9/2022 | |
16.0.7 | 53,107 | 1/8/2022 | |
16.0.6 | 3,050 | 1/8/2022 | |
16.0.5 | 3,024 | 1/8/2022 | |
16.0.4 | 3,071 | 1/8/2022 | |
16.0.3 | 44,467 | 1/6/2022 | |
16.0.2 | 5,861 | 1/6/2022 | |
16.0.1 | 754,636 | 12/22/2021 | |
15.0.1 | 4,607 | 12/22/2021 | |
14.0.13 | 337,011 | 12/11/2021 | |
14.0.12 | 3,206 | 12/11/2021 | |
14.0.11 | 3,388 | 12/11/2021 | |
14.0.10 | 3,223 | 12/11/2021 | |
14.0.9 | 3,306 | 12/11/2021 | |
14.0.8 | 3,339 | 12/11/2021 | |
14.0.7 | 3,177 | 12/10/2021 | |
14.0.6 | 3,026 | 12/10/2021 | |
14.0.5 | 3,032 | 12/10/2021 | |
14.0.4 | 3,303 | 12/10/2021 | |
14.0.3 | 1,029,799 | 11/27/2021 | |
14.0.2 | 5,233 | 11/26/2021 | |
14.0.1 | 18,275 | 11/26/2021 | |
13.2.47 | 9,765,672 | 8/25/2021 | |
13.2.46 | 3,399 | 8/25/2021 | |
13.2.45 | 3,157 | 8/25/2021 | |
13.2.43 | 661,451 | 7/27/2021 | |
13.2.42 | 1,081,052 | 7/23/2021 | |
13.2.41 | 138,763 | 7/15/2021 | |
13.2.40 | 5,290 | 7/14/2021 | |
13.2.39 | 4,898 | 7/14/2021 | |
13.2.38 | 421,863 | 6/15/2021 | |
13.2.37 | 25,863 | 6/10/2021 | |
13.2.36 | 3,204 | 6/10/2021 | |
13.2.35 | 3,142 | 6/10/2021 | |
13.2.34 | 3,202 | 6/10/2021 | |
13.2.33 | 4,054,826 | 5/15/2021 | |
13.2.32 | 3,303 | 5/15/2021 | |
13.2.31 | 138,999 | 5/2/2021 | |
13.2.30 | 3,411 | 5/2/2021 | |
13.2.29 | 650,549 | 4/14/2021 | |
13.2.28 | 714,790 | 3/25/2021 | |
13.2.27 | 4,424 | 3/25/2021 | |
13.2.25 | 3,204,096 | 3/9/2021 | |
13.2.24 | 44,837 | 3/6/2021 | |
13.2.23 | 271,351 | 2/24/2021 | |
13.2.22 | 3,564 | 2/24/2021 | |
13.2.20 | 17,809 | 2/23/2021 | |
13.2.19 | 3,380 | 2/23/2021 | |
13.2.18 | 4,284 | 2/23/2021 | |
13.2.17 | 6,797 | 2/23/2021 | |
13.2.16 | 3,519 | 2/22/2021 | |
13.2.15 | 21,793 | 2/18/2021 | |
13.2.14 | 3,432 | 2/18/2021 | |
13.2.13 | 3,531 | 2/18/2021 | |
13.2.12 | 3,414 | 2/18/2021 | |
13.2.11 | 46,167 | 2/16/2021 | |
13.2.10 | 273,170 | 2/10/2021 | |
13.2.9 | 682,445 | 1/14/2021 | |
13.2.8 | 280,889 | 12/22/2020 | |
13.2.7 | 24,157 | 12/20/2020 | |
13.2.6 | 129,168 | 12/16/2020 | |
13.2.5 | 114,020 | 12/9/2020 | |
13.2.4 | 94,666 | 12/5/2020 | |
13.2.3 | 3,859 | 12/4/2020 | |
13.2.2 | 199,244 | 11/26/2020 | |
13.2.1 | 18,095 | 11/26/2020 | |
13.1.2 | 3,558 | 11/25/2020 | |
13.1.1 | 3,493 | 11/25/2020 | |
13.0.1 | 231,176 | 11/21/2020 | |
12.2.27 | 35,702 | 11/21/2020 | |
12.2.26 | 6,166 | 11/20/2020 | |
12.2.25 | 145,762 | 11/17/2020 | |
12.2.24 | 84,178 | 11/15/2020 | |
12.2.23 | 3,485 | 11/15/2020 | |
12.2.22 | 3,701 | 11/14/2020 | |
12.2.21 | 9,719 | 11/12/2020 | |
12.2.20 | 7,550 | 11/12/2020 | |
12.2.19 | 99,635 | 11/5/2020 | |
12.2.7 | 895,340 | 10/15/2020 | |
12.2.6 | 42,586 | 10/15/2020 | |
12.2.5 | 110,396 | 10/12/2020 | |
12.2.4 | 3,503 | 10/12/2020 | |
12.2.3 | 51,984 | 10/12/2020 | |
12.2.2 | 51,542 | 10/7/2020 | |
12.2.1 | 256,777 | 9/28/2020 | |
12.1.11 | 5,871 | 9/28/2020 | |
12.1.10 | 94,228 | 9/24/2020 | |
12.1.9 | 430,343 | 9/11/2020 | |
12.1.2 | 3,478 | 9/11/2020 | |
12.1.1 | 813,491 | 8/3/2020 | |
12.0.13 | 17,382 | 8/2/2020 | |
12.0.10 | 106,128 | 7/25/2020 | |
12.0.9 | 77,266 | 7/21/2020 | |
12.0.8 | 83,358 | 7/19/2020 | |
12.0.7 | 2,922 | 7/19/2020 | |
12.0.6 | 3,002 | 7/19/2020 | |
12.0.5 | 100,932 | 7/11/2020 | |
12.0.4 | 93,805 | 7/2/2020 | |
12.0.3 | 41,318 | 6/29/2020 | |
12.0.2 | 99,945 | 6/23/2020 | |
12.0.1 | 51,913 | 6/20/2020 | |
11.0.18 | 1,642,909 | 6/20/2020 | |
11.0.17 | 33,977 | 6/19/2020 | |
11.0.16 | 3,690 | 6/18/2020 | |
11.0.15 | 27,845 | 6/18/2020 | |
11.0.14 | 4,030 | 6/17/2020 | |
11.0.13 | 4,200 | 6/17/2020 | |
11.0.12 | 3,492 | 6/17/2020 | |
11.0.11 | 3,656 | 6/17/2020 | |
11.0.10 | 8,378 | 6/16/2020 | |
11.0.9 | 2,871 | 6/16/2020 | |
11.0.8 | 3,012 | 6/16/2020 | |
11.0.7 | 694,043 | 5/28/2020 | |
11.0.6 | 1,359,157 | 5/8/2020 | |
11.0.5 | 49,514 | 5/6/2020 | |
11.0.4 | 65,268 | 5/1/2020 | |
11.0.3 | 6,656 | 4/30/2020 | |
11.0.2 | 86,978 | 4/26/2020 | |
11.0.1 | 3,748 | 4/26/2020 | |
10.0.10 | 37,647 | 4/20/2020 | |
10.0.9 | 24,512 | 4/17/2020 | |
10.0.8 | 177,662 | 4/7/2020 | |
10.0.7 | 24,506 | 4/3/2020 | |
10.0.6 | 24,108 | 4/1/2020 | |
10.0.5 | 3,530 | 4/1/2020 | |
10.0.4 | 3,543 | 4/1/2020 | |
10.0.1 | 202,235 | 3/21/2020 | |
9.0.6 | 40,155 | 3/19/2020 | |
9.0.5 | 81,099 | 3/16/2020 | |
9.0.4 | 459,310 | 2/18/2020 | |
9.0.3 | 4,262 | 2/18/2020 | |
9.0.2 | 28,669 | 2/11/2020 | |
9.0.1 | 3,788 | 2/11/2020 | |
8.1.1 | 104,637 | 2/11/2020 | |
8.0.6 | 3,773 | 2/11/2020 | |
8.0.5 | 120,649 | 1/29/2020 | |
8.0.4 | 7,526 | 1/27/2020 | |
8.0.3 | 203,773 | 1/19/2020 | |
7.1.10 | 283,615 | 1/17/2020 | |
7.1.8 | 4,339 | 1/17/2020 | |
7.1.4 | 92,965 | 1/13/2020 | |
7.1.3 | 273,076 | 1/6/2020 | |
7.1.1 | 700,685 | 12/21/2019 | |
7.0.16 | 21,097 | 12/19/2019 | |
7.0.15 | 108,803 | 12/5/2019 | |
7.0.7 | 1,279,938 | 10/21/2019 | |
7.0.5 | 41,105 | 10/11/2019 | |
7.0.4 | 1,068,734 | 9/29/2019 | |
6.0.38 | 121,382 | 9/26/2019 | |
6.0.36 | 25,956 | 9/24/2019 | |
6.0.34 | 11,672 | 9/24/2019 | |
6.0.32 | 96,705 | 9/9/2019 | |
6.0.27 | 165,279 | 9/3/2019 | |
6.0.25 | 4,052 | 9/2/2019 | |
6.0.23 | 75,158 | 8/26/2019 | |
6.0.21 | 105,864 | 8/12/2019 | |
6.0.19 | 52,435 | 8/9/2019 | |
6.0.17 | 50,497 | 8/5/2019 | |
6.0.15 | 179,630 | 7/9/2019 | |
6.0.14 | 187,244 | 6/29/2019 | |
6.0.13 | 4,159 | 6/28/2019 | |
6.0.11 | 51,192 | 6/21/2019 | |
6.0.9 | 3,958 | 6/21/2019 | |
6.0.7 | 38,988 | 6/16/2019 | |
6.0.6 | 3,698 | 6/16/2019 | |
6.0.5 | 19,744 | 6/13/2019 | |
6.0.3 | 37,610 | 6/13/2019 | |
6.0.1 | 194,689 | 6/7/2019 | |
5.0.1 | 119,008 | 6/3/2019 | |
4.2.17 | 21,495 | 5/30/2019 | |
4.2.15 | 21,577 | 5/28/2019 | |
4.2.13 | 113,888 | 5/15/2019 | |
4.2.12 | 6,989 | 5/15/2019 | |
4.2.10 | 64,958 | 5/10/2019 | |
4.2.9 | 122,297 | 5/10/2019 | |
4.2.8 | 142,997 | 4/28/2019 | |
4.2.4 | 89,306 | 4/19/2019 | |
4.1.6 | 199,942 | 4/9/2019 | |
4.0.11 | 204,274 | 3/30/2019 | |
3.1.1 | 241,245 | 3/10/2019 | |
3.0.10 | 1,484,545 | 1/5/2019 | |
3.0.2 | 343,101 | 12/7/2018 | |
2.2.18-beta | 3,200 | 12/3/2018 | |
2.2.17-beta | 2,412 | 12/2/2018 | |
2.2.16-beta | 2,251 | 12/1/2018 | |
2.2.15-beta | 2,353 | 12/1/2018 | |
2.2.14-beta | 2,300 | 12/1/2018 | |
2.2.13-beta | 2,363 | 12/1/2018 | |
2.2.12-beta | 2,418 | 12/1/2018 | |
2.2.11-beta | 2,267 | 12/1/2018 | |
2.2.10-beta | 2,335 | 11/28/2018 | |
2.2.9-beta | 2,581 | 11/16/2018 | |
2.2.8-beta | 13,209 | 11/9/2018 | |
2.2.7-beta | 2,470 | 11/5/2018 | |
2.2.6-beta | 2,457 | 10/30/2018 | |
2.2.5-beta | 2,354 | 10/30/2018 | |
2.2.4-beta | 2,363 | 10/30/2018 | |
2.2.3-beta | 2,311 | 10/29/2018 | |
2.2.2-beta | 2,392 | 10/25/2018 | |
2.1.0.256 | 412,379 | 10/20/2018 | |
2.1.0.247 | 93,582 | 10/15/2018 | |
2.1.0.237 | 27,210 | 10/14/2018 | |
2.1.0.236 | 106,452 | 10/10/2018 | |
2.1.0.235 | 46,252 | 10/8/2018 | |
2.1.0.234 | 4,139 | 10/8/2018 | |
2.1.0.233 | 11,035 | 10/6/2018 | |
2.1.0.232 | 9,071 | 10/4/2018 | |
2.1.0.231 | 58,971 | 9/19/2018 | |
2.1.0.230 | 99,555 | 9/8/2018 | |
2.1.0.229 | 6,354 | 9/6/2018 | |
2.1.0.228 | 137,612 | 8/27/2018 | |
2.1.0.227 | 302,749 | 8/16/2018 | |
2.1.0.226 | 30,744 | 8/14/2018 | |
2.1.0.217 | 6,036 | 8/10/2018 | |
2.1.0.216 | 8,691 | 8/9/2018 | |
2.1.0.215 | 17,000 | 8/6/2018 | |
2.1.0.214 | 4,439 | 8/5/2018 | |
2.1.0.213 | 4,015 | 8/4/2018 | |
2.1.0.211 | 36,115 | 7/25/2018 | |
2.1.0.210 | 8,468 | 7/21/2018 | |
2.1.0.209 | 136,443 | 7/20/2018 | |
2.1.0.208 | 7,261 | 7/17/2018 | |
2.1.0.207 | 4,157 | 7/17/2018 | |
2.1.0.206 | 67,205 | 7/15/2018 | |
2.1.0.205 | 4,769 | 7/12/2018 | |
2.1.0.204 | 4,559 | 7/11/2018 | |
2.1.0.203 | 4,307 | 7/11/2018 | |
2.1.0.202 | 12,209 | 7/10/2018 | |
2.1.0.201 | 6,849 | 7/10/2018 | |
2.1.0.200 | 3,991 | 7/9/2018 | |
2.1.0.199 | 3,388 | 7/9/2018 | |
2.1.0.198 | 4,785 | 7/8/2018 | |
2.1.0.197 | 3,441 | 7/8/2018 | |
2.1.0.196 | 3,287 | 7/8/2018 | |
2.1.0.195 | 3,335 | 7/7/2018 | |
2.1.0.194 | 3,447 | 7/7/2018 | |
2.1.0.193 | 3,421 | 7/7/2018 | |
2.1.0.192 | 10,981 | 7/7/2018 | |
2.1.0.191 | 3,422 | 7/7/2018 | |
2.1.0.190 | 3,302 | 7/7/2018 | |
2.1.0.189 | 3,356 | 7/7/2018 | |
2.1.0.188 | 3,260 | 7/6/2018 | |
2.1.0.187 | 15,474 | 7/6/2018 | |
2.1.0.186 | 36,885 | 7/6/2018 | |
2.1.0.185 | 3,521 | 7/5/2018 | |
2.1.0.184 | 11,803 | 7/4/2018 | |
2.1.0.183 | 3,409 | 7/4/2018 | |
2.1.0.182 | 3,156 | 7/4/2018 | |
2.1.0.181 | 3,473 | 7/4/2018 | |
2.1.0.180 | 3,525 | 7/4/2018 | |
2.1.0.179 | 3,441 | 7/4/2018 | |
2.1.0.178 | 806,803 | 1/11/2018 | |
2.1.0.177 | 16,062 | 1/2/2018 | |
2.1.0.176 | 70,619 | 12/8/2017 | |
2.1.0.175 | 73,987 | 11/16/2017 | |
2.1.0.174 | 201,784 | 11/7/2017 | |
2.1.0.173 | 3,701 | 11/7/2017 | |
2.1.0.172 | 3,628 | 11/7/2017 | |
2.1.0.171 | 4,240 | 11/4/2017 | |
2.1.0.170 | 3,895 | 11/4/2017 | |
2.1.0.169 | 3,512 | 11/4/2017 | |
2.1.0.168 | 3,513 | 11/4/2017 | |
2.1.0.166 | 3,620 | 11/4/2017 | |
2.1.0.164 | 3,484 | 11/4/2017 | |
2.1.0.163 | 3,468 | 11/4/2017 | |
2.1.0.159 | 60,237 | 10/22/2017 | |
2.0.0.144 | 428,048 | 5/3/2017 | |
2.0.0.143 | 343,674 | 4/7/2017 | |
2.0.0.142 | 2,639 | 4/7/2017 | |
2.0.0.141 | 19,291 | 3/2/2017 | |
2.0.0.140 | 39,091 | 1/17/2017 | |
2.0.0.139 | 50,627 | 1/6/2017 | |
2.0.0.138 | 48,950 | 11/17/2016 | |
2.0.0.137 | 32,378 | 10/14/2016 | |
2.0.0.136 | 8,421 | 10/1/2016 | |
2.0.0.124 | 779,172 | 2/8/2016 | |
2.0.0.123 | 28,804 | 12/29/2015 | |
2.0.0.122 | 3,083 | 12/28/2015 | |
2.0.0.121 | 2,972 | 12/28/2015 | |
2.0.0.120 | 9,387 | 12/6/2015 | |
2.0.0.119 | 2,995 | 12/6/2015 | |
2.0.0.118 | 19,944 | 11/4/2015 | |
2.0.0.117 | 8,887 | 10/19/2015 | |
2.0.0.116 | 102,921 | 7/20/2015 | |
2.0.0.115 | 36,461 | 5/18/2015 | |
2.0.0.114 | 3,031 | 5/18/2015 | |
2.0.0.113 | 97,612 | 3/18/2015 | |
2.0.0.112 | 4,259 | 3/11/2015 | |
2.0.0.111 | 3,217 | 3/11/2015 | |
2.0.0.110 | 2,853 | 3/11/2015 | |
2.0.0.109 | 3,146 | 3/11/2015 | |
2.0.0.108 | 6,158 | 3/4/2015 | |
2.0.0.107 | 8,779 | 2/23/2015 | |
2.0.0.106 | 5,273 | 2/20/2015 | |
2.0.0.105 | 3,239 | 2/19/2015 | |
2.0.0.104 | 9,583 | 2/14/2015 | |
2.0.0.103 | 7,890 | 2/7/2015 | |
2.0.0.102 | 3,332 | 2/7/2015 | |
2.0.0.101 | 6,618 | 1/25/2015 | |
2.0.0.100 | 3,044 | 1/25/2015 | |
2.0.0.99 | 2,960 | 1/25/2015 | |
2.0.0.98 | 3,700 | 1/25/2015 | |
1.4.0.93 | 198,490 | 1/25/2015 | |
1.4.0.92 | 78,704 | 9/29/2014 | |
1.4.0.89 | 2,903 | 9/29/2014 | |
1.4.0.88 | 2,939 | 9/29/2014 | |
1.4.0.87 | 16,607 | 9/21/2014 | |
1.4.0.86 | 457,564 | 5/7/2014 | |
1.4.0.85 | 6,295 | 4/23/2014 | |
1.4.0.84 | 6,763 | 4/7/2014 | |
1.4.0.83 | 30,444 | 3/24/2014 | |
1.4.0.82 | 2,933 | 3/24/2014 | |
1.4.0.81 | 12,997 | 3/17/2014 | |
1.4.0.80 | 2,906 | 3/17/2014 | |
1.4.0.79 | 8,608 | 3/10/2014 | |
1.4.0.78 | 5,888 | 3/2/2014 | |
1.4.0.77 | 3,029 | 3/2/2014 | |
1.4.0.76 | 6,926 | 2/21/2014 | |
1.4.0.75 | 3,336 | 2/20/2014 | |
1.4.0.74 | 49,278 | 1/12/2014 | |
1.4.0.73 | 10,951 | 12/22/2013 | |
1.4.0.72 | 8,915 | 12/1/2013 | |
1.4.0.71 | 2,928 | 12/1/2013 | |
1.4.0.70 | 3,315 | 11/21/2013 | |
1.4.0.69 | 3,257 | 11/20/2013 | |
1.4.0.68 | 5,197 | 10/15/2013 | |
1.4.0.67 | 2,923 | 10/15/2013 | |
1.4.0.66 | 50,669 | 7/31/2013 | |
1.4.0.65 | 5,021 | 7/9/2013 | |
1.4.0.64 | 7,054 | 4/26/2013 | |
1.4.0.63 | 2,887 | 4/26/2013 | |
1.4.0.62 | 2,973 | 4/26/2013 | |
1.4.0.61 | 2,936 | 4/25/2013 | |
1.4.0.60 | 2,812 | 4/25/2013 | |
1.4.0.59 | 2,887 | 4/25/2013 | |
1.4.0.58 | 2,943 | 4/25/2013 | |
1.4.0.57 | 2,857 | 4/25/2013 | |
1.4.0.56 | 2,895 | 4/25/2013 | |
1.4.0.55 | 3,009 | 4/25/2013 | |
1.4.0.54 | 2,993 | 4/25/2013 | |
1.4.0.53 | 2,847 | 4/25/2013 | |
1.4.0.52 | 3,006 | 4/25/2013 | |
1.4.0.51 | 2,935 | 4/22/2013 | |
1.4.0.50 | 2,840 | 4/22/2013 | |
1.4.0.49 | 4,230 | 4/11/2013 | |
1.4.0.48 | 3,941 | 3/24/2013 | |
1.4.0.47 | 2,902 | 3/24/2013 | |
1.4.0.46 | 2,970 | 3/24/2013 | |
1.4.0.45 | 2,976 | 3/24/2013 | |
1.4.0.44 | 4,268 | 3/16/2013 | |
1.4.0.43 | 2,807 | 3/16/2013 | |
1.4.0.42 | 2,930 | 3/16/2013 | |
1.4.0.41 | 3,088 | 3/6/2013 | |
1.4.0.40 | 6,698 | 12/24/2012 | |
1.4.0.39 | 2,867 | 12/23/2012 | |
1.4.0.38 | 2,872 | 12/23/2012 | |
1.4.0.37 | 4,103 | 11/29/2012 | |
1.4.0.36 | 2,934 | 11/29/2012 | |
1.4.0.35 | 4,426 | 9/25/2012 | |
1.4.0.34 | 2,907 | 9/25/2012 | |
1.4.0.33 | 2,957 | 9/25/2012 | |
1.4.0.32 | 8,986 | 7/14/2012 | |
1.4.0.31 | 2,997 | 7/14/2012 | |
1.4.0.30 | 2,882 | 7/12/2012 | |
1.4.0.29 | 2,932 | 7/12/2012 | |
1.4.0.28 | 2,904 | 7/12/2012 | |
1.4.0.27 | 2,889 | 7/12/2012 | |
1.4.0.26 | 3,018 | 7/2/2012 | |
1.4.0.25 | 2,904 | 7/2/2012 | |
1.4.0.24 | 5,093 | 5/15/2012 | |
1.4.0.23 | 4,338 | 4/25/2012 | |
1.4.0.22 | 2,866 | 4/25/2012 | |
1.4.0.21 | 2,848 | 4/25/2012 | |
1.4.0.20 | 3,767 | 4/18/2012 | |
1.4.0.19 | 2,924 | 4/18/2012 | |
1.4.0.18 | 2,984 | 4/18/2012 | |
1.4.0.17 | 3,036 | 4/18/2012 | |
1.4.0.14 | 2,927 | 4/4/2012 | |
1.4.0.13 | 3,360 | 3/27/2012 | |
1.4.0.12 | 3,776 | 9/16/2011 | |
1.4.0.11 | 3,289 | 9/16/2011 | |
1.3.0 | 4,101 | 5/27/2011 | |
1.2.0 | 93,393 | 5/26/2011 |