XUCore.Template.WeChatClub 9.6.43

dotnet new install XUCore.Template.WeChatClub::9.6.43
                    
This package contains a .NET Template Package you can call from the shell/command line.

XUCore.Template.WeChatClub

XUCore.Template.WeChatClub

基于 FreeSql 的精简分层快速开发项目模板,生成 Web WeChat 项目

使用模板

本地安装模板:可详情见 install-template.bat 文件内

本地安装模板步骤

如果已经装过旧版,可以先执行下面命令进行卸载:


dotnet new -u xclub

然后安装指定版本:


dotnet new --install XUCore.Template.WeChatClub::6.5.2

创建项目

切换到指定创建的目录。

假设我们需要在 E:\demo 创建,

那么先切换到该目录


cd E:\demo

然后执行下面命令创建项目


dotnet new xclub -n MyTest -o .

这里的 xclub 是使用模板短名称。

MyTest 为新创建的项目名称。

avatar

本地构建项目镜像到 Docker(如果使用 jenkins 可以直接在 jenkins 里配置)

前提是 dockerfile 需要放在项目根目录,而非启动项目的目录

不采用微软自带的 dockerfile,我们需要手工打包发布。

1、切换到项目目录


cd E:\demo\MyTest.WebApi2

2、本地编译


dotnet build -c Release

3、本地发布(实际发布到当前项目的 bin/Release/net5.0/publish/ 目录)


dotnet publish -c Release

4、打包进 docker


docker build -t mytest:0.0.1 .

从控制台中,我们可以看到打包过程


E:\MyTest>docker build -t mytest:0.0.1 .
[+] Building 14.7s (12/20)
 => [internal] load build definition from Dockerfile                                                               0.0s
 => => transferring dockerfile: 32B                                                                                0.0s
 => [internal] load .dockerignore                                                                                  0.0s
 => => transferring context: 2B                                                                                    0.0s
 => [internal] load metadata for mcr.microsoft.com/dotnet/sdk:5.0                                                  0.0s
[+] Building 15.1s (12/20)
 => [internal] load build definition from Dockerfile                                                               0.0s
[+] Building 30.4s (12/20)
 => [internal] load build definition from Dockerfile                                                               0.0s
 => => transferring dockerfile: 32B                                                                                0.0s
 => [internal] load .dockerignore                                                                                  0.0s
 => => transferring context: 2B                                                                                    0.0s
[+] Building 56.7s (21/21) FINISHED
 => [internal] load build definition from Dockerfile                                                               0.0s
 => => transferring dockerfile: 32B                                                                                0.0s
 => [internal] load .dockerignore                                                                                  0.0s
 => => transferring context: 2B                                                                                    0.0s
 => [internal] load metadata for mcr.microsoft.com/dotnet/sdk:5.0                                                  0.0s
 => [internal] load metadata for mcr.microsoft.com/dotnet/aspnet:5.0                                               0.0s
 => [build 1/7] FROM mcr.microsoft.com/dotnet/sdk:5.0                                                              0.0s
 => [internal] load build context                                                                                  1.2s
 => => transferring context: 119.91MB                                                                              1.2s
 => [base 1/5] FROM mcr.microsoft.com/dotnet/aspnet:5.0                                                            0.0s
 => CACHED [build 2/7] WORKDIR /src                                                                                0.0s
 => CACHED [build 3/7] COPY [MyTest.WebApi2/MyTest.WebApi2.csproj, MyTest.WebApi2/]                                   0.0s
 => CACHED [build 4/7] RUN dotnet restore "MyTest.WebApi2/MyTest.WebApi2.csproj"                                     0.0s
 => [build 5/7] COPY . .                                                                                           0.4s
 => [build 6/7] WORKDIR /src/MyTest.WebApi2                                                                         0.0s
 => [build 7/7] RUN dotnet build "MyTest.WebApi2.csproj" -c Release -o /app/build                                  43.2s
 => [publish 1/1] RUN dotnet publish "MyTest.WebApi2.csproj" -c Release -o /app/publish                            11.5s
 => CACHED [base 2/5] ADD [sources.list, /etc/apt/]                                                                0.0s
 => CACHED [base 3/5] RUN rm /etc/localtime                                                                        0.0s
 => CACHED [base 4/5] RUN ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime                                   0.0s
 => CACHED [base 5/5] WORKDIR /app                                                                                 0.0s
 => CACHED [final 1/2] WORKDIR /app                                                                                0.0s
 => CACHED [final 2/2] COPY --from=publish /app/publish .                                                          0.0s
 => exporting to image                                                                                             0.0s
 => => exporting layers                                                                                            0.0s
 => => writing image sha256:addb11051debc4cf74c7d048d15cafdb7edbf121ae54fc55960f1b46bce94fda                       0.0s
 => => naming to docker.io/library/mytest:0.0.1                                                                    0.0s
 => => #   Determining projects to restore...
