diff --git a/README.md b/README.md index 97ec773b28a8e168c9698418c7e2d4e3320a4a51..1f56019d1a03ecc016cfd671527c9782c550c4e4 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ | ---------- | ------------------------------------------------------------ | | 中文名称 | 腾讯云验证码(CAPTCHA)插件 | | 英文名称 | tencentcloud-captcha | -| 最新版本 | v1.0.0 (2020.06.23) | +| 最新版本 | v1.0.1 (2020.12.11) | | 适用平台 | [WordPress](https://wordpress.org/) | | 适用产品 | [腾讯云验证码](https://cloud.tencent.com/document/product/1110/36334) | | GitHub项目 | [tencentcloud-wordpress-plugin-captcha](https://github.com/Tencent-Cloud-Plugins/tencentcloud-wordpress-plugin-captcha) | @@ -107,8 +107,11 @@ ## 7.GitHub版本迭代记录 -### 7.1 tencentcloud-wordpress-plugin-captcha v1.0.0 +### 2020.12.11 tencentcloud-wordpress-plugin-captcha v1.0.1 +- 支持在windows环境下运行 + +### 2020.6.23 tencentcloud-wordpress-plugin-captcha v1.0.0 - 支持在注册表单中增加验证码 - 支持在评论表单中增加验证码 - 支持用户自定义业务场景 diff --git a/tencentcloud-captcha/common/common.json b/tencentcloud-captcha/common/common.json index c6b93faecede6780007c884df6cfdb9749765769..9fe0c22b7af668c41bc34040cd555d0c5fbe3fa0 100644 --- a/tencentcloud-captcha/common/common.json +++ b/tencentcloud-captcha/common/common.json @@ -1,4 +1,4 @@ { "version": "1.0.0", "log_server_url": "https://appdata.qq.com/upload" -} +} \ No newline at end of file diff --git a/tencentcloud-captcha/readme.txt b/tencentcloud-captcha/readme.txt index 3808de47214652768c6a6df1741d0de47ad39e50..7627eefe1928d9b5dc747ca06521a2fb901463cd 100644 --- a/tencentcloud-captcha/readme.txt +++ b/tencentcloud-captcha/readme.txt @@ -1,11 +1,10 @@ === 腾讯云验证码 (CAPTCHA) === Contributors: Tencent -Donate link: https://www.tencent.com/ Tags:tencent,tencentcloud,qcloud,春雨,腾讯云CAPTCHA,腾讯云验证码,腾讯云,验证码 -Requires at least: 4.5.0 +Requires at least: 5.0 Tested up to: 5.4.1 -Stable tag: 1.1 +Stable tag: 1.0.1 License:Apache 2.0 License URI:http://www.apache.org/licenses/LICENSE-2.0 @@ -46,9 +45,12 @@ License URI:http://www.apache.org/licenses/LICENSE-2.0 == Changelog == -= 1.0 = += 1.0.0 = * 1、支持登录表单增加验证码; * 2、支持注册表单增加验证码; * 3、支持评论表单增加验证码; * 4、支持忘记密码表单增加验证码; -* 5、支持场景自定义 \ No newline at end of file +* 5、支持场景自定义 + += 1.0.1 = +* 1、支持在windows环境下运行 \ No newline at end of file diff --git a/tencentcloud-captcha/tencentcloud-captcha-setting-page.php b/tencentcloud-captcha/tencentcloud-captcha-setting-page.php index e524710afb7b5805d42810405a8f786a796fde49..e0d2b2f055086ffa67aa5862343c366521009ddd 100644 --- a/tencentcloud-captcha/tencentcloud-captcha-setting-page.php +++ b/tencentcloud-captcha/tencentcloud-captcha-setting-page.php @@ -226,6 +226,6 @@ $lostpasswordCodeKey = esc_attr($codeVerifySettings['captcha_lostpassword_app_ke
diff --git a/tencentcloud-captcha/tencentcloud-captcha.php b/tencentcloud-captcha/tencentcloud-captcha.php index 205c97ca7a19148f3dd931d19d17a79bf58d3e80..589b2a184111bee14622ba4c3146efe9f59b7e5c 100644 --- a/tencentcloud-captcha/tencentcloud-captcha.php +++ b/tencentcloud-captcha/tencentcloud-captcha.php @@ -3,7 +3,7 @@ * Plugin Name: tencentcloud-captcha * Plugin URI: https://wordpress.org/plugins/tencentcloud-captcha * Description: 通过腾讯云验证码提供立体、全面的人机验证。 - * Version: 1.0.0 + * Version: 1.0.1 * Author: 腾讯云 * Author URI: https://www.tencent.com/ * Copyright (C) 2020 Tencent Cloud. @@ -22,17 +22,17 @@ */ -define( 'TENCENT_WORDPRESS_CAPTCHA_VERSION', 1.0 ); +define( 'TENCENT_WORDPRESS_CAPTCHA_VERSION', '1.0.1' ); define( 'TENCENT_WORDPRESS_CAPTCHA_DIR', plugin_dir_path( __FILE__ ) ); define( 'TENCNET_WORDPRESS_CAPTCHA_BASENAME', plugin_basename(__FILE__) ); define( 'TENCENT_WORDPRESS_CAPTCHA_JS_DIR', plugins_url( 'tencentcloud-captcha' ) . '/' . 'js' . '/' ); -define( 'TENCENT_WORDPRESS_CAPTCHA_CSS_DIR', plugins_url( 'tencentcloud-captcha' ) . '/'.'css'.'/' ); +define( 'TENCENT_WORDPRESS_CAPTCHA_CSS_DIR', plugins_url( 'tencentcloud-captcha' ) . '/' . 'css' . '/' ); define( 'TENCENT_WORDPRESS_CAPTCHA_NAME', 'tencentcloud-captcha'); define( 'TENCENT_WORDPRESS_CAPTCHA_SHOW_NAME', 'tencentcloud-captcha'); -defined('TENCENT_WORDPRESS_CAPTCHA_URL') or define('TENCENT_WORDPRESS_CAPTCHA_URL', plugins_url(TENCENT_WORDPRESS_CAPTCHA_NAME) . DIRECTORY_SEPARATOR); +defined('TENCENT_WORDPRESS_CAPTCHA_URL') or define('TENCENT_WORDPRESS_CAPTCHA_URL', plugins_url(TENCENT_WORDPRESS_CAPTCHA_NAME) . '/'); -defined('TENCENT_WORDPRESS_PLUGINS_COMMON_URL') or define('TENCENT_WORDPRESS_PLUGINS_COMMON_URL', TENCENT_WORDPRESS_CAPTCHA_URL . 'common' . DIRECTORY_SEPARATOR); -defined('TENCENT_WORDPRESS_PLUGINS_COMMON_CSS_URL') or define('TENCENT_WORDPRESS_PLUGINS_COMMON_CSS_URL', TENCENT_WORDPRESS_PLUGINS_COMMON_URL . 'css' . DIRECTORY_SEPARATOR); +defined('TENCENT_WORDPRESS_PLUGINS_COMMON_URL') or define('TENCENT_WORDPRESS_PLUGINS_COMMON_URL', TENCENT_WORDPRESS_CAPTCHA_URL . 'common' . '/'); +defined('TENCENT_WORDPRESS_PLUGINS_COMMON_CSS_URL') or define('TENCENT_WORDPRESS_PLUGINS_COMMON_CSS_URL', TENCENT_WORDPRESS_PLUGINS_COMMON_URL . 'css' . '/'); defined('TENCENT_WORDPRESS_PLUGINS_COMMON_DIR') or define('TENCENT_WORDPRESS_PLUGINS_COMMON_DIR', TENCENT_WORDPRESS_CAPTCHA_DIR . 'common' . '/'); require_once 'TencentCloudCaptchaActions.php';