Skip to content

Commit b6e2bed

Browse files
committed
新增:升级基础
1 parent fccc30e commit b6e2bed

File tree

13 files changed

+51
-34
lines changed

13 files changed

+51
-34
lines changed

app/Constant/AppConstant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ class AppConstant
66
{
77
const APP = 'cms';
88
const APP_NAME = 'ModStartCMS';
9-
const VERSION = '9.3.0';
9+
const VERSION = '9.4.0';
1010
}
1111

module/CaptchaTecmz/Admin/Controller/ConfigController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ class ConfigController extends Controller
1010
{
1111
public function setting(AdminConfigBuilder $builder)
1212
{
13-
$builder->pageTitle('魔众智能验证码');
14-
$builder->display('CaptchaTecmz_Remark', '说明')->addable(true)
15-
->help('<div>访问 <a href="' . TecmzUtil::url() . '" target="_blank">' . TecmzUtil::url() . '</a> 申请</div>');
13+
$builder->pageTitle('智能验证码');
1614
$builder->text('CaptchaTecmz_AppId', 'AppId');
1715
$builder->text('CaptchaTecmz_AppSecret', 'AppSecret');
16+
$builder->display('_', '')->addable(true)
17+
->help('<div>访问 <a href="' . TecmzUtil::url('Captcha') . '" target="_blank">' . TecmzUtil::url('Captcha') . '</a> 申请</div>');
1818
return $builder->perform();
1919
}
2020

module/CaptchaTecmz/Core/ModuleServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function boot(Dispatcher $events)
2828
'title' => '接口设置',
2929
'children' => [
3030
[
31-
'title' => '魔众智能验证码',
31+
'title' => '智能验证码',
3232
'url' => '\Module\CaptchaTecmz\Admin\Controller\ConfigController@setting',
3333
],
3434
]

module/CaptchaTecmz/Docs/module/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 模块介绍
22

3-
魔众智能验证码」提供了一个基于人机交互的智能验证服务。
3+
智能验证码」提供了一个基于人机交互的智能验证服务。
44

55
## 功能特性
66

@@ -25,4 +25,4 @@
2525
防止自动机、爬虫盗取网页内容和数据
2626

2727

28-
{ADMIN_MENUS}
28+
{ADMIN_MENUS}

module/CaptchaTecmz/Docs/release.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.4.1 验证码功能优化
2+
3+
- 优化:验证码功能优化
4+
5+
---
6+
17
## 1.4.0 智能验证码日志记录功能
28

39
- 新增:智能验证码日志记录功能

module/CaptchaTecmz/Provider/TecmzCaptchaProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function name()
2222

2323
public function title()
2424
{
25-
return '魔众智能验证码';
25+
return '智能验证码';
2626
}
2727

2828
public function render()

module/CaptchaTecmz/config.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "CaptchaTecmz",
3-
"title": "魔众智能验证码",
3+
"title": "智能验证码",
44
"require": [
55
"Vendor:>=1.1.0"
66
],
@@ -14,13 +14,11 @@
1414
"Admin"
1515
],
1616
"tags": [
17-
"人工智能",
18-
"验证码",
19-
"API驱动"
17+
"安全"
2018
],
21-
"version": "1.4.0",
19+
"version": "1.4.1",
2220
"author": "ModStart",
23-
"description": "提供魔众智能验证码验证服务",
21+
"description": "提供智能验证码验证服务",
2422
"providers": [],
2523
"config": {},
2624
"modstartVersion": ">=4.1.0"

public/asset/theme/default/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modstart/modstart/asset/theme/default/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modstart/modstart/resources/asset/src/sui/base/component/form.less

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,6 @@ input:not([type]).form {
321321
font-size: 0.65rem;
322322
}
323323

324-
select.form-lg,
325324
textarea.form-lg,
326325
input[type].form-lg,
327326
input:not([type]).form-lg {
@@ -330,6 +329,12 @@ input:not([type]).form-lg {
330329
font-size: 0.8rem;
331330
}
332331

332+
333+
select.form-lg{
334+
height: 2rem;
335+
font-size: 0.8rem;
336+
}
337+
333338
select.form-sm,
334339
textarea.form-sm,
335340
input[type].form-sm,

0 commit comments

Comments
 (0)