Plugin Directory

Changeset 3185321


Ignore:
Timestamp:
11/11/2024 02:19:00 AM (16 months ago)
Author:
mxp
Message:

update 3.3.2

Location:
mxp-dev-tools
Files:
1 deleted
5 edited
8 copied

Legend:

Unmodified
Added
Removed
  • mxp-dev-tools/tags/3.3.2/index.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939    use SearchReplace;
    4040    use Utility;
    41     static $VERSION = '3.3.1';
     41    static $VERSION = '3.3.2';
    4242    private $themeforest_api_base_url = 'https://api.envato.com/v3';
    4343    protected static $instance = null;
  • mxp-dev-tools/tags/3.3.2/mxp-login-path.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/tags/3.3.2/mxp-site-manager.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939class MDTSiteManager {
    4040    public $plugin_slug = 'mdt-site-manager';
    41     public static $VERSION = '3.3.1';
     41    public static $VERSION = '3.3.2';
    4242
    4343    public function __construct() {
  • mxp-dev-tools/tags/3.3.2/mxp-snippets.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    415415
    416416    public function basic_auth_protect() {
    417         if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in()) {
     417        if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in() && apply_filters('mxp_dev_basic_auth_bypass_check', true)) {
    418418            // 設定用戶名稱與密碼
    419419            $username = MDT_BASIC_AUTH_USERNAME;
  • mxp-dev-tools/tags/3.3.2/readme.txt

    r3184907 r3185321  
    66Requires PHP: 5.6
    77Tested up to: 6.7
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7777
    7878== Changelog ==
     79
     80= 3.3.2 =
     81
     82* 新增過濾的 filter `mxp_dev_basic_auth_bypass_check` 處理如果不想透過 Basic Auth 驗證封鎖的前端頁面判斷功能
    7983
    8084= 3.3.1 =
  • mxp-dev-tools/trunk/index.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939    use SearchReplace;
    4040    use Utility;
    41     static $VERSION = '3.3.1';
     41    static $VERSION = '3.3.2';
    4242    private $themeforest_api_base_url = 'https://api.envato.com/v3';
    4343    protected static $instance = null;
  • mxp-dev-tools/trunk/mxp-login-path.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
  • mxp-dev-tools/trunk/mxp-site-manager.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    3939class MDTSiteManager {
    4040    public $plugin_slug = 'mdt-site-manager';
    41     public static $VERSION = '3.3.1';
     41    public static $VERSION = '3.3.2';
    4242
    4343    public function __construct() {
  • mxp-dev-tools/trunk/mxp-snippets.php

    r3184907 r3185321  
    77 * Requires PHP: 5.6
    88 * Tested up to: 6.7
    9  * Stable tag: 3.3.1
    10  * Version: 3.3.1
     9 * Stable tag: 3.3.2
     10 * Version: 3.3.2
    1111 * Author: Chun
    1212 * Author URI: https://www.mxp.tw/contact/
     
    415415
    416416    public function basic_auth_protect() {
    417         if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in()) {
     417        if (MDT_BASIC_AUTH_USERNAME != "" && MDT_BASIC_AUTH_PASSWORD != "" && !is_user_logged_in() && apply_filters('mxp_dev_basic_auth_bypass_check', true)) {
    418418            // 設定用戶名稱與密碼
    419419            $username = MDT_BASIC_AUTH_USERNAME;
  • mxp-dev-tools/trunk/readme.txt

    r3184907 r3185321  
    66Requires PHP: 5.6
    77Tested up to: 6.7
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7777
    7878== Changelog ==
     79
     80= 3.3.2 =
     81
     82* 新增過濾的 filter `mxp_dev_basic_auth_bypass_check` 處理如果不想透過 Basic Auth 驗證封鎖的前端頁面判斷功能
    7983
    8084= 3.3.1 =
Note: See TracChangeset for help on using the changeset viewer.