Plugin Directory

Changeset 2908974


Ignore:
Timestamp:
05/07/2023 02:21:11 AM (3 years ago)
Author:
mediumraredev
Message:

Update to version 1.1.0 from GitHub

Location:
environment-debug-admin-toolbar
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • environment-debug-admin-toolbar/tags/1.1.0/assets/edt.min.css

    r2908302 r2908974  
    1 #wp-admin-bar-edt-group{float:right}#wp-admin-bar-edt-group .env-type-0{background-color:#ea2027}#wp-admin-bar-edt-group .env-type-2{background-color:#8e44ad}#wp-admin-bar-edt-group .env-type-3{background-color:#d35400}#wp-admin-bar-edt-group .env-type-9{background-color:#ea2027}#wp-admin-bar-edt-group .ab-sub-wrapper{right:0}#wp-admin-bar-edt-group .ab-sub-wrapper .ab-item{display:flex!important;justify-content:space-between;gap:1.5rem}#wp-admin-bar-edt-group .ei-value{text-align:right}
     1#wp-admin-bar-edt-group{float:right}#wp-admin-bar-edt-group .env-type-1{background-color:rgba(255,255,255,.1)}#wp-admin-bar-edt-group .env-type-2{background-color:#59b122}#wp-admin-bar-edt-group .env-type-6{background-color:#2271b1}#wp-admin-bar-edt-group .env-type-0,#wp-admin-bar-edt-group .env-type-9{background-color:#b12229}#wp-admin-bar-edt-group .ab-sub-wrapper{right:0}#wp-admin-bar-edt-group .ab-sub-wrapper .ab-item{display:flex!important;justify-content:space-between;gap:1.5rem}#wp-admin-bar-edt-group .ei-value{text-align:right}
  • environment-debug-admin-toolbar/tags/1.1.0/changelog.txt

    r2908302 r2908974  
     12023.05.07 - version 1.1.0
     2 * Updated bar colors.
     3 * Added PHP version.
     4 * Added environment as title to the env type.
     5 * Added filters to set environments to types.
     6 * Added a filter for who sees the bar.
     7 * Made plugin compatible with WP 5.5.
     8 * Made plugin compatible with PHP 7.4.
     9
    1102023.04.10 - version 1.0.0
    211 * Initial release.
  • environment-debug-admin-toolbar/tags/1.1.0/environment-debug-admin-toolbar.php

    r2908302 r2908974  
    1414 * Plugin Name:       Environment Debug Admin Toolbar
    1515 * Description:       Display your environment and debug info in the toolbar.
    16  * Version:           1.0.0
    17  * Requires at least: 6.2
    18  * Requires PHP:      8.0
     16 * Version:           1.1.0
     17 * Requires at least: 5.5
     18 * Requires PHP:      7.4
    1919 * Author:            Medium Rare
    2020 * Author URI:        https://mediumrare.dev/
     
    3030define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) );
    3131
    32 define( 'EDT_VERSION', '1.0.0' );
     32define( 'EDT_VERSION', '1.1.0' );
    3333
    3434/**
     
    7272     *
    7373     * @param  string $env Name of the environment.
    74      * @return integer     Environment type number,
     74     * @return integer     Environment type number.
    7575     */
    7676    private function env_type( $env ) {
     
    7979        }
    8080
    81         switch ( strtolower( $env ) ) {
    82             case 'local':
    83             case 'dev':
    84             case 'develop':
    85             case 'development':
    86                 return 1;
    87             case 'stage':
    88             case 'staging':
    89             case 'test':
    90             case 'testing':
    91             case 'accept':
    92             case 'acceptance':
    93             case 'integration':
    94                 return 2;
    95             case 'prod':
    96             case 'production':
    97             case 'live':
    98                 return 3;
     81        $env = strtolower( $env );
     82
     83        $env_local = apply_filters(
     84            'edt_env_local',
     85            array(
     86                'local',
     87                'development',
     88                'develop',
     89                'dev',
     90            )
     91        );
     92
     93        if ( in_array( $env, $env_local ) ) {
     94            return 1;
     95        }
     96
     97        $env_staging = apply_filters(
     98            'edt_env_staging',
     99            array(
     100                'staging',
     101                'stage',
     102                'testing',
     103                'test',
     104                'acceptance',
     105                'accept',
     106                'integration',
     107            )
     108        );
     109
     110        if ( in_array( $env, $env_staging ) ) {
     111            return 2;
     112        }
     113
     114        $env_production = apply_filters(
     115            'edt_env_production',
     116            array(
     117                'production',
     118                'prod',
     119                'live',
     120            )
     121        );
     122
     123        if ( in_array( $env, $env_production ) ) {
     124            return 6;
     125        }
     126
     127        return 9;
     128    }
     129
     130    /**
     131     * Env_type_label
     132     *
     133     * @param  string $type_id Environment type number.
     134     * @return string          Name of the environment type.
     135     */
     136    private function env_type_label( $type_id ) {
     137        switch ( $type_id ) {
     138            case 0:
     139                return __( 'No Environment Found', 'environment-debug-toolbar' );
     140            case 1:
     141                return __( 'Development', 'environment-debug-toolbar' );
     142            case 2:
     143                return __( 'Staging', 'environment-debug-toolbar' );
     144            case 6:
     145                return __( 'Production', 'environment-debug-toolbar' );
     146            case 9:
     147                return __( 'Unknown Environment', 'environment-debug-toolbar' );
    99148            default:
    100                 return 9;
     149                return '';
    101150        }
    102151    }
     
    155204     */
    156205    public function register_toolbar( $wp_admin_bar ) {
    157         if ( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
     206        if ( ! is_admin() || ! current_user_can( apply_filters( 'edt_capability_check', 'manage_options' ) ) ) {
    158207            return;
    159208        }
    160209
    161         $env  = $this->get_env();
    162         $type = $this->env_type( $env );
    163 
    164         $node_title = match ( $type ) {
    165             0 => __( 'No Environment Found', 'environment-debug-toolbar' ),
    166             1 => __( 'Development', 'environment-debug-toolbar' ),
    167             2 => __( 'Staging', 'environment-debug-toolbar' ),
    168             3 => __( 'Production', 'environment-debug-toolbar' ),
    169             9 => __( 'Unknown Environment', 'environment-debug-toolbar' ),
    170             default => '',
    171         };
     210        $env       = $this->get_env();
     211        $type_id   = $this->env_type( $env );
     212        $type_name = $this->env_type_label( $type_id );
    172213
    173214        $wp_admin_bar->add_group(
     
    180221            array(
    181222                'id'     => 'edt-node',
    182                 'title'  => $node_title,
     223                'title'  => $type_name,
    183224                'parent' => 'edt-group',
    184225                'meta'   => array(
    185                     'class' => 'env-type-' . $type,
     226                    'title' => __( 'Your env is set to:', 'environment-debug-toolbar' ) . ' ' . $this->get_env(),
     227                    'class' => 'env-type-' . $type_id,
    186228                ),
    187229            )
     
    196238        );
    197239
    198         if ( ! WP_DEBUG ) {
    199             return;
     240        if ( WP_DEBUG ) {
     241            $wp_admin_bar->add_node(
     242                array(
     243                    'id'     => 'edt-wp-debug-log',
     244                    'title'  => $this->html_label_value( 'WP_DEBUG_LOG', ( WP_DEBUG_LOG ? 'true' : 'false' ) ),
     245                    'parent' => 'edt-node',
     246                    'meta'   => array(
     247                        'title' => WP_DEBUG_LOG,
     248                    ),
     249                )
     250            );
     251
     252            $wp_admin_bar->add_node(
     253                array(
     254                    'id'     => 'edt-wp-debug-display',
     255                    'title'  => $this->html_label_value( 'WP_DEBUG_DISPLAY', ( WP_DEBUG_DISPLAY ? 'true' : 'false' ) ),
     256                    'parent' => 'edt-node',
     257                )
     258            );
     259
     260            $wp_admin_bar->add_node(
     261                array(
     262                    'id'     => 'edt-script-display',
     263                    'title'  => $this->html_label_value( 'SCRIPT_DEBUG', ( SCRIPT_DEBUG ? 'true' : 'false' ) ),
     264                    'parent' => 'edt-node',
     265                )
     266            );
     267
     268            $wp_admin_bar->add_node(
     269                array(
     270                    'id'     => 'edt-savequeries',
     271                    'title'  => $this->html_label_value( 'SAVEQUERIES', ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ? 'true' : 'false' ) ),
     272                    'parent' => 'edt-node',
     273                )
     274            );
    200275        }
    201276
    202277        $wp_admin_bar->add_node(
    203278            array(
    204                 'id'     => 'edt-wp-debug-log',
    205                 'title'  => $this->html_label_value( 'WP_DEBUG_LOG', ( WP_DEBUG_LOG ? 'true' : 'false' ) ),
    206                 'parent' => 'edt-node',
    207             )
    208         );
    209 
    210         $wp_admin_bar->add_node(
    211             array(
    212                 'id'     => 'edt-wp-debug-display',
    213                 'title'  => $this->html_label_value( 'WP_DEBUG_DISPLAY', ( WP_DEBUG_DISPLAY ? 'true' : 'false' ) ),
    214                 'parent' => 'edt-node',
    215             )
    216         );
    217 
    218         $wp_admin_bar->add_node(
    219             array(
    220                 'id'     => 'edt-script-display',
    221                 'title'  => $this->html_label_value( 'SCRIPT_DEBUG', ( SCRIPT_DEBUG ? 'true' : 'false' ) ),
    222                 'parent' => 'edt-node',
    223             )
    224         );
    225 
    226         $wp_admin_bar->add_node(
    227             array(
    228                 'id'     => 'edt-savequeries',
    229                 'title'  => $this->html_label_value( 'SAVEQUERIES', ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ? 'true' : 'false' ) ),
     279                'id'     => 'edt-php',
     280                'title'  => $this->html_label_value( 'PHP', phpversion() ),
    230281                'parent' => 'edt-node',
    231282            )
  • environment-debug-admin-toolbar/tags/1.1.0/languages/environment-debug-admin-toolbar.pot

    r2908302 r2908974  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Environment Debug Admin Toolbar 1.0.0\n"
     5"Project-Id-Version: Environment Debug Admin Toolbar 1.1.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/environment-debug-admin-toolbar\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-04-10T14:21:15+00:00\n"
     12"POT-Creation-Date: 2023-05-07T01:46:50+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.7.1\n"
     
    3131msgstr ""
    3232
    33 #: environment-debug-admin-toolbar.php:165
     33#: environment-debug-admin-toolbar.php:139
    3434msgid "No Environment Found"
    3535msgstr ""
    3636
    37 #: environment-debug-admin-toolbar.php:166
     37#: environment-debug-admin-toolbar.php:141
    3838msgid "Development"
    3939msgstr ""
    4040
    41 #: environment-debug-admin-toolbar.php:167
     41#: environment-debug-admin-toolbar.php:143
    4242msgid "Staging"
    4343msgstr ""
    4444
    45 #: environment-debug-admin-toolbar.php:168
     45#: environment-debug-admin-toolbar.php:145
    4646msgid "Production"
    4747msgstr ""
    4848
    49 #: environment-debug-admin-toolbar.php:169
     49#: environment-debug-admin-toolbar.php:147
    5050msgid "Unknown Environment"
    5151msgstr ""
     52
     53#: environment-debug-admin-toolbar.php:226
     54msgid "Your env is set to:"
     55msgstr ""
  • environment-debug-admin-toolbar/tags/1.1.0/readme.txt

    r2908746 r2908974  
    22Contributors: mediumraredev, brugman
    33Tags: environment, env, debug, staging, production
    4 Requires at least: 6.2
     4Requires at least: 5.5
    55Tested up to: 6.2
    6 Stable tag: 1.0.0
     6Stable tag: 1.1.0
    77License: GPLv3
    88
     
    3030== Changelog ==
    3131
     32= 1.1.0 =
     33* Updated bar colors.
     34* Added PHP version.
     35* Added environment as title to the env type.
     36* Added filters to set environments to types.
     37* Added a filter for who sees the bar.
     38* Made plugin compatible with WP 5.5.
     39* Made plugin compatible with PHP 7.4.
     40
    3241= 1.0.0 =
    3342* Initial release.
  • environment-debug-admin-toolbar/trunk/assets/edt.min.css

    r2908302 r2908974  
    1 #wp-admin-bar-edt-group{float:right}#wp-admin-bar-edt-group .env-type-0{background-color:#ea2027}#wp-admin-bar-edt-group .env-type-2{background-color:#8e44ad}#wp-admin-bar-edt-group .env-type-3{background-color:#d35400}#wp-admin-bar-edt-group .env-type-9{background-color:#ea2027}#wp-admin-bar-edt-group .ab-sub-wrapper{right:0}#wp-admin-bar-edt-group .ab-sub-wrapper .ab-item{display:flex!important;justify-content:space-between;gap:1.5rem}#wp-admin-bar-edt-group .ei-value{text-align:right}
     1#wp-admin-bar-edt-group{float:right}#wp-admin-bar-edt-group .env-type-1{background-color:rgba(255,255,255,.1)}#wp-admin-bar-edt-group .env-type-2{background-color:#59b122}#wp-admin-bar-edt-group .env-type-6{background-color:#2271b1}#wp-admin-bar-edt-group .env-type-0,#wp-admin-bar-edt-group .env-type-9{background-color:#b12229}#wp-admin-bar-edt-group .ab-sub-wrapper{right:0}#wp-admin-bar-edt-group .ab-sub-wrapper .ab-item{display:flex!important;justify-content:space-between;gap:1.5rem}#wp-admin-bar-edt-group .ei-value{text-align:right}
  • environment-debug-admin-toolbar/trunk/changelog.txt

    r2908302 r2908974  
     12023.05.07 - version 1.1.0
     2 * Updated bar colors.
     3 * Added PHP version.
     4 * Added environment as title to the env type.
     5 * Added filters to set environments to types.
     6 * Added a filter for who sees the bar.
     7 * Made plugin compatible with WP 5.5.
     8 * Made plugin compatible with PHP 7.4.
     9
    1102023.04.10 - version 1.0.0
    211 * Initial release.
  • environment-debug-admin-toolbar/trunk/environment-debug-admin-toolbar.php

    r2908302 r2908974  
    1414 * Plugin Name:       Environment Debug Admin Toolbar
    1515 * Description:       Display your environment and debug info in the toolbar.
    16  * Version:           1.0.0
    17  * Requires at least: 6.2
    18  * Requires PHP:      8.0
     16 * Version:           1.1.0
     17 * Requires at least: 5.5
     18 * Requires PHP:      7.4
    1919 * Author:            Medium Rare
    2020 * Author URI:        https://mediumrare.dev/
     
    3030define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) );
    3131
    32 define( 'EDT_VERSION', '1.0.0' );
     32define( 'EDT_VERSION', '1.1.0' );
    3333
    3434/**
     
    7272     *
    7373     * @param  string $env Name of the environment.
    74      * @return integer     Environment type number,
     74     * @return integer     Environment type number.
    7575     */
    7676    private function env_type( $env ) {
     
    7979        }
    8080
    81         switch ( strtolower( $env ) ) {
    82             case 'local':
    83             case 'dev':
    84             case 'develop':
    85             case 'development':
    86                 return 1;
    87             case 'stage':
    88             case 'staging':
    89             case 'test':
    90             case 'testing':
    91             case 'accept':
    92             case 'acceptance':
    93             case 'integration':
    94                 return 2;
    95             case 'prod':
    96             case 'production':
    97             case 'live':
    98                 return 3;
     81        $env = strtolower( $env );
     82
     83        $env_local = apply_filters(
     84            'edt_env_local',
     85            array(
     86                'local',
     87                'development',
     88                'develop',
     89                'dev',
     90            )
     91        );
     92
     93        if ( in_array( $env, $env_local ) ) {
     94            return 1;
     95        }
     96
     97        $env_staging = apply_filters(
     98            'edt_env_staging',
     99            array(
     100                'staging',
     101                'stage',
     102                'testing',
     103                'test',
     104                'acceptance',
     105                'accept',
     106                'integration',
     107            )
     108        );
     109
     110        if ( in_array( $env, $env_staging ) ) {
     111            return 2;
     112        }
     113
     114        $env_production = apply_filters(
     115            'edt_env_production',
     116            array(
     117                'production',
     118                'prod',
     119                'live',
     120            )
     121        );
     122
     123        if ( in_array( $env, $env_production ) ) {
     124            return 6;
     125        }
     126
     127        return 9;
     128    }
     129
     130    /**
     131     * Env_type_label
     132     *
     133     * @param  string $type_id Environment type number.
     134     * @return string          Name of the environment type.
     135     */
     136    private function env_type_label( $type_id ) {
     137        switch ( $type_id ) {
     138            case 0:
     139                return __( 'No Environment Found', 'environment-debug-toolbar' );
     140            case 1:
     141                return __( 'Development', 'environment-debug-toolbar' );
     142            case 2:
     143                return __( 'Staging', 'environment-debug-toolbar' );
     144            case 6:
     145                return __( 'Production', 'environment-debug-toolbar' );
     146            case 9:
     147                return __( 'Unknown Environment', 'environment-debug-toolbar' );
    99148            default:
    100                 return 9;
     149                return '';
    101150        }
    102151    }
     
    155204     */
    156205    public function register_toolbar( $wp_admin_bar ) {
    157         if ( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
     206        if ( ! is_admin() || ! current_user_can( apply_filters( 'edt_capability_check', 'manage_options' ) ) ) {
    158207            return;
    159208        }
    160209
    161         $env  = $this->get_env();
    162         $type = $this->env_type( $env );
    163 
    164         $node_title = match ( $type ) {
    165             0 => __( 'No Environment Found', 'environment-debug-toolbar' ),
    166             1 => __( 'Development', 'environment-debug-toolbar' ),
    167             2 => __( 'Staging', 'environment-debug-toolbar' ),
    168             3 => __( 'Production', 'environment-debug-toolbar' ),
    169             9 => __( 'Unknown Environment', 'environment-debug-toolbar' ),
    170             default => '',
    171         };
     210        $env       = $this->get_env();
     211        $type_id   = $this->env_type( $env );
     212        $type_name = $this->env_type_label( $type_id );
    172213
    173214        $wp_admin_bar->add_group(
     
    180221            array(
    181222                'id'     => 'edt-node',
    182                 'title'  => $node_title,
     223                'title'  => $type_name,
    183224                'parent' => 'edt-group',
    184225                'meta'   => array(
    185                     'class' => 'env-type-' . $type,
     226                    'title' => __( 'Your env is set to:', 'environment-debug-toolbar' ) . ' ' . $this->get_env(),
     227                    'class' => 'env-type-' . $type_id,
    186228                ),
    187229            )
     
    196238        );
    197239
    198         if ( ! WP_DEBUG ) {
    199             return;
     240        if ( WP_DEBUG ) {
     241            $wp_admin_bar->add_node(
     242                array(
     243                    'id'     => 'edt-wp-debug-log',
     244                    'title'  => $this->html_label_value( 'WP_DEBUG_LOG', ( WP_DEBUG_LOG ? 'true' : 'false' ) ),
     245                    'parent' => 'edt-node',
     246                    'meta'   => array(
     247                        'title' => WP_DEBUG_LOG,
     248                    ),
     249                )
     250            );
     251
     252            $wp_admin_bar->add_node(
     253                array(
     254                    'id'     => 'edt-wp-debug-display',
     255                    'title'  => $this->html_label_value( 'WP_DEBUG_DISPLAY', ( WP_DEBUG_DISPLAY ? 'true' : 'false' ) ),
     256                    'parent' => 'edt-node',
     257                )
     258            );
     259
     260            $wp_admin_bar->add_node(
     261                array(
     262                    'id'     => 'edt-script-display',
     263                    'title'  => $this->html_label_value( 'SCRIPT_DEBUG', ( SCRIPT_DEBUG ? 'true' : 'false' ) ),
     264                    'parent' => 'edt-node',
     265                )
     266            );
     267
     268            $wp_admin_bar->add_node(
     269                array(
     270                    'id'     => 'edt-savequeries',
     271                    'title'  => $this->html_label_value( 'SAVEQUERIES', ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ? 'true' : 'false' ) ),
     272                    'parent' => 'edt-node',
     273                )
     274            );
    200275        }
    201276
    202277        $wp_admin_bar->add_node(
    203278            array(
    204                 'id'     => 'edt-wp-debug-log',
    205                 'title'  => $this->html_label_value( 'WP_DEBUG_LOG', ( WP_DEBUG_LOG ? 'true' : 'false' ) ),
    206                 'parent' => 'edt-node',
    207             )
    208         );
    209 
    210         $wp_admin_bar->add_node(
    211             array(
    212                 'id'     => 'edt-wp-debug-display',
    213                 'title'  => $this->html_label_value( 'WP_DEBUG_DISPLAY', ( WP_DEBUG_DISPLAY ? 'true' : 'false' ) ),
    214                 'parent' => 'edt-node',
    215             )
    216         );
    217 
    218         $wp_admin_bar->add_node(
    219             array(
    220                 'id'     => 'edt-script-display',
    221                 'title'  => $this->html_label_value( 'SCRIPT_DEBUG', ( SCRIPT_DEBUG ? 'true' : 'false' ) ),
    222                 'parent' => 'edt-node',
    223             )
    224         );
    225 
    226         $wp_admin_bar->add_node(
    227             array(
    228                 'id'     => 'edt-savequeries',
    229                 'title'  => $this->html_label_value( 'SAVEQUERIES', ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ? 'true' : 'false' ) ),
     279                'id'     => 'edt-php',
     280                'title'  => $this->html_label_value( 'PHP', phpversion() ),
    230281                'parent' => 'edt-node',
    231282            )
  • environment-debug-admin-toolbar/trunk/languages/environment-debug-admin-toolbar.pot

    r2908302 r2908974  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Environment Debug Admin Toolbar 1.0.0\n"
     5"Project-Id-Version: Environment Debug Admin Toolbar 1.1.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/environment-debug-admin-toolbar\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-04-10T14:21:15+00:00\n"
     12"POT-Creation-Date: 2023-05-07T01:46:50+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.7.1\n"
     
    3131msgstr ""
    3232
    33 #: environment-debug-admin-toolbar.php:165
     33#: environment-debug-admin-toolbar.php:139
    3434msgid "No Environment Found"
    3535msgstr ""
    3636
    37 #: environment-debug-admin-toolbar.php:166
     37#: environment-debug-admin-toolbar.php:141
    3838msgid "Development"
    3939msgstr ""
    4040
    41 #: environment-debug-admin-toolbar.php:167
     41#: environment-debug-admin-toolbar.php:143
    4242msgid "Staging"
    4343msgstr ""
    4444
    45 #: environment-debug-admin-toolbar.php:168
     45#: environment-debug-admin-toolbar.php:145
    4646msgid "Production"
    4747msgstr ""
    4848
    49 #: environment-debug-admin-toolbar.php:169
     49#: environment-debug-admin-toolbar.php:147
    5050msgid "Unknown Environment"
    5151msgstr ""
     52
     53#: environment-debug-admin-toolbar.php:226
     54msgid "Your env is set to:"
     55msgstr ""
  • environment-debug-admin-toolbar/trunk/readme.txt

    r2908746 r2908974  
    22Contributors: mediumraredev, brugman
    33Tags: environment, env, debug, staging, production
    4 Requires at least: 6.2
     4Requires at least: 5.5
    55Tested up to: 6.2
    6 Stable tag: 1.0.0
     6Stable tag: 1.1.0
    77License: GPLv3
    88
     
    3030== Changelog ==
    3131
     32= 1.1.0 =
     33* Updated bar colors.
     34* Added PHP version.
     35* Added environment as title to the env type.
     36* Added filters to set environments to types.
     37* Added a filter for who sees the bar.
     38* Made plugin compatible with WP 5.5.
     39* Made plugin compatible with PHP 7.4.
     40
    3241= 1.0.0 =
    3342* Initial release.
Note: See TracChangeset for help on using the changeset viewer.