Magicodes.IE.Core 2.7.5.2
Import and export general library, support Dto import and export, template export, fancy export and dynamic export, support Excel, Csv, Word, Pdf and Html.
导入导出通用库,支持Dto导入导出、模板导出、花式导出以及动态导出,支持Excel、Csv、Word、Pdf和Html。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
更新记录:https://github.com/dotnetcore/Magicodes.IE/blob/master/RELEASE.md
公众号:麦扣聊技术
交流QQ群:85318032
Showing the top 20 packages that depend on Magicodes.IE.Core.
Packages | Downloads |
---|---|
Magicodes.IE.Excel
Import and export general library, support Dto import and export, template export, fancy export and dynamic export, support Excel, Csv, Word, Pdf and Html.
导入导出通用库,支持Dto导入导出、模板导出、花式导出以及动态导出,支持Excel、Csv、Word、Pdf和Html。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
更新记录:https://github.com/dotnetcore/Magicodes.IE/blob/master/RELEASE.md
公众号:麦扣聊技术
交流QQ群:85318032
|
4 |
Magicodes.IE.Excel
Import and export general library, support Dto import and export, template export, fancy export and dynamic export, support Excel, Csv, Word, Pdf and Html.
导入导出通用库,支持Dto导入导出、模板导出、花式导出以及动态导出,支持Excel、Csv、Word、Pdf和Html。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
更新记录:https://github.com/dotnetcore/Magicodes.IE/blob/master/RELEASE.md
公众号:麦扣聊技术
交流QQ群:85318032
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.04.16**
- **【Nuget】版本更新到2.2.0-beta9**
- **【Excel模板导出】修复只存在一列时的导出 [#73](https://github.com/dotnetcore/Magicodes.IE/issues/73)**
- **【Excel导入】支持返回表头和索引 [#76](https://github.com/dotnetcore/Magicodes.IE/issues/76)**
- **【Excel导入导入】[#63](https://github.com/dotnetcore/Magicodes.IE/issues/63)**
- 支持使用System.ComponentModel.DataAnnotations命名空间下的部分特性来控制导入导出,比如
- DisplayAttribute
- DisplayFormatAttribute
- DescriptionAttribute
- 封装简单的易于使用的单一特性,例如
- IEIgnoreAttribute(可作用于属性、枚举成员,可影响导入和导出)
**2020.04.02**
2.2.0-beta8
【Excel模板导出】支持图片 [#61](https://github.com/dotnetcore/Magicodes.IE/issues/61)
2.2.0-beta7
【Excel模板导出】修复渲染问题 [#51](https://github.com/dotnetcore/Magicodes.IE/issues/51)
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.06.22**
- ** 【Nuget】版本更新到2.3.0-beta1**
- ** 【Excel导出】添加对Excel模板导出函数的支持
- {{Formula::AVERAGE?params=G4:G6}}
**2020.06.17**
- ** 【Nuget】版本更新到2.2.7**
- ** 【HTML导出】添加对NETCore2.2模板引擎的支持
**2020.06.16**
- ** 【Nuget】版本更新到2.2.6**
- ** 【HTML导出】添加对NETCore2.2模板引擎的支持
**2020.06.14**
- ** 【Nuget】版本更新到2.2.5**
- ** 【Excel导出】增加分栏、分sheet、追加rows导出 [#74](https://github.com/dotnetcore/Magicodes.IE/issues/74)**
- exporter.Append(list1).SeparateByColumn().Append(list2).ExportAppendData(filePath);
- exporter.Append(list1).SeparateBySheet().Append(list2).ExportAppendData(filePath);
- exporter.Append(list1).SeparateByRow().AppendHeaders().Append(list2).ExportAppendData(filePath);
- ** [Excel导出】修复‘IsAllowRepeat=true’ [#107](https://github.com/dotnetcore/Magicodes.IE/issues/107) **
- ** [Pdf导出】增加PDF扩展方法,支持通过以参数形式传递特性参数 [#104](https://github.com/dotnetcore/Magicodes.IE/issues/104) **
- `ExportListBytesByTemplate<T>(ICollection<T> data, PdfExporterAttribute pdfExporterAttribute,string temple);`
- `ExportBytesByTemplate<T>(T data, PdfExporterAttribute pdfExporterAttribute,string template);`
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.07.06**
- ** 【Nuget】版本更新到2.3.0-beta2**
- 【Excel导出】导出业务错误数据支持直接返回错误数据的文件流字节
- 【Excel导出】对追加sheet实现同一个Model可自定义传入不同sheet名称
- exporter.Append(list1,"sheet1").SeparateBySheet().Append(list2).ExportAppendData(filePath);
- 【Nuget】针对于一些客户端不支持SemVer 2.0.0 进行采取兼容机制
**2020.06.22**
- ** 【Nuget】版本更新到2.3.0-beta1**
- ** 【Excel导出】添加对Excel模板导出函数的支持
- {{Formula::AVERAGE?params=G4:G6}}
**2020.06.17**
- ** 【Nuget】版本更新到2.2.7**
- ** 【HTML导出】添加对NETCore2.2模板引擎的支持
**2020.06.16**
- ** 【Nuget】版本更新到2.2.6**
- ** 【HTML导出】添加对NETCore2.2模板引擎的支持
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.08.04**
- ** 【Nuget】版本更新到2.3.0-beta5**
- 在runtimes native包问题
- 对于跨平台native中 `COM Interop is not supported on this platform.` #130
**2020.07.14**
- ** 【Nuget】版本更新到2.3.0-beta4**
**2020.07.14**
- ** 【Nuget】版本更新到2.3.0-beta4**
**2020.07.13**
- ** 【Nuget】版本更新到2.3.0-beta3**
- 【PDF导出】修复Linux下导出PDf 出错问题 #125
**2020.07.06**
- ** 【Nuget】版本更新到2.3.0-beta2**
- 【Excel导出】导出业务错误数据支持直接返回错误数据的文件流字节
- 【Excel导出】对追加sheet实现同一个Model可自定义传入不同sheet名称
- exporter.Append(list1,"sheet1").SeparateBySheet().Append(list2).ExportAppendData(filePath);
- 【Nuget】针对于一些客户端不支持SemVer 2.0.0 进行采取兼容机制
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.08.16**
- ** 【Nuget】版本更新到2.3.0-beta7**
- excel添加对ExpandoObject类型的支持 #135
**2020.08.10**
- **【Nuget】版本更新到2.3.0-beta6**
- 多Sheet导入保存标注错误单元测试,并没出现多数据导入效验bug #108
- Excel多Sheet 导入模板生成 #133
- 修复Excel模板图片高度问题 #131
**2020.08.04**
- ** 【Nuget】版本更新到2.3.0-beta5**
- 在runtimes native包问题
- 对于跨平台native中 COM Interop is not supported on this platform. #130
**2020.07.14**
- ** 【Nuget】版本更新到2.3.0-beta4**
**2020.07.13**
- ** 【Nuget】版本更新到2.3.0-beta3**
- 【PDF导出】修复Linux下导出PDf 出错问题 #125
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.09.16**
- 【Nuget】版本更新到2.4.0-beta2
1、#152 筛选器支持依赖注入
2、#151 导出添加AutoFitMaxRows,超过指定行数则不启用AutoFit
3、添加全局IsDisableAllFilter属性,以通过特性禁用所有筛选器
**2020.09.14**
- 【Nuget】版本更新到2.4.0-beta1
1、支持单元格导出宽度设置
2、Excel导出支持对Enum的ValueMapping设置
3、Excel导出支持对bool类型的ValueMapping设置
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.09.24**
- 【Nuget】版本更新到2.4.0-beta3
#142 【修复】根据模板列表高度的设置,统一设置渲染高度
**2020.09.16**
- 【Nuget】版本更新到2.4.0-beta2
1、#152 筛选器支持依赖注入
2、#151 导出添加AutoFitMaxRows,超过指定行数则不启用AutoFit
3、添加全局IsDisableAllFilter属性,以通过特性禁用所有筛选器
**2020.09.14**
- 【Nuget】版本更新到2.4.0-beta1
1、支持单元格导出宽度设置
2、Excel导出支持对Enum的ValueMapping设置
3、Excel导出支持对bool类型的ValueMapping设置
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.09.26**
- 【Nuget】版本更新到2.4.0-beta4
#157 【修复】对低版本框架的兼容
**2020.09.24**
- 【Nuget】版本更新到2.4.0-beta3
#142 【修复】根据模板列表高度的设置,统一设置渲染高度
**2020.09.16**
- 【Nuget】版本更新到2.4.0-beta2
1、#152 筛选器支持依赖注入
2、#151 导出添加AutoFitMaxRows,超过指定行数则不启用AutoFit
3、添加全局IsDisableAllFilter属性,以通过特性禁用所有筛选器
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.10.20**
- 【Nuget】版本更新到2.5.0-beta1
- Excel导出支持HeaderRowIndex [#164](https://github.com/dotnetcore/Magicodes.IE/issues/164)
- 增加Excel枚举导出对DescriptionAttribute的支持[#168](https://github.com/dotnetcore/Magicodes.IE/issues/168)
**2020.10.01**
- 【Nuget】版本更新到2.4.0
- 支持单元格导出宽度设置 [#129](https://github.com/dotnetcore/Magicodes.IE/issues/129)
- Excel导出支持对Enum的ValueMapping设置 [#106](https://github.com/dotnetcore/Magicodes.IE/issues/106)
- Excel导出支持对bool类型的ValueMapping设置 [#16](https://github.com/dotnetcore/Magicodes.IE/issues/16)
- [#152](https://github.com/dotnetcore/Magicodes.IE/issues/152) 筛选器支持依赖注入
- #151 导出添加AutoFitMaxRows,超过指定行数则不启用AutoFit
- 添加全局IsDisableAllFilter属性,以通过特性禁用所有筛选器
- [#142](https://github.com/dotnetcore/Magicodes.IE/issues/142) 【修复】根据模板列表高度的设置,统一设置渲染高度
- [#157](https://github.com/dotnetcore/Magicodes.IE/issues/157)【修复】对低版本框架的兼容
- Excel导入对图片获取算法的优化
**2020.09.26**
- 【Nuget】版本更新到2.4.0-beta4
#157 【修复】对低版本框架的兼容
**2020.09.24**
- 【Nuget】版本更新到2.4.0-beta3
#142 【修复】根据模板列表高度的设置,统一设置渲染高度
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.10.29**
- 【Nuget】版本更新到2.5.0-beta3
- 导入模板支持Excel内置验证 [#167](https://github.com/dotnetcore/Magicodes.IE/issues/167)
**2020.10.20**
- 【Nuget】版本更新到2.5.0-beta2
- Excel导出支持HeaderRowIndex [#164](https://github.com/dotnetcore/Magicodes.IE/issues/164)
- 增加Excel枚举导出对DescriptionAttribute的支持[#168](https://github.com/dotnetcore/Magicodes.IE/issues/168)
**2020.10.01**
- 【Nuget】版本更新到2.4.0
- 支持单元格导出宽度设置 [#129](https://github.com/dotnetcore/Magicodes.IE/issues/129)
- Excel导出支持对Enum的ValueMapping设置 [#106](https://github.com/dotnetcore/Magicodes.IE/issues/106)
- Excel导出支持对bool类型的ValueMapping设置 [#16](https://github.com/dotnetcore/Magicodes.IE/issues/16)
- [#152](https://github.com/dotnetcore/Magicodes.IE/issues/152) 筛选器支持依赖注入
- #151 导出添加AutoFitMaxRows,超过指定行数则不启用AutoFit
- 添加全局IsDisableAllFilter属性,以通过特性禁用所有筛选器
- [#142](https://github.com/dotnetcore/Magicodes.IE/issues/142) 【修复】根据模板列表高度的设置,统一设置渲染高度
- [#157](https://github.com/dotnetcore/Magicodes.IE/issues/157)【修复】对低版本框架的兼容
- Excel导入对图片获取算法的优化
**2020.09.26**
- 【Nuget】版本更新到2.4.0-beta4
#157 【修复】对低版本框架的兼容
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
**2020.11.20**
- 【Nuget】版本更新到2.5.0-beta4
- 导入Excel对Enum类型匹配值映射时,忽略值前后空格
**2020.10.29**
- 【Nuget】版本更新到2.5.0-beta3
- 导入模板支持Excel内置验证 [#167](https://github.com/dotnetcore/Magicodes.IE/issues/167)
**2020.10.20**
- 【Nuget】版本更新到2.5.0-beta2
- Excel导出支持HeaderRowIndex [#164](https://github.com/dotnetcore/Magicodes.IE/issues/164)
- 增加Excel枚举导出对DescriptionAttribute的支持[#168](https://github.com/dotnetcore/Magicodes.IE/issues/168)
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Csv、Pdf和Html以及动态导出。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
https://github.com/dotnetcore/Magicodes.IE/issues/68
- **【Nuget】版本更新到2.2.0-beta5**
- **【Excel导入导出】修复.NET Core 2.2的包引用问题**
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Pdf和Html。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
|
4 |
Magicodes.IE.Excel
导入导出通用库,通过导入导出DTO模型来控制导入和导出,支持Excel、Word、Pdf和Html。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
交流QQ群:85318032
- **【Nuget】版本更新到2.2.0-beta4**
- **【Excel多Sheet导出】修复[#66](https://github.com/dotnetcore/Magicodes.IE/issues/66),并添加单元测试**
|
4 |
Magicodes.IE.Excel.NPOI
Import and export general library, support Dto import and export, template export, fancy export and dynamic export, support Excel, Csv, Word, Pdf and Html.
导入导出通用库,支持Dto导入导出、模板导出、花式导出以及动态导出,支持Excel、Csv、Word、Pdf和Html。
开源库地址:https://github.com/xin-lai
博客地址:http://www.cnblogs.com/codelove/
更新记录:https://github.com/dotnetcore/Magicodes.IE/blob/master/RELEASE.md
公众号:麦扣聊技术
交流QQ群:85318032
|
4 |
.NET 5.0
- Microsoft.Extensions.DependencyInjection (>= 5.0.0)
- Microsoft.Extensions.DependencyModel (>= 5.0.0)
- SixLabors.ImageSharp (>= 2.1.3)
- System.ComponentModel.Annotations (>= 4.7.0)
.NET Standard 2.1
- System.Runtime.Loader (>= 4.3.0)
- System.ComponentModel.Annotations (>= 4.7.0)
- SixLabors.ImageSharp (>= 2.1.3)
- Microsoft.Extensions.DependencyModel (>= 3.1.2)
- Microsoft.Extensions.DependencyInjection (>= 3.1.2)
.NET Standard 2.0
- System.Runtime.Loader (>= 4.3.0)
- System.ComponentModel.Annotations (>= 4.7.0)
- SixLabors.ImageSharp (>= 1.0.4)
- Microsoft.Extensions.DependencyModel (>= 2.1.0)
- Microsoft.Extensions.DependencyInjection (>= 2.2.0)
.NET 8.0
- System.ComponentModel.Annotations (>= 4.7.0)
- SixLabors.ImageSharp (>= 3.0.0)
- Microsoft.Extensions.DependencyModel (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
.NET 7.0
- System.ComponentModel.Annotations (>= 4.7.0)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.DependencyModel (>= 7.0.0)
- SixLabors.ImageSharp (>= 3.0.0)
.NET 6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- Microsoft.Extensions.DependencyModel (>= 6.0.0)
- System.ComponentModel.Annotations (>= 4.7.0)
- SixLabors.ImageSharp (>= 3.0.0)
Version | Downloads | Last updated |
---|---|---|
2.7.5.2 | 3 | 12/11/2024 |
2.7.5.1 | 3 | 12/12/2024 |
2.7.4.5 | 3 | 12/12/2024 |
2.7.4.4 | 3 | 12/13/2024 |
2.7.4.3 | 0 | 03/16/2023 |
2.7.4.2 | 3 | 12/12/2024 |
2.7.4.1 | 3 | 12/13/2024 |
2.7.4 | 3 | 12/23/2024 |
2.7.3 | 0 | 12/27/2022 |
2.7.2 | 3 | 12/13/2024 |
2.7.1 | 3 | 12/13/2024 |
2.7.0 | 0 | 11/07/2022 |
2.7.0-beta2 | 3 | 12/13/2024 |
2.7.0-beta | 3 | 12/13/2024 |
2.6.9 | 3 | 12/12/2024 |
2.6.8 | 3 | 12/24/2024 |
2.6.7 | 3 | 12/13/2024 |
2.6.6 | 3 | 12/12/2024 |
2.6.5-beta1 | 3 | 12/13/2024 |
2.6.4 | 0 | 04/17/2022 |
2.6.3 | 3 | 12/12/2024 |
2.6.2 | 3 | 12/12/2024 |
2.6.1 | 3 | 12/16/2024 |
2.6.0 | 3 | 12/23/2024 |
2.5.6.3 | 3 | 12/13/2024 |
2.5.6.2 | 3 | 12/13/2024 |
2.5.6.1 | 0 | 10/06/2021 |
2.5.6 | 0 | 10/05/2021 |
2.5.5.4 | 3 | 12/13/2024 |
2.5.5.3 | 0 | 08/28/2021 |
2.5.5.2 | 3 | 12/23/2024 |
2.5.5.1 | 0 | 08/07/2021 |
2.5.5 | 3 | 12/23/2024 |
2.5.4.9 | 0 | 07/23/2021 |
2.5.4.8 | 0 | 07/17/2021 |
2.5.4.7 | 3 | 12/23/2024 |
2.5.4.6 | 3 | 12/23/2024 |
2.5.4.5 | 0 | 06/28/2021 |
2.5.4.4 | 3 | 12/23/2024 |
2.5.4.3 | 0 | 06/18/2021 |
2.5.4.2 | 3 | 12/12/2024 |
2.5.4.1 | 3 | 12/23/2024 |
2.5.4 | 0 | 06/01/2021 |
2.5.3.9 | 0 | 05/26/2021 |
2.5.3.8 | 0 | 05/09/2021 |
2.5.3.7 | 0 | 04/23/2021 |
2.5.3.6 | 0 | 04/18/2021 |
2.5.3.5 | 0 | 04/13/2021 |
2.5.3.4 | 3 | 12/23/2024 |
2.5.3.3 | 3 | 12/24/2024 |
2.5.3.2 | 0 | 03/30/2021 |
2.5.3.1 | 3 | 12/13/2024 |
2.5.3 | 0 | 03/08/2021 |
2.5.2 | 0 | 03/05/2021 |
2.5.1.8 | 0 | 02/23/2021 |
2.5.1.7 | 0 | 02/20/2021 |
2.5.1.6 | 3 | 12/23/2024 |
2.5.1.5 | 3 | 12/23/2024 |
2.5.1.4 | 0 | 01/09/2021 |
2.5.1.3 | 3 | 12/23/2024 |
2.5.1.2 | 3 | 12/23/2024 |
2.5.1.1 | 0 | 12/22/2020 |
2.5.1 | 0 | 12/21/2020 |
2.5.0 | 0 | 12/03/2020 |
2.5.0-beta6 | 3 | 12/13/2024 |
2.5.0-beta5 | 3 | 12/13/2024 |
2.5.0-beta4 | 3 | 12/13/2024 |
2.5.0-beta3 | 3 | 12/12/2024 |
2.5.0-beta2 | 3 | 12/12/2024 |
2.5.0-beta1 | 3 | 12/13/2024 |
2.4.0 | 3 | 12/13/2024 |
2.4.0-beta4 | 3 | 12/23/2024 |
2.4.0-beta3 | 0 | 09/24/2020 |
2.4.0-beta2 | 0 | 09/16/2020 |
2.4.0-beta1 | 3 | 12/13/2024 |
2.3.0 | 0 | 08/30/2020 |
2.3.0-beta8 | 3 | 12/12/2024 |
2.3.0-beta7 | 3 | 12/13/2024 |
2.3.0-beta6 | 3 | 12/17/2024 |
2.3.0-beta5 | 0 | 08/04/2020 |
2.3.0-beta4 | 3 | 12/12/2024 |
2.3.0-beta3 | 3 | 12/13/2024 |
2.3.0-beta2 | 3 | 12/24/2024 |
2.3.0-beta1 | 3 | 12/12/2024 |
2.2.7 | 0 | 06/17/2020 |
2.2.6 | 0 | 06/16/2020 |
2.2.5 | 3 | 12/24/2024 |
2.2.4 | 3 | 12/12/2024 |
2.2.3 | 3 | 12/23/2024 |
2.2.2 | 3 | 12/12/2024 |
2.2.1 | 0 | 05/16/2020 |
2.2.0 | 3 | 12/17/2024 |
2.2.0-beta9 | 3 | 12/12/2024 |
2.2.0-beta8 | 3 | 12/13/2024 |
2.2.0-beta7 | 3 | 12/13/2024 |
2.2.0-beta6 | 3 | 12/13/2024 |
2.2.0-beta5 | 3 | 12/13/2024 |
2.2.0-beta4 | 3 | 12/12/2024 |
2.2.0-beta3 | 3 | 12/13/2024 |
2.2.0-beta2 | 3 | 12/12/2024 |
2.2.0-beta1 | 3 | 12/13/2024 |
2.1.4 | 3 | 12/13/2024 |
2.1.3 | 3 | 12/13/2024 |
2.1.2 | 3 | 12/12/2024 |
2.1.1-beta | 3 | 12/13/2024 |
2.1.0 | 3 | 12/13/2024 |
2.0.2 | 3 | 12/12/2024 |
2.0.1 | 3 | 12/13/2024 |
2.0.0 | 0 | 02/11/2020 |
2.0.0-beta4 | 3 | 12/13/2024 |
2.0.0-beta2 | 3 | 12/13/2024 |
2.0.0-beta1 | 3 | 12/13/2024 |
1.4.25 | 3 | 12/23/2024 |
1.4.24 | 3 | 12/24/2024 |
1.4.23 | 0 | 01/15/2020 |
1.4.21 | 3 | 12/13/2024 |
1.4.20 | 3 | 12/13/2024 |
1.4.19 | 0 | 01/09/2020 |
1.4.18 | 0 | 01/08/2020 |
1.4.17 | 3 | 12/24/2024 |
1.4.16 | 0 | 12/17/2019 |
1.4.15 | 3 | 12/23/2024 |
1.4.14 | 3 | 12/23/2024 |
1.4.13 | 0 | 11/25/2019 |
1.4.12 | 0 | 11/24/2019 |
1.4.11 | 3 | 12/24/2024 |
1.4.10 | 0 | 11/16/2019 |
1.4.9-beta | 3 | 12/23/2024 |
1.4.8-beta | 3 | 12/12/2024 |
1.4.7-beta | 3 | 12/13/2024 |
1.4.6-beta | 3 | 12/13/2024 |
1.4.5 | 0 | 11/13/2019 |
1.4.4 | 0 | 11/05/2019 |
1.4.3 | 3 | 12/23/2024 |
1.4.2 | 3 | 12/12/2024 |
1.4.1 | 0 | 11/04/2019 |
1.4.0 | 3 | 12/24/2024 |
1.3.9 | 3 | 12/13/2024 |
1.3.8 | 0 | 10/26/2019 |
1.3.7 | 3 | 12/12/2024 |
1.3.6 | 3 | 12/13/2024 |
1.3.5 | 0 | 10/22/2019 |
1.3.4 | 0 | 10/21/2019 |
1.3.3 | 3 | 12/13/2024 |
1.3.2 | 3 | 12/12/2024 |
1.3.1 | 3 | 12/13/2024 |
1.2.1 | 3 | 12/12/2024 |
1.2.0 | 0 | 09/18/2019 |
1.1.0 | 0 | 09/11/2019 |
1.0.4 | 3 | 12/12/2024 |
1.0.3 | 0 | 09/04/2019 |
1.0.2 | 3 | 12/23/2024 |
1.0.1 | 0 | 09/02/2019 |
1.0.0 | 3 | 12/13/2024 |