Use 'docker scan' to run Snyk tests against images to find vulnerabilities and learn how to fix them

结束后,我们使用 docker images 查看打包好的镜像


E:\MyTest>docker images
REPOSITORY                        TAG       IMAGE ID       CREATED        SIZE
mytest                            0.0.1     addb11051deb   20 hours ago   258MB
mcr.microsoft.com/dotnet/sdk      5.0       1cfcb8589c29   12 days ago    631MB
mcr.microsoft.com/dotnet/aspnet   5.0       592a912e0dcb   12 days ago    205MB

3、启动容器


docker run --name my-test -d -p 8090:8090 mytest:0.0.1

启动后我们通过 docker ps -a 查看运行的镜像


E:\MyTest>docker ps -a
CONTAINER ID   IMAGE          COMMAND                  CREATED         STATUS                       PORTS     NAMES
35c9010404ae   mytest:0.0.1   "dotnet MyTest.WebAp…"   5 minutes ago   Exited (139) 4 minutes ago             my-test

4、浏览器访问

http://127.0.0.1:8090/swagger

此时容器会报错,因为在创建项目后配置文件内需要修改数据库连接地址(进入容器后,我们的所有数据库地址以及其他相关地址都需要修改为内网访问,或者公网访问)

我们可以查看容器的日志,方便我们定位错误


docker logs 35c9010404ae

此时,在容器日志,我们看到


fail: Microsoft.EntityFrameworkCore.Database.Connection[20004]
      An error occurred using the connection to database '' on server 'localhost'.
fail: Microsoft.EntityFrameworkCore.Database.Connection[20004]
      An error occurred using the connection to database '' on server 'localhost'.
fail: Microsoft.EntityFrameworkCore.Database.Connection[20004]
      An error occurred using the connection to database '' on server 'localhost'.
fail: Microsoft.EntityFrameworkCore.Database.Connection[20004]
      An error occurred using the connection to database '' on server 'localhost'.
fail: Microsoft.EntityFrameworkCore.Database.Connection[20004]
      An error occurred using the connection to database '' on server 'localhost'.
fail: Microsoft.EntityFrameworkCore.Database.Connection[20004]

客户端接入 API


API 隐藏操作说明
head value 说明
limit-mode contain or ignore contain 的意思是指定输出字段, ignore 的意思是忽略指定字段
limit-field 字段集合 指定要输出或要忽略的字段,以英文逗号分隔,如:column1,column2,column3
limit-field-rename 要重命名的字段 字段以输出为准,比如:code=c,subCode=sub,data=data,nickname=userNickName
limit-resolver camelcase or default camelcase 的意思是指定输出小驼峰字段, default 的意思是默认输出大小写字段
limit-date-unix true or false 当设置为true的时候 则是所有DateTime时间全部返回时间戳,当为false的时候不启用
limit-date-format 日期格式化字符串 比如:yyyy-MM-dd'T'HH:mm:ss'Z' 返回的数据如:2021-01-06T10:03:38Z
1、如何改变 DateTime 的格式?

我们需要在 http 请求的时候,在 head 里加入配置

head value 说明
limit-date-unix true or false 当设置为true的时候 则是所有DateTime时间全部返回时间戳,当为false的时候不启用
limit-date-format 日期格式化字符串 比如:yyyy-MM-dd'T'HH:mm:ss'Z' 返回的数据如:2021-01-06T10:03:38Z

注意: limit-date-unix的优先级要大于limit-date-format


2、如何重命名和指定输出需要的字段?
head value 说明
limit-mode contain or ignore contain 的意思是指定输出字段, ignore 的意思是忽略指定字段
limit-field 字段集合 指定要输出或要忽略的字段,以英文逗号分隔,如:column1,column2,column3
limit-field-rename 要重命名的字段 字段以输出为准,比如:code=c,subCode=sub,data=data,nickname=userNickName

注意:当你使用重命名limit-field-rename字段后,指定输出的字段limit-field要以重命名后的字段名为准,大小写也请依照你重命名后的格式。

任何指定输出,均不影响原始定义的结构。

3、如何指定输出小驼峰字段?
head value 说明
limit-resolver camelcase or default camelcase 的意思是指定输出小驼峰字段, default 的意思是默认输出大小写字段

任何指定输出,均不影响原始定义的结构。

示例一

如下表设置:

设置 说明
limit-mode contain 指定匹配输出模式
limit-field code,subCode,data,userId,userNickName,entName 设置需要的字段集合,英文逗号分隔

示例二

如下表设置:

设置 说明
limit-mode contain 指定匹配输出模式
limit-field code,sub,data,totalPages,totalRecords,pageDatas,createTime,nickName,entId,entName 设置需要的字段集合,英文逗号分隔,并以重命名后的字段为准设置输出字段
limit-field-rename subcode=sub,data=data,items=pageDatas,userNickName=nickName 重命名字段

