diff --git a/README.md b/README.md index 026794c0..922d933c 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,10 @@ FastAdmin是一款基于ThinkPHP+Bootstrap的极速后台开发框架。 * 多语言支持,服务端及客户端支持 * 支持大文件分片上传、剪切板粘贴上传、拖拽上传,进度条显示,图片上传前压缩 * 支持表格固定列、固定表头、跨页选择、Excel导出、模板渲染等功能 -* 强大的第三方应用模块支持([CMS](https://www.fastadmin.net/store/cms.html)、[博客](https://www.fastadmin.net/store/blog.html)、[知识付费问答](https://www.fastadmin.net/store/ask.html)、[在线投票系统](https://www.fastadmin.net/store/vote.html)、[B2C商城](https://www.fastadmin.net/store/shopro.html)、[B2B2C商城](https://www.fastadmin.net/store/wanlshop.html)) -* 支持CMS、博客、知识付费问答无缝整合[Xunsearch全文搜索](https://www.fastadmin.net/store/xunsearch.html) -* 第三方小程序支持([CMS小程序](https://www.fastadmin.net/store/cms.html)、[预订小程序](https://www.fastadmin.net/store/ball.html)、[问答小程序](https://www.fastadmin.net/store/ask.html)、[点餐小程序](https://www.fastadmin.net/store/unidrink.html)、[B2C小程序](https://www.fastadmin.net/store/shopro.html)、[B2B2C小程序](https://www.fastadmin.net/store/wanlshop.html)、[博客小程序](https://www.fastadmin.net/store/blog.html)) +* 强大的第三方应用模块支持([CMS](https://www.fastadmin.net/store/cms.html)、[CRM](https://www.fastadmin.net/store/facrm.html)、[企业网站管理系统](https://www.fastadmin.net/store/ldcms.html)、[知识库文档系统](https://www.fastadmin.net/store/knowbase.html)、[在线投票系统](https://www.fastadmin.net/store/vote.html)、[B2C商城](https://www.fastadmin.net/store/shopro.html)、[B2B2C商城](https://www.fastadmin.net/store/wanlshop.html)) * 整合第三方短信接口(阿里云、腾讯云短信) -* 无缝整合第三方云存储(七牛云、阿里云OSS、又拍云)功能,支持云储存分片上传 -* 第三方富文本编辑器支持(Summernote、Kindeditor、百度编辑器) +* 无缝整合第三方云存储(七牛云、阿里云OSS、腾讯云存储、又拍云)功能,支持云储存分片上传 +* 第三方富文本编辑器支持(Summernote、百度编辑器) * 第三方登录(QQ、微信、微博)整合 * 第三方支付(微信、支付宝)无缝整合,微信支持PC端扫码支付 * 丰富的插件应用市场 @@ -55,8 +53,7 @@ https://demo.fastadmin.net 在使用中有任何问题,请使用以下联系方式联系我们 -交流社区: https://ask.fastadmin.net - +问答社区: https://ask.fastadmin.net Github: https://github.com/karsonzhang/fastadmin diff --git a/application/admin/command/Install/fastadmin.sql b/application/admin/command/Install/fastadmin.sql index 3168a5e9..e410a055 100755 --- a/application/admin/command/Install/fastadmin.sql +++ b/application/admin/command/Install/fastadmin.sql @@ -452,6 +452,7 @@ CREATE TABLE `fa_user` ( `logintime` bigint(16) DEFAULT NULL COMMENT '登录时间', `loginip` varchar(50) DEFAULT '' COMMENT '登录IP', `loginfailure` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '失败次数', + `loginfailuretime` bigint(16) DEFAULT NULL COMMENT '最后登录失败时间', `joinip` varchar(50) DEFAULT '' COMMENT '加入IP', `jointime` bigint(16) DEFAULT NULL COMMENT '加入时间', `createtime` bigint(16) DEFAULT NULL COMMENT '创建时间', @@ -469,7 +470,7 @@ CREATE TABLE `fa_user` ( -- Records of fa_user -- ---------------------------- BEGIN; -INSERT INTO `fa_user` VALUES (1, 1, 'admin', 'admin', '', '', 'admin@163.com', '13000000000', '', 0, 0, '2017-04-08', '', 0, 0, 1, 1, 1491635035, 1491635035, '127.0.0.1', 0, '127.0.0.1', 1491635035, 0, 1491635035, '', 'normal',''); +INSERT INTO `fa_user` VALUES (1, 1, 'admin', 'admin', '', '', 'admin@163.com', '13000000000', '', 0, 0, '2017-04-08', '', 0, 0, 1, 1, 1491635035, 1491635035, '127.0.0.1', 0, 1491635035,'127.0.0.1', 1491635035, 0, 1491635035, '', 'normal',''); COMMIT; -- ---------------------------- diff --git a/application/config.php b/application/config.php index e793a682..d67e7629 100755 --- a/application/config.php +++ b/application/config.php @@ -302,7 +302,7 @@ return [ //允许跨域的域名,多个以,分隔 'cors_request_domain' => 'localhost,127.0.0.1', //版本号 - 'version' => '1.5.1.20240903', + 'version' => '1.5.2.20240906', //API接口地址 'api_url' => 'https://api.fastadmin.net', ], diff --git a/composer.json b/composer.json index 5d28f782..2d2d2064 100755 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "topthink/think-helper": "^1.0.7", "karsonzhang/fastadmin-addons": "~1.4.0", "overtrue/pinyin": "^3.0", - "phpoffice/phpspreadsheet": "dev-security-patch as 1.29.1", + "phpoffice/phpspreadsheet": "^1.29.1", "overtrue/wechat": "^4.6", "ext-json": "*", "ext-curl": "*",