XUCore.Template.RazorPage 9.6.27

There is a newer version of this package available.
See the version list below for details.
dotnet new install XUCore.Template.RazorPage::9.6.27
                    
This package contains a .NET Template Package you can call from the shell/command line.

XUCore.Template.RazorPage

XUCore.Template.RazorPage

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

使用模板

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

本地安装模板步骤

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


dotnet new -u xwechat

然后安装指定版本:


dotnet new --install XUCore.Template.RazorPage::{version}

创建项目

切换到指定创建的目录。

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

那么先切换到该目录


cd E:\demo

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


dotnet new xwechat -n MyTest -o .

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

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 52 9/1/2025
9.6.42 119 8/17/2025
9.6.41 74 8/16/2025
9.6.40 71 8/16/2025
9.6.39 146 8/13/2025
9.6.38 139 8/9/2025
9.6.37 248 8/5/2025
9.6.36 81 8/1/2025
9.6.35 118 7/29/2025
9.6.34 466 7/25/2025
9.6.32 470 7/24/2025
9.6.31 465 7/24/2025
9.6.30 471 7/24/2025
9.6.29 519 7/23/2025
9.6.28 505 7/22/2025
9.6.27 147 7/11/2025
9.6.26 261 3/12/2025
9.6.25 211 1/11/2025
9.6.24 232 12/26/2024
9.6.23 239 12/12/2024
9.6.22 220 12/3/2024
9.6.21 217 11/14/2024
9.6.19 225 11/14/2024
9.6.18 200 11/8/2024
9.6.17 198 10/31/2024
9.6.16 189 10/31/2024
9.6.15 222 10/31/2024
9.6.14 207 10/25/2024
9.6.13 195 10/25/2024
9.6.12 298 9/29/2024
9.6.11 214 9/26/2024
9.6.10 211 9/24/2024
9.6.9 225 9/24/2024
9.6.8 214 9/24/2024
9.6.7 200 9/23/2024
9.6.6 205 9/20/2024
9.6.5 202 9/14/2024
9.6.4 202 9/14/2024
9.6.3 212 8/21/2024
9.6.2 232 8/21/2024
9.6.1 260 8/13/2024
9.5.9 177 8/2/2024
9.5.7 152 7/31/2024
9.5.6 152 7/26/2024
9.5.5 193 7/23/2024
9.5.4 171 7/23/2024
9.5.3 224 7/22/2024
9.5.2 206 7/18/2024
9.5.1 198 7/16/2024
9.4.11 203 7/11/2024
9.4.10 225 7/5/2024
9.4.9 245 7/2/2024
9.4.8 198 7/1/2024
9.4.7 238 6/27/2024
9.4.6 199 6/26/2024
9.4.5 233 6/25/2024
9.4.4 207 6/23/2024
9.4.3 219 6/21/2024
9.4.2 200 6/14/2024
9.4.1 178 6/14/2024
9.3.11 225 6/4/2024
9.3.10 224 6/4/2024
9.3.9 232 5/31/2024
9.3.8 251 5/28/2024
9.3.7 311 5/24/2024
9.3.6 199 5/23/2024
9.3.5 203 5/23/2024
9.3.4 215 5/22/2024
9.3.3 395 5/15/2024
9.3.2 208 5/15/2024
9.3.1 221 5/15/2024
9.2.19 207 5/14/2024
9.2.18 175 5/14/2024
9.2.17 166 5/14/2024
9.2.16 233 5/14/2024
9.2.15 189 5/13/2024
9.2.14 171 5/13/2024
9.2.13 176 5/13/2024
9.2.12 173 5/12/2024
9.2.11 255 5/11/2024
9.2.10 224 5/10/2024
9.2.9 230 5/9/2024
9.2.8 251 5/7/2024
9.2.7 256 5/7/2024
9.2.6 202 4/29/2024
9.2.5 239 4/25/2024
9.2.4 237 4/22/2024
9.2.3 217 4/19/2024
9.2.2 229 4/19/2024
9.2.1 290 4/17/2024
9.1.13 317 4/16/2024
9.1.12 293 4/16/2024
9.1.11 356 4/16/2024
9.1.10 374 4/14/2024
9.1.9 339 4/14/2024
9.1.8 320 4/12/2024
9.1.7 350 4/12/2024
9.1.6 360 4/12/2024
9.1.5 373 4/11/2024
9.1.4 348 4/11/2024
9.1.3 377 4/11/2024
9.1.2 392 4/10/2024
9.1.1 421 4/9/2024
8.11.12 422 4/9/2024
8.11.11 437 4/3/2024
8.11.10 518 3/29/2024
8.11.9 484 3/28/2024
8.11.8 583 3/26/2024
8.11.7 592 3/25/2024
8.11.6 745 3/21/2024
8.11.5 957 3/13/2024
8.11.4 840 3/10/2024
8.11.3 1,003 3/4/2024
8.11.2 762 3/4/2024
8.11.1 943 3/1/2024
8.10.14 1,061 2/21/2024
8.10.13 1,085 2/20/2024
8.10.12 793 2/20/2024
8.10.11 880 2/20/2024
8.10.10 777 2/20/2024
8.10.9 875 2/20/2024
8.10.8 826 2/20/2024
8.10.7 1,096 2/18/2024
8.10.6 985 2/18/2024
8.10.5 1,439 2/6/2024
8.10.4 1,257 2/6/2024
8.10.3 999 2/4/2024
8.10.2 1,261 2/4/2024
8.10.1 960 2/4/2024
8.9.9 1,170 2/3/2024 8.9.9 is deprecated because it is no longer maintained and has critical bugs.
8.9.8 1,214 2/3/2024 8.9.8 is deprecated because it is no longer maintained and has critical bugs.
8.9.7 1,362 1/26/2024 8.9.7 is deprecated because it is no longer maintained and has critical bugs.
8.9.6 1,050 1/26/2024 8.9.6 is deprecated because it is no longer maintained and has critical bugs.
8.9.5 1,173 1/25/2024 8.9.5 is deprecated because it is no longer maintained and has critical bugs.
8.9.4 1,338 1/25/2024 8.9.4 is deprecated because it is no longer maintained and has critical bugs.
8.9.3 1,281 1/24/2024 8.9.3 is deprecated because it is no longer maintained and has critical bugs.
8.9.2 1,240 1/23/2024 8.9.2 is deprecated because it is no longer maintained and has critical bugs.
8.9.1 1,309 1/23/2024 8.9.1 is deprecated because it is no longer maintained and has critical bugs.
8.9.0 1,169 1/23/2024 8.9.0 is deprecated because it is no longer maintained and has critical bugs.
8.8.9 1,147 1/23/2024 8.8.9 is deprecated because it is no longer maintained and has critical bugs.
8.8.8 1,257 1/22/2024 8.8.8 is deprecated because it is no longer maintained and has critical bugs.
8.8.7 1,039 1/22/2024 8.8.7 is deprecated because it is no longer maintained and has critical bugs.
8.8.6 1,179 1/22/2024 8.8.6 is deprecated because it is no longer maintained and has critical bugs.
8.8.5 1,130 1/22/2024 8.8.5 is deprecated because it is no longer maintained and has critical bugs.
8.8.4 934 1/22/2024 8.8.4 is deprecated because it is no longer maintained and has critical bugs.
8.8.3 1,195 1/22/2024 8.8.3 is deprecated because it is no longer maintained and has critical bugs.
8.8.2 1,193 1/20/2024 8.8.2 is deprecated because it is no longer maintained and has critical bugs.
8.8.1 1,146 1/20/2024 8.8.1 is deprecated because it is no longer maintained and has critical bugs.
8.8.0 1,146 1/20/2024 8.8.0 is deprecated because it is no longer maintained and has critical bugs.
8.7.9 947 1/20/2024 8.7.9 is deprecated because it is no longer maintained and has critical bugs.
8.7.8 1,048 1/20/2024 8.7.8 is deprecated because it is no longer maintained and has critical bugs.
8.7.7 1,080 1/19/2024 8.7.7 is deprecated because it is no longer maintained and has critical bugs.
8.7.6 1,073 1/19/2024 8.7.6 is deprecated because it is no longer maintained and has critical bugs.
8.7.5 1,185 1/19/2024 8.7.5 is deprecated because it is no longer maintained and has critical bugs.
8.7.4 1,150 1/19/2024 8.7.4 is deprecated because it is no longer maintained and has critical bugs.
8.7.3 1,043 1/19/2024 8.7.3 is deprecated because it is no longer maintained and has critical bugs.
8.7.2 1,079 1/19/2024 8.7.2 is deprecated because it is no longer maintained and has critical bugs.
8.7.1 1,065 1/19/2024 8.7.1 is deprecated because it is no longer maintained and has critical bugs.
8.7.0 1,311 1/18/2024 8.7.0 is deprecated because it is no longer maintained and has critical bugs.
8.6.9 993 1/18/2024 8.6.9 is deprecated because it is no longer maintained and has critical bugs.
8.6.8 1,115 1/18/2024 8.6.8 is deprecated because it is no longer maintained and has critical bugs.
8.6.7 1,034 1/18/2024 8.6.7 is deprecated because it is no longer maintained and has critical bugs.
8.6.6 1,136 1/18/2024 8.6.6 is deprecated because it is no longer maintained and has critical bugs.
8.6.5 1,136 1/18/2024 8.6.5 is deprecated because it is no longer maintained and has critical bugs.
8.6.4 1,153 1/17/2024 8.6.4 is deprecated because it is no longer maintained and has critical bugs.
8.6.3 951 1/17/2024 8.6.3 is deprecated because it is no longer maintained and has critical bugs.
8.6.2 1,123 1/17/2024 8.6.2 is deprecated because it is no longer maintained and has critical bugs.
8.6.1 1,158 1/16/2024 8.6.1 is deprecated because it is no longer maintained and has critical bugs.
8.6.0 1,221 1/16/2024 8.6.0 is deprecated because it is no longer maintained and has critical bugs.
8.5.9 1,316 1/16/2024 8.5.9 is deprecated because it is no longer maintained and has critical bugs.
8.5.8 1,293 1/15/2024 8.5.8 is deprecated because it is no longer maintained and has critical bugs.
8.5.7 1,193 1/15/2024 8.5.7 is deprecated because it is no longer maintained and has critical bugs.
8.5.6 1,130 1/15/2024 8.5.6 is deprecated because it is no longer maintained and has critical bugs.
8.5.5 1,101 1/14/2024 8.5.5 is deprecated because it is no longer maintained and has critical bugs.
8.5.4 1,212 1/14/2024 8.5.4 is deprecated because it is no longer maintained and has critical bugs.
8.5.3 1,059 1/13/2024 8.5.3 is deprecated because it is no longer maintained and has critical bugs.
8.5.2 1,205 1/13/2024 8.5.2 is deprecated because it is no longer maintained and has critical bugs.
8.5.1 1,314 1/13/2024 8.5.1 is deprecated because it is no longer maintained and has critical bugs.
8.5.0 1,150 1/12/2024 8.5.0 is deprecated because it is no longer maintained and has critical bugs.
8.4.9 1,442 1/11/2024 8.4.9 is deprecated because it is no longer maintained and has critical bugs.
8.4.8 1,162 1/11/2024 8.4.8 is deprecated because it is no longer maintained and has critical bugs.
8.4.7 1,224 1/10/2024 8.4.7 is deprecated because it is no longer maintained and has critical bugs.
8.4.6 1,186 1/10/2024 8.4.6 is deprecated because it is no longer maintained and has critical bugs.
8.4.5 1,202 1/10/2024 8.4.5 is deprecated because it is no longer maintained and has critical bugs.
8.4.4 1,327 1/9/2024 8.4.4 is deprecated because it is no longer maintained and has critical bugs.
8.4.3 1,392 1/8/2024 8.4.3 is deprecated because it is no longer maintained and has critical bugs.
8.4.2 1,259 1/8/2024 8.4.2 is deprecated because it is no longer maintained and has critical bugs.
8.4.1 1,169 1/8/2024 8.4.1 is deprecated because it is no longer maintained and has critical bugs.
8.4.0 1,321 1/8/2024 8.4.0 is deprecated because it is no longer maintained and has critical bugs.
8.3.9 1,340 1/8/2024 8.3.9 is deprecated because it is no longer maintained and has critical bugs.
8.3.8 1,293 1/8/2024 8.3.8 is deprecated because it is no longer maintained and has critical bugs.
8.3.7 1,250 1/8/2024 8.3.7 is deprecated because it is no longer maintained and has critical bugs.
8.3.6 1,310 1/6/2024 8.3.6 is deprecated because it is no longer maintained and has critical bugs.
8.3.5 1,538 1/5/2024 8.3.5 is deprecated because it is no longer maintained and has critical bugs.
8.3.4 1,381 1/5/2024 8.3.4 is deprecated because it is no longer maintained and has critical bugs.
8.3.3 1,097 1/5/2024 8.3.3 is deprecated because it is no longer maintained and has critical bugs.
8.3.2 1,542 1/5/2024 8.3.2 is deprecated because it is no longer maintained and has critical bugs.
8.3.1 1,253 1/5/2024 8.3.1 is deprecated because it is no longer maintained and has critical bugs.
8.3.0 1,471 1/5/2024 8.3.0 is deprecated because it is no longer maintained and has critical bugs.
8.2.9 1,255 1/5/2024 8.2.9 is deprecated because it is no longer maintained and has critical bugs.
8.2.8 1,228 1/4/2024 8.2.8 is deprecated because it is no longer maintained and has critical bugs.
8.2.7 1,296 1/4/2024 8.2.7 is deprecated because it is no longer maintained and has critical bugs.
8.2.6 1,209 1/4/2024 8.2.6 is deprecated because it is no longer maintained and has critical bugs.
8.2.5 1,184 1/4/2024 8.2.5 is deprecated because it is no longer maintained and has critical bugs.
8.2.4 1,287 1/3/2024 8.2.4 is deprecated because it is no longer maintained and has critical bugs.
8.2.3 1,176 1/3/2024 8.2.3 is deprecated because it is no longer maintained and has critical bugs.
8.2.2 1,358 1/3/2024 8.2.2 is deprecated because it is no longer maintained and has critical bugs.
8.2.1 1,365 1/3/2024 8.2.1 is deprecated because it is no longer maintained and has critical bugs.
8.2.0 1,350 1/2/2024 8.2.0 is deprecated because it is no longer maintained and has critical bugs.
8.1.9 1,404 1/2/2024 8.1.9 is deprecated because it is no longer maintained and has critical bugs.
8.1.8 1,439 12/25/2023 8.1.8 is deprecated because it is no longer maintained and has critical bugs.
8.1.7 1,573 12/18/2023 8.1.7 is deprecated because it is no longer maintained and has critical bugs.
8.1.6 1,421 12/15/2023 8.1.6 is deprecated because it is no longer maintained and has critical bugs.
8.1.5 1,588 12/14/2023 8.1.5 is deprecated because it is no longer maintained and has critical bugs.
8.1.4 1,566 12/14/2023 8.1.4 is deprecated because it is no longer maintained and has critical bugs.
8.1.3 1,370 12/14/2023 8.1.3 is deprecated because it is no longer maintained and has critical bugs.
8.1.2 1,529 12/14/2023 8.1.2 is deprecated because it is no longer maintained and has critical bugs.
8.1.1 1,378 12/14/2023 8.1.1 is deprecated because it is no longer maintained and has critical bugs.
8.1.0 1,461 12/13/2023 8.1.0 is deprecated because it is no longer maintained and has critical bugs.
8.0.9 1,367 12/13/2023 8.0.9 is deprecated because it is no longer maintained and has critical bugs.
8.0.8 1,581 12/13/2023 8.0.8 is deprecated because it is no longer maintained and has critical bugs.
8.0.7 1,557 12/13/2023 8.0.7 is deprecated because it is no longer maintained and has critical bugs.
8.0.6 1,379 12/12/2023 8.0.6 is deprecated because it is no longer maintained and has critical bugs.
8.0.5 1,490 12/12/2023 8.0.5 is deprecated because it is no longer maintained and has critical bugs.
8.0.4 1,457 12/11/2023 8.0.4 is deprecated because it is no longer maintained and has critical bugs.
8.0.3 1,705 12/7/2023 8.0.3 is deprecated because it is no longer maintained and has critical bugs.
8.0.2 1,595 12/6/2023 8.0.2 is deprecated because it is no longer maintained and has critical bugs.
8.0.1 1,503 12/5/2023 8.0.1 is deprecated because it is no longer maintained and has critical bugs.
8.0.0 1,499 12/5/2023 8.0.0 is deprecated because it is no longer maintained and has critical bugs.
7.9.9 1,569 12/5/2023 7.9.9 is deprecated because it is no longer maintained and has critical bugs.
7.9.8 1,467 12/5/2023 7.9.8 is deprecated because it is no longer maintained and has critical bugs.
7.9.7 1,517 12/4/2023 7.9.7 is deprecated because it is no longer maintained and has critical bugs.
7.9.6 1,534 12/4/2023 7.9.6 is deprecated because it is no longer maintained and has critical bugs.
7.9.5 1,502 12/1/2023 7.9.5 is deprecated because it is no longer maintained and has critical bugs.
7.9.4 1,759 11/24/2023 7.9.4 is deprecated because it is no longer maintained and has critical bugs.
7.9.3 1,722 11/24/2023 7.9.3 is deprecated because it is no longer maintained and has critical bugs.
7.9.2 1,453 11/23/2023 7.9.2 is deprecated because it is no longer maintained and has critical bugs.
7.9.1 1,596 11/17/2023 7.9.1 is deprecated because it is no longer maintained and has critical bugs.
7.9.0 1,617 11/17/2023 7.9.0 is deprecated because it is no longer maintained and has critical bugs.
7.8.9 1,380 11/17/2023 7.8.9 is deprecated because it is no longer maintained and has critical bugs.
7.8.8 1,428 11/16/2023 7.8.8 is deprecated because it is no longer maintained and has critical bugs.
7.8.7 1,236 11/16/2023 7.8.7 is deprecated because it is no longer maintained and has critical bugs.
7.8.6 1,179 11/16/2023 7.8.6 is deprecated because it is no longer maintained and has critical bugs.
7.8.5 1,291 11/16/2023 7.8.5 is deprecated because it is no longer maintained and has critical bugs.
7.8.4 1,410 11/15/2023 7.8.4 is deprecated because it is no longer maintained and has critical bugs.
7.8.3 1,384 11/14/2023 7.8.3 is deprecated because it is no longer maintained and has critical bugs.
7.8.2 1,583 11/10/2023 7.8.2 is deprecated because it is no longer maintained and has critical bugs.
7.8.1 1,400 11/10/2023 7.8.1 is deprecated because it is no longer maintained and has critical bugs.
7.8.0 1,454 11/10/2023 7.8.0 is deprecated because it is no longer maintained and has critical bugs.
7.7.9 1,529 11/9/2023 7.7.9 is deprecated because it is no longer maintained and has critical bugs.
7.7.8 1,465 11/9/2023 7.7.8 is deprecated because it is no longer maintained and has critical bugs.
7.7.7 1,369 11/8/2023 7.7.7 is deprecated because it is no longer maintained and has critical bugs.
7.7.6 1,307 11/8/2023 7.7.6 is deprecated because it is no longer maintained and has critical bugs.
7.7.5 1,626 11/7/2023 7.7.5 is deprecated because it is no longer maintained and has critical bugs.
7.7.4 1,469 11/7/2023 7.7.4 is deprecated because it is no longer maintained and has critical bugs.
7.7.3 1,590 11/7/2023 7.7.3 is deprecated because it is no longer maintained and has critical bugs.
7.7.2 1,638 11/7/2023 7.7.2 is deprecated because it is no longer maintained and has critical bugs.
7.7.1 1,415 11/7/2023 7.7.1 is deprecated because it is no longer maintained and has critical bugs.
7.7.0 1,793 11/3/2023 7.7.0 is deprecated because it is no longer maintained and has critical bugs.
7.6.9 1,512 11/3/2023 7.6.9 is deprecated because it is no longer maintained and has critical bugs.
7.6.8 1,531 11/3/2023 7.6.8 is deprecated because it is no longer maintained and has critical bugs.
7.6.7 1,475 11/3/2023 7.6.7 is deprecated because it is no longer maintained and has critical bugs.
7.6.6 1,473 11/2/2023 7.6.6 is deprecated because it is no longer maintained and has critical bugs.
7.6.5 1,724 10/31/2023 7.6.5 is deprecated because it is no longer maintained and has critical bugs.
7.6.4 1,635 10/31/2023 7.6.4 is deprecated because it is no longer maintained and has critical bugs.
7.6.3 1,791 10/30/2023 7.6.3 is deprecated because it is no longer maintained and has critical bugs.
7.6.2 1,758 10/27/2023 7.6.2 is deprecated because it is no longer maintained and has critical bugs.
7.6.1 1,630 10/27/2023 7.6.1 is deprecated because it is no longer maintained and has critical bugs.
7.6.0 1,355 10/27/2023 7.6.0 is deprecated because it is no longer maintained and has critical bugs.
7.5.9 1,449 10/27/2023 7.5.9 is deprecated because it is no longer maintained and has critical bugs.
7.5.8 1,600 10/27/2023 7.5.8 is deprecated because it is no longer maintained and has critical bugs.
7.5.7 1,518 10/26/2023 7.5.7 is deprecated because it is no longer maintained and has critical bugs.
7.5.6 1,613 10/26/2023 7.5.6 is deprecated because it is no longer maintained and has critical bugs.
7.5.5 1,396 10/26/2023 7.5.5 is deprecated because it is no longer maintained and has critical bugs.
7.5.4 1,579 10/26/2023 7.5.4 is deprecated because it is no longer maintained and has critical bugs.
7.5.3 1,415 10/25/2023 7.5.3 is deprecated because it is no longer maintained and has critical bugs.
7.5.2 1,499 10/25/2023 7.5.2 is deprecated because it is no longer maintained and has critical bugs.
7.5.1 1,505 10/25/2023 7.5.1 is deprecated because it is no longer maintained and has critical bugs.
7.5.0 1,519 10/24/2023 7.5.0 is deprecated because it is no longer maintained and has critical bugs.
7.4.9 1,671 10/24/2023 7.4.9 is deprecated because it is no longer maintained and has critical bugs.
7.4.8 1,605 10/24/2023 7.4.8 is deprecated because it is no longer maintained and has critical bugs.
7.4.7 1,637 10/23/2023 7.4.7 is deprecated because it is no longer maintained and has critical bugs.
7.4.6 1,561 10/20/2023 7.4.6 is deprecated because it is no longer maintained and has critical bugs.
7.4.5 1,691 10/20/2023 7.4.5 is deprecated because it is no longer maintained and has critical bugs.
7.4.4 1,708 10/18/2023 7.4.4 is deprecated because it is no longer maintained and has critical bugs.
7.4.3 2,037 10/9/2023 7.4.3 is deprecated because it is no longer maintained and has critical bugs.
7.4.2 1,621 10/8/2023 7.4.2 is deprecated because it is no longer maintained and has critical bugs.
7.4.1 1,394 10/7/2023 7.4.1 is deprecated because it is no longer maintained and has critical bugs.
7.4.0 1,862 9/15/2023 7.4.0 is deprecated because it is no longer maintained and has critical bugs.
7.3.9 1,735 9/15/2023 7.3.9 is deprecated because it is no longer maintained and has critical bugs.
7.3.8 1,842 9/14/2023 7.3.8 is deprecated because it is no longer maintained and has critical bugs.
7.3.7 1,637 9/14/2023 7.3.7 is deprecated because it is no longer maintained and has critical bugs.
7.3.6 1,574 9/14/2023 7.3.6 is deprecated because it is no longer maintained and has critical bugs.
7.3.5 1,873 9/13/2023 7.3.5 is deprecated because it is no longer maintained and has critical bugs.
7.3.4 1,692 9/13/2023 7.3.4 is deprecated because it is no longer maintained and has critical bugs.
7.3.3 1,741 9/13/2023 7.3.3 is deprecated because it is no longer maintained and has critical bugs.
7.3.2 1,496 9/12/2023 7.3.2 is deprecated because it is no longer maintained and has critical bugs.
7.3.1 1,810 9/12/2023 7.3.1 is deprecated because it is no longer maintained and has critical bugs.
7.3.0 1,631 9/12/2023 7.3.0 is deprecated because it is no longer maintained and has critical bugs.
7.2.9 1,840 9/7/2023 7.2.9 is deprecated because it is no longer maintained and has critical bugs.
7.2.8 1,911 9/7/2023 7.2.8 is deprecated because it is no longer maintained and has critical bugs.
7.2.7 1,975 9/6/2023 7.2.7 is deprecated because it is no longer maintained and has critical bugs.
7.2.6 1,749 9/6/2023 7.2.6 is deprecated because it is no longer maintained and has critical bugs.
7.2.5 1,673 9/6/2023 7.2.5 is deprecated because it is no longer maintained and has critical bugs.
7.2.4 1,773 8/31/2023 7.2.4 is deprecated because it is no longer maintained and has critical bugs.
7.2.3 1,609 8/31/2023 7.2.3 is deprecated because it is no longer maintained and has critical bugs.
7.2.2 1,709 8/30/2023 7.2.2 is deprecated because it is no longer maintained and has critical bugs.
7.2.1 1,830 8/30/2023 7.2.1 is deprecated because it is no longer maintained and has critical bugs.
7.2.0 1,710 8/30/2023 7.2.0 is deprecated because it is no longer maintained and has critical bugs.
7.1.9 1,754 8/29/2023 7.1.9 is deprecated because it is no longer maintained and has critical bugs.
7.1.8 1,734 8/29/2023 7.1.8 is deprecated because it is no longer maintained and has critical bugs.
7.1.7 2,023 8/29/2023 7.1.7 is deprecated because it is no longer maintained and has critical bugs.
7.1.6 1,819 8/29/2023 7.1.6 is deprecated because it is no longer maintained and has critical bugs.
7.1.5 1,721 8/28/2023 7.1.5 is deprecated because it is no longer maintained and has critical bugs.
7.1.4 1,829 8/28/2023 7.1.4 is deprecated because it is no longer maintained and has critical bugs.
7.1.3 1,869 8/28/2023 7.1.3 is deprecated because it is no longer maintained and has critical bugs.
7.1.2 1,919 8/25/2023 7.1.2 is deprecated because it is no longer maintained and has critical bugs.
7.1.1 1,734 8/25/2023 7.1.1 is deprecated because it is no longer maintained and has critical bugs.
7.1.0 1,673 8/25/2023 7.1.0 is deprecated because it is no longer maintained and has critical bugs.
7.0.9 2,202 8/25/2023 7.0.9 is deprecated because it is no longer maintained and has critical bugs.
7.0.8 1,849 8/24/2023 7.0.8 is deprecated because it is no longer maintained and has critical bugs.
7.0.7 1,829 8/24/2023 7.0.7 is deprecated because it is no longer maintained and has critical bugs.
7.0.6 1,903 8/24/2023 7.0.6 is deprecated because it is no longer maintained and has critical bugs.
7.0.5 1,940 8/24/2023 7.0.5 is deprecated because it is no longer maintained and has critical bugs.
7.0.4 2,316 8/23/2023 7.0.4 is deprecated because it is no longer maintained and has critical bugs.
7.0.3 2,012 8/23/2023 7.0.3 is deprecated because it is no longer maintained and has critical bugs.
7.0.2 2,140 8/23/2023 7.0.2 is deprecated because it is no longer maintained and has critical bugs.
7.0.1 2,198 8/23/2023 7.0.1 is deprecated because it is no longer maintained and has critical bugs.
7.0.0 2,181 8/22/2023 7.0.0 is deprecated because it is no longer maintained and has critical bugs.