示例三

如下表设置:

设置 说明
limit-mode ignore 指定忽略输出模式
limit-field code,subCode,message,userId,userNickName,entName,productType,userHeadImg_48 设置要忽略的字段集合,英文逗号分隔

示例四

如下表设置:

设置 说明
limit-mode ignore 指定忽略输出模式
limit-field code,subCode,message,userId,userNickName,entName,productType,userHeadImg_48 设置要忽略的字段集合,英文逗号分隔
limit-date-unix true 设置 DateTime 输出时间戳
Accept application/json 指定输出 json 格式的 json 字符串格式

适用范围定义

在一定程度上使 API 接入变得稍微复杂了一点点,但是能优化网络传输,或许我们可以考虑牺牲一点复杂度,按需索取来优化传输问题。

客户端 适合程度
移动端 非常适合
web 端 适合
服务端 跨语言,在不同规范的情况下适合接入,能解决模型不一致的问题,k8s 内走内网地址不需要考虑这个问题
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.6.43 142 9/1/2025
9.6.42 127 8/17/2025
9.6.41 77 8/16/2025
9.6.40 83 8/16/2025
9.6.39 150 8/13/2025
9.6.38 145 8/9/2025
9.6.37 244 8/5/2025
9.6.36 97 8/1/2025
9.6.35 127 7/29/2025
9.6.34 467 7/25/2025
9.6.33 467 7/25/2025
9.6.32 472 7/24/2025
9.6.31 476 7/24/2025
9.6.30 472 7/24/2025
9.6.29 526 7/23/2025
9.6.28 526 7/22/2025
9.6.27 162 7/11/2025
9.6.26 264 3/12/2025
9.6.25 216 1/11/2025
9.6.24 218 12/26/2024
9.6.23 222 12/12/2024
9.6.22 227 12/3/2024
9.6.21 213 11/14/2024
9.6.19 202 11/14/2024
9.6.18 216 11/8/2024
9.6.17 214 10/31/2024
9.6.16 219 10/31/2024
9.6.14 209 10/25/2024
9.6.13 204 10/25/2024
9.6.12 216 9/29/2024
9.6.11 209 9/26/2024
9.6.10 226 9/24/2024
9.6.9 217 9/24/2024
9.6.8 205 9/24/2024
9.6.7 207 9/23/2024
9.6.6 211 9/20/2024
9.6.5 191 9/14/2024
9.6.4 211 9/14/2024
9.6.3 244 8/21/2024
9.6.2 253 8/21/2024
9.6.1 264 8/13/2024
9.5.9 175 8/2/2024
9.5.8 187 8/1/2024
9.5.6 159 7/26/2024
9.5.5 217 7/23/2024
9.5.4 212 7/23/2024
9.5.3 271 7/22/2024
9.5.2 203 7/18/2024
9.5.1 170 7/16/2024
9.4.11 191 7/11/2024
9.4.10 229 7/5/2024
9.4.9 256 7/2/2024
9.4.8 246 7/1/2024
9.4.7 231 6/27/2024
9.4.6 184 6/26/2024
9.4.5 213 6/25/2024
9.4.4 198 6/23/2024
9.4.3 197 6/21/2024
9.4.2 208 6/14/2024
9.4.1 230 6/14/2024
9.3.11 212 6/4/2024
9.3.10 237 6/4/2024
9.3.9 221 5/31/2024
9.3.8 277 5/28/2024
9.3.7 354 5/24/2024
9.3.6 245 5/23/2024
9.3.5 262 5/23/2024
9.3.4 262 5/22/2024
9.3.3 364 5/15/2024
9.3.2 258 5/15/2024
9.3.1 224 5/15/2024
9.2.19 226 5/14/2024
9.2.18 202 5/14/2024
9.2.17 198 5/14/2024
9.2.16 241 5/14/2024
9.2.15 236 5/13/2024
9.2.14 226 5/13/2024
9.2.13 198 5/13/2024
9.2.12 198 5/12/2024
9.2.11 271 5/11/2024
9.2.10 236 5/10/2024
9.2.9 253 5/9/2024
9.2.8 275 5/7/2024
9.2.7 280 5/7/2024
9.2.6 224 4/29/2024
9.2.5 260 4/25/2024
9.2.4 233 4/22/2024
9.2.3 230 4/19/2024
9.2.2 236 4/19/2024
9.2.1 240 4/17/2024
9.1.13 307 4/16/2024
9.1.12 295 4/16/2024
9.1.11 319 4/16/2024
9.1.10 306 4/14/2024
9.1.9 264 4/14/2024
9.1.8 301 4/12/2024
9.1.7 256 4/12/2024
9.1.6 273 4/12/2024
9.1.5 276 4/11/2024
9.1.4 287 4/11/2024
9.1.3 318 4/11/2024
9.1.2 279 4/10/2024
9.1.1 306 4/9/2024
8.11.12 282 4/9/2024
8.11.11 286 4/3/2024
8.11.10 306 3/29/2024
8.11.9 313 3/28/2024
8.11.8 340 3/26/2024
8.11.7 322 3/25/2024
8.11.6 443 3/21/2024
8.11.5 598 3/13/2024
8.11.4 430 3/10/2024
8.11.3 444 3/4/2024
8.11.2 324 3/4/2024
8.11.1 427 3/1/2024
8.10.14 529 2/21/2024
8.10.13 300 2/20/2024
8.10.12 266 2/20/2024
8.10.11 294 2/20/2024
8.10.10 280 2/20/2024
8.10.9 271 2/20/2024
8.10.8 278 2/20/2024
8.10.7 350 2/18/2024
8.10.6 333 2/18/2024
8.10.5 566 2/6/2024
8.10.4 274 2/6/2024
8.10.3 316 2/4/2024
8.10.2 252 2/4/2024
8.10.1 233 2/4/2024
8.9.9 334 2/3/2024 8.9.9 is deprecated because it is no longer maintained and has critical bugs.
8.9.8 323 2/3/2024 8.9.8 is deprecated because it is no longer maintained and has critical bugs.
8.9.7 547 1/26/2024 8.9.7 is deprecated because it is no longer maintained and has critical bugs.
8.9.6 335 1/26/2024 8.9.6 is deprecated because it is no longer maintained and has critical bugs.
8.9.5 349 1/25/2024 8.9.5 is deprecated because it is no longer maintained and has critical bugs.
8.9.4 313 1/25/2024 8.9.4 is deprecated because it is no longer maintained and has critical bugs.
8.9.3 321 1/24/2024 8.9.3 is deprecated because it is no longer maintained and has critical bugs.
8.9.2 295 1/23/2024 8.9.2 is deprecated because it is no longer maintained and has critical bugs.
8.9.1 301 1/23/2024 8.9.1 is deprecated because it is no longer maintained and has critical bugs.
8.9.0 331 1/23/2024 8.9.0 is deprecated because it is no longer maintained and has critical bugs.
8.8.9 327 1/23/2024 8.8.9 is deprecated because it is no longer maintained and has critical bugs.
8.8.8 322 1/22/2024 8.8.8 is deprecated because it is no longer maintained and has critical bugs.
8.8.7 276 1/22/2024 8.8.7 is deprecated because it is no longer maintained and has critical bugs.
8.8.6 262 1/22/2024 8.8.6 is deprecated because it is no longer maintained and has critical bugs.
8.8.5 314 1/22/2024 8.8.5 is deprecated because it is no longer maintained and has critical bugs.
8.8.4 302 1/22/2024 8.8.4 is deprecated because it is no longer maintained and has critical bugs.
8.8.3 316 1/22/2024 8.8.3 is deprecated because it is no longer maintained and has critical bugs.
8.8.2 361 1/20/2024 8.8.2 is deprecated because it is no longer maintained and has critical bugs.
8.8.1 314 1/20/2024 8.8.1 is deprecated because it is no longer maintained and has critical bugs.
8.8.0 312 1/20/2024 8.8.0 is deprecated because it is no longer maintained and has critical bugs.
8.7.9 330 1/20/2024 8.7.9 is deprecated because it is no longer maintained and has critical bugs.
8.7.8 331 1/20/2024 8.7.8 is deprecated because it is no longer maintained and has critical bugs.
8.7.7 321 1/19/2024 8.7.7 is deprecated because it is no longer maintained and has critical bugs.
8.7.6 322 1/19/2024 8.7.6 is deprecated because it is no longer maintained and has critical bugs.
8.7.5 305 1/19/2024 8.7.5 is deprecated because it is no longer maintained and has critical bugs.
8.7.4 276 1/19/2024 8.7.4 is deprecated because it is no longer maintained and has critical bugs.
8.7.3 339 1/19/2024 8.7.3 is deprecated because it is no longer maintained and has critical bugs.
8.7.2 282 1/19/2024 8.7.2 is deprecated because it is no longer maintained and has critical bugs.
8.7.1 287 1/19/2024 8.7.1 is deprecated because it is no longer maintained and has critical bugs.
8.7.0 307 1/18/2024 8.7.0 is deprecated because it is no longer maintained and has critical bugs.
8.6.9 343 1/18/2024 8.6.9 is deprecated because it is no longer maintained and has critical bugs.
8.6.8 319 1/18/2024 8.6.8 is deprecated because it is no longer maintained and has critical bugs.
8.6.7 283 1/18/2024 8.6.7 is deprecated because it is no longer maintained and has critical bugs.
8.6.6 343 1/18/2024 8.6.6 is deprecated because it is no longer maintained and has critical bugs.
8.6.5 350 1/18/2024 8.6.5 is deprecated because it is no longer maintained and has critical bugs.
8.6.4 353 1/17/2024 8.6.4 is deprecated because it is no longer maintained and has critical bugs.
8.6.3 331 1/17/2024 8.6.3 is deprecated because it is no longer maintained and has critical bugs.
8.6.2 304 1/17/2024 8.6.2 is deprecated because it is no longer maintained and has critical bugs.
8.6.1 309 1/16/2024 8.6.1 is deprecated because it is no longer maintained and has critical bugs.
8.6.0 312 1/16/2024 8.6.0 is deprecated because it is no longer maintained and has critical bugs.
8.5.9 341 1/16/2024 8.5.9 is deprecated because it is no longer maintained and has critical bugs.
8.5.8 345 1/15/2024 8.5.8 is deprecated because it is no longer maintained and has critical bugs.
8.5.7 297 1/15/2024 8.5.7 is deprecated because it is no longer maintained and has critical bugs.
8.5.6 268 1/15/2024 8.5.6 is deprecated because it is no longer maintained and has critical bugs.
8.5.5 319 1/14/2024 8.5.5 is deprecated because it is no longer maintained and has critical bugs.
8.5.4 316 1/14/2024 8.5.4 is deprecated because it is no longer maintained and has critical bugs.
8.5.3 358 1/13/2024 8.5.3 is deprecated because it is no longer maintained and has critical bugs.
8.5.2 320 1/13/2024 8.5.2 is deprecated because it is no longer maintained and has critical bugs.
8.5.1 308 1/13/2024 8.5.1 is deprecated because it is no longer maintained and has critical bugs.
8.5.0 328 1/12/2024 8.5.0 is deprecated because it is no longer maintained and has critical bugs.
8.4.9 393 1/11/2024 8.4.9 is deprecated because it is no longer maintained and has critical bugs.
8.4.8 382 1/11/2024 8.4.8 is deprecated because it is no longer maintained and has critical bugs.
8.4.7 368 1/10/2024 8.4.7 is deprecated because it is no longer maintained and has critical bugs.
8.4.6 384 1/10/2024 8.4.6 is deprecated because it is no longer maintained and has critical bugs.
8.4.5 341 1/10/2024 8.4.5 is deprecated because it is no longer maintained and has critical bugs.
8.4.4 340 1/9/2024 8.4.4 is deprecated because it is no longer maintained and has critical bugs.
8.4.3 419 1/8/2024 8.4.3 is deprecated because it is no longer maintained and has critical bugs.
8.4.2 386 1/8/2024 8.4.2 is deprecated because it is no longer maintained and has critical bugs.
8.4.1 368 1/8/2024 8.4.1 is deprecated because it is no longer maintained and has critical bugs.
8.4.0 389 1/8/2024 8.4.0 is deprecated because it is no longer maintained and has critical bugs.
8.3.9 384 1/8/2024 8.3.9 is deprecated because it is no longer maintained and has critical bugs.
8.3.8 348 1/8/2024 8.3.8 is deprecated because it is no longer maintained and has critical bugs.
8.3.7 389 1/8/2024 8.3.7 is deprecated because it is no longer maintained and has critical bugs.
8.3.6 374 1/6/2024 8.3.6 is deprecated because it is no longer maintained and has critical bugs.
8.3.5 383 1/5/2024 8.3.5 is deprecated because it is no longer maintained and has critical bugs.
8.3.4 373 1/5/2024 8.3.4 is deprecated because it is no longer maintained and has critical bugs.
8.3.3 379 1/5/2024 8.3.3 is deprecated because it is no longer maintained and has critical bugs.
8.3.2 334 1/5/2024 8.3.2 is deprecated because it is no longer maintained and has critical bugs.
8.3.1 359 1/5/2024 8.3.1 is deprecated because it is no longer maintained and has critical bugs.
8.3.0 311 1/5/2024 8.3.0 is deprecated because it is no longer maintained and has critical bugs.
8.2.9 375 1/5/2024 8.2.9 is deprecated because it is no longer maintained and has critical bugs.
8.2.8 404 1/4/2024 8.2.8 is deprecated because it is no longer maintained and has critical bugs.
8.2.7 350 1/4/2024 8.2.7 is deprecated because it is no longer maintained and has critical bugs.
8.2.6 360 1/4/2024 8.2.6 is deprecated because it is no longer maintained and has critical bugs.
8.2.5 338 1/4/2024 8.2.5 is deprecated because it is no longer maintained and has critical bugs.
8.2.4 388 1/3/2024 8.2.4 is deprecated because it is no longer maintained and has critical bugs.
8.2.3 419 1/3/2024 8.2.3 is deprecated because it is no longer maintained and has critical bugs.
8.2.2 403 1/3/2024 8.2.2 is deprecated because it is no longer maintained and has critical bugs.
8.2.1 375 1/3/2024 8.2.1 is deprecated because it is no longer maintained and has critical bugs.
8.2.0 419 1/2/2024 8.2.0 is deprecated because it is no longer maintained and has critical bugs.
8.1.9 397 1/2/2024 8.1.9 is deprecated because it is no longer maintained and has critical bugs.
8.1.8 526 12/25/2023 8.1.8 is deprecated because it is no longer maintained and has critical bugs.
8.1.7 509 12/18/2023 8.1.7 is deprecated because it is no longer maintained and has critical bugs.
8.1.6 376 12/15/2023 8.1.6 is deprecated because it is no longer maintained and has critical bugs.
8.1.5 342 12/14/2023 8.1.5 is deprecated because it is no longer maintained and has critical bugs.
8.1.4 322 12/14/2023 8.1.4 is deprecated because it is no longer maintained and has critical bugs.
8.1.3 371 12/14/2023 8.1.3 is deprecated because it is no longer maintained and has critical bugs.
8.1.2 294 12/14/2023 8.1.2 is deprecated because it is no longer maintained and has critical bugs.
8.1.1 326 12/14/2023 8.1.1 is deprecated because it is no longer maintained and has critical bugs.
8.1.0 358 12/13/2023 8.1.0 is deprecated because it is no longer maintained and has critical bugs.
8.0.9 369 12/13/2023 8.0.9 is deprecated because it is no longer maintained and has critical bugs.
8.0.8 359 12/13/2023 8.0.8 is deprecated because it is no longer maintained and has critical bugs.
8.0.7 279 12/13/2023 8.0.7 is deprecated because it is no longer maintained and has critical bugs.
8.0.6 371 12/12/2023 8.0.6 is deprecated because it is no longer maintained and has critical bugs.
8.0.5 382 12/12/2023 8.0.5 is deprecated because it is no longer maintained and has critical bugs.
8.0.4 395 12/11/2023 8.0.4 is deprecated because it is no longer maintained and has critical bugs.
8.0.3 435 12/7/2023 8.0.3 is deprecated because it is no longer maintained and has critical bugs.
8.0.2 367 12/6/2023 8.0.2 is deprecated because it is no longer maintained and has critical bugs.
8.0.1 355 12/5/2023 8.0.1 is deprecated because it is no longer maintained and has critical bugs.
8.0.0 307 12/5/2023 8.0.0 is deprecated because it is no longer maintained and has critical bugs.
7.9.9 311 12/5/2023 7.9.9 is deprecated because it is no longer maintained and has critical bugs.
7.9.8 312 12/5/2023 7.9.8 is deprecated because it is no longer maintained and has critical bugs.
7.9.7 295 12/4/2023 7.9.7 is deprecated because it is no longer maintained and has critical bugs.
7.9.6 280 12/4/2023 7.9.6 is deprecated because it is no longer maintained and has critical bugs.
7.9.5 433 12/1/2023 7.9.5 is deprecated because it is no longer maintained and has critical bugs.
7.9.4 510 11/24/2023 7.9.4 is deprecated because it is no longer maintained and has critical bugs.
7.9.3 352 11/24/2023 7.9.3 is deprecated because it is no longer maintained and has critical bugs.
7.9.2 339 11/23/2023 7.9.2 is deprecated because it is no longer maintained and has critical bugs.
7.9.1 499 11/17/2023 7.9.1 is deprecated because it is no longer maintained and has critical bugs.
7.9.0 320 11/17/2023 7.9.0 is deprecated because it is no longer maintained and has critical bugs.
7.8.9 263 11/17/2023 7.8.9 is deprecated because it is no longer maintained and has critical bugs.
7.8.8 287 11/16/2023 7.8.8 is deprecated because it is no longer maintained and has critical bugs.
7.8.7 285 11/16/2023 7.8.7 is deprecated because it is no longer maintained and has critical bugs.
7.8.6 312 11/16/2023 7.8.6 is deprecated because it is no longer maintained and has critical bugs.
7.8.5 300 11/16/2023 7.8.5 is deprecated because it is no longer maintained and has critical bugs.
7.8.4 282 11/15/2023 7.8.4 is deprecated because it is no longer maintained and has critical bugs.
7.8.3 324 11/14/2023 7.8.3 is deprecated because it is no longer maintained and has critical bugs.
7.8.2 363 11/10/2023 7.8.2 is deprecated because it is no longer maintained and has critical bugs.
7.8.1 318 11/10/2023 7.8.1 is deprecated because it is no longer maintained and has critical bugs.
7.8.0 272 11/10/2023 7.8.0 is deprecated because it is no longer maintained and has critical bugs.
7.7.9 305 11/9/2023 7.7.9 is deprecated because it is no longer maintained and has critical bugs.
7.7.8 313 11/9/2023 7.7.8 is deprecated because it is no longer maintained and has critical bugs.
7.7.7 332 11/8/2023 7.7.7 is deprecated because it is no longer maintained and has critical bugs.
7.7.6 303 11/8/2023 7.7.6 is deprecated because it is no longer maintained and has critical bugs.
7.7.5 330 11/7/2023 7.7.5 is deprecated because it is no longer maintained and has critical bugs.
7.7.4 335 11/7/2023 7.7.4 is deprecated because it is no longer maintained and has critical bugs.
7.7.3 268 11/7/2023 7.7.3 is deprecated because it is no longer maintained and has critical bugs.
7.7.2 320 11/7/2023 7.7.2 is deprecated because it is no longer maintained and has critical bugs.
7.7.1 326 11/7/2023 7.7.1 is deprecated because it is no longer maintained and has critical bugs.
7.7.0 451 11/3/2023 7.7.0 is deprecated because it is no longer maintained and has critical bugs.
7.6.9 364 11/3/2023 7.6.9 is deprecated because it is no longer maintained and has critical bugs.
7.6.8 330 11/3/2023 7.6.8 is deprecated because it is no longer maintained and has critical bugs.
7.6.7 352 11/3/2023 7.6.7 is deprecated because it is no longer maintained and has critical bugs.
7.6.6 378 11/2/2023 7.6.6 is deprecated because it is no longer maintained and has critical bugs.
7.6.5 451 10/31/2023 7.6.5 is deprecated because it is no longer maintained and has critical bugs.
7.6.4 364 10/31/2023 7.6.4 is deprecated because it is no longer maintained and has critical bugs.
7.6.3 380 10/30/2023 7.6.3 is deprecated because it is no longer maintained and has critical bugs.
7.6.2 487 10/27/2023 7.6.2 is deprecated because it is no longer maintained and has critical bugs.
7.6.1 417 10/27/2023 7.6.1 is deprecated because it is no longer maintained and has critical bugs.
7.6.0 376 10/27/2023 7.6.0 is deprecated because it is no longer maintained and has critical bugs.
7.5.9 384 10/27/2023 7.5.9 is deprecated because it is no longer maintained and has critical bugs.
7.5.8 472 10/27/2023 7.5.8 is deprecated because it is no longer maintained and has critical bugs.
7.5.7 429 10/26/2023 7.5.7 is deprecated because it is no longer maintained and has critical bugs.
7.5.6 424 10/26/2023 7.5.6 is deprecated because it is no longer maintained and has critical bugs.
7.5.5 439 10/26/2023 7.5.5 is deprecated because it is no longer maintained and has critical bugs.
7.5.4 420 10/26/2023 7.5.4 is deprecated because it is no longer maintained and has critical bugs.
7.5.3 433 10/25/2023 7.5.3 is deprecated because it is no longer maintained and has critical bugs.
7.5.2 449 10/25/2023 7.5.2 is deprecated because it is no longer maintained and has critical bugs.
7.5.1 466 10/25/2023 7.5.1 is deprecated because it is no longer maintained and has critical bugs.
7.5.0 420 10/24/2023 7.5.0 is deprecated because it is no longer maintained and has critical bugs.
7.4.9 447 10/24/2023 7.4.9 is deprecated because it is no longer maintained and has critical bugs.
7.4.8 482 10/24/2023 7.4.8 is deprecated because it is no longer maintained and has critical bugs.
7.4.7 363 10/23/2023 7.4.7 is deprecated because it is no longer maintained and has critical bugs.
7.4.6 519 10/20/2023 7.4.6 is deprecated because it is no longer maintained and has critical bugs.
7.4.5 433 10/20/2023 7.4.5 is deprecated because it is no longer maintained and has critical bugs.
7.4.4 458 10/18/2023 7.4.4 is deprecated because it is no longer maintained and has critical bugs.
7.4.3 651 10/9/2023 7.4.3 is deprecated because it is no longer maintained and has critical bugs.
7.4.2 450 10/8/2023 7.4.2 is deprecated because it is no longer maintained and has critical bugs.
7.4.1 391 10/7/2023 7.4.1 is deprecated because it is no longer maintained and has critical bugs.
7.4.0 367 9/15/2023 7.4.0 is deprecated because it is no longer maintained and has critical bugs.
7.3.9 343 9/15/2023 7.3.9 is deprecated because it is no longer maintained and has critical bugs.
7.3.8 387 9/14/2023 7.3.8 is deprecated because it is no longer maintained and has critical bugs.
7.3.7 306 9/14/2023 7.3.7 is deprecated because it is no longer maintained and has critical bugs.
7.3.6 330 9/14/2023 7.3.6 is deprecated because it is no longer maintained and has critical bugs.
7.3.5 414 9/13/2023 7.3.5 is deprecated because it is no longer maintained and has critical bugs.
7.3.4 344 9/13/2023 7.3.4 is deprecated because it is no longer maintained and has critical bugs.
7.3.3 385 9/13/2023 7.3.3 is deprecated because it is no longer maintained and has critical bugs.
7.3.2 406 9/12/2023 7.3.2 is deprecated because it is no longer maintained and has critical bugs.
7.3.1 427 9/12/2023 7.3.1 is deprecated because it is no longer maintained and has critical bugs.
7.3.0 368 9/12/2023 7.3.0 is deprecated because it is no longer maintained and has critical bugs.
7.2.9 403 9/7/2023 7.2.9 is deprecated because it is no longer maintained and has critical bugs.
7.2.8 394 9/7/2023 7.2.8 is deprecated because it is no longer maintained and has critical bugs.
7.2.7 416 9/6/2023 7.2.7 is deprecated because it is no longer maintained and has critical bugs.
7.2.6 380 9/6/2023 7.2.6 is deprecated because it is no longer maintained and has critical bugs.
7.2.5 392 9/6/2023 7.2.5 is deprecated because it is no longer maintained and has critical bugs.
7.2.4 391 8/31/2023 7.2.4 is deprecated because it is no longer maintained and has critical bugs.
7.2.3 424 8/31/2023 7.2.3 is deprecated because it is no longer maintained and has critical bugs.
7.2.2 374 8/30/2023 7.2.2 is deprecated because it is no longer maintained and has critical bugs.
7.2.1 430 8/30/2023 7.2.1 is deprecated because it is no longer maintained and has critical bugs.
7.2.0 427 8/30/2023 7.2.0 is deprecated because it is no longer maintained and has critical bugs.
7.1.9 448 8/29/2023 7.1.9 is deprecated because it is no longer maintained and has critical bugs.
7.1.8 372 8/29/2023 7.1.8 is deprecated because it is no longer maintained and has critical bugs.
7.1.7 422 8/29/2023 7.1.7 is deprecated because it is no longer maintained and has critical bugs.
7.1.6 481 8/29/2023 7.1.6 is deprecated because it is no longer maintained and has critical bugs.
7.1.5 395 8/28/2023 7.1.5 is deprecated because it is no longer maintained and has critical bugs.
7.1.4 433 8/28/2023 7.1.4 is deprecated because it is no longer maintained and has critical bugs.
7.1.3 428 8/28/2023 7.1.3 is deprecated because it is no longer maintained and has critical bugs.
7.1.2 422 8/25/2023 7.1.2 is deprecated because it is no longer maintained and has critical bugs.
7.1.1 437 8/25/2023 7.1.1 is deprecated because it is no longer maintained and has critical bugs.
7.1.0 433 8/25/2023 7.1.0 is deprecated because it is no longer maintained and has critical bugs.
7.0.9 402 8/25/2023 7.0.9 is deprecated because it is no longer maintained and has critical bugs.
7.0.8 353 8/24/2023 7.0.8 is deprecated because it is no longer maintained and has critical bugs.
7.0.7 399 8/24/2023 7.0.7 is deprecated because it is no longer maintained and has critical bugs.
7.0.6 450 8/24/2023 7.0.6 is deprecated because it is no longer maintained and has critical bugs.
7.0.5 453 8/24/2023 7.0.5 is deprecated because it is no longer maintained and has critical bugs.
7.0.4 429 8/23/2023 7.0.4 is deprecated because it is no longer maintained and has critical bugs.
7.0.3 441 8/23/2023 7.0.3 is deprecated because it is no longer maintained and has critical bugs.
7.0.2 413 8/23/2023 7.0.2 is deprecated because it is no longer maintained and has critical bugs.
7.0.1 442 8/23/2023 7.0.1 is deprecated because it is no longer maintained and has critical bugs.
7.0.0 439 8/22/2023 7.0.0 is deprecated because it is no longer maintained and has critical bugs.
6.9.18 553 8/22/2023 6.9.18 is deprecated because it is no longer maintained and has critical bugs.
6.9.17 398 8/22/2023 6.9.17 is deprecated because it is no longer maintained and has critical bugs.
6.9.16 347 8/22/2023 6.9.16 is deprecated because it is no longer maintained and has critical bugs.
6.9.15 421 8/22/2023 6.9.15 is deprecated because it is no longer maintained and has critical bugs.
6.9.14 412 8/22/2023 6.9.14 is deprecated because it is no longer maintained and has critical bugs.
6.9.13 402 8/22/2023 6.9.13 is deprecated because it is no longer maintained and has critical bugs.
6.9.12 466 8/20/2023 6.9.12 is deprecated because it is no longer maintained and has critical bugs.
6.9.11 438 8/19/2023 6.9.11 is deprecated because it is no longer maintained and has critical bugs.
6.9.10 461 8/19/2023 6.9.10 is deprecated because it is no longer maintained and has critical bugs.
6.9.9 475 8/19/2023 6.9.9 is deprecated because it is no longer maintained and has critical bugs.