Changeset 2908974
- Timestamp:
- 05/07/2023 02:21:11 AM (3 years ago)
- Location:
- environment-debug-admin-toolbar
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.0 (copied) (copied from environment-debug-admin-toolbar/trunk)
-
tags/1.1.0/assets/edt.min.css (modified) (1 diff)
-
tags/1.1.0/changelog.txt (modified) (1 diff)
-
tags/1.1.0/environment-debug-admin-toolbar.php (modified) (7 diffs)
-
tags/1.1.0/languages/environment-debug-admin-toolbar.pot (modified) (3 diffs)
-
tags/1.1.0/readme.txt (modified) (2 diffs)
-
trunk/assets/edt.min.css (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/environment-debug-admin-toolbar.php (modified) (7 diffs)
-
trunk/languages/environment-debug-admin-toolbar.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
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 1 2023.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 1 10 2023.04.10 - version 1.0.0 2 11 * Initial release. -
environment-debug-admin-toolbar/tags/1.1.0/environment-debug-admin-toolbar.php
r2908302 r2908974 14 14 * Plugin Name: Environment Debug Admin Toolbar 15 15 * Description: Display your environment and debug info in the toolbar. 16 * Version: 1. 0.017 * Requires at least: 6.218 * Requires PHP: 8.016 * Version: 1.1.0 17 * Requires at least: 5.5 18 * Requires PHP: 7.4 19 19 * Author: Medium Rare 20 20 * Author URI: https://mediumrare.dev/ … … 30 30 define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) ); 31 31 32 define( 'EDT_VERSION', '1. 0.0' );32 define( 'EDT_VERSION', '1.1.0' ); 33 33 34 34 /** … … 72 72 * 73 73 * @param string $env Name of the environment. 74 * @return integer Environment type number ,74 * @return integer Environment type number. 75 75 */ 76 76 private function env_type( $env ) { … … 79 79 } 80 80 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' ); 99 148 default: 100 return 9;149 return ''; 101 150 } 102 151 } … … 155 204 */ 156 205 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' ) ) ) { 158 207 return; 159 208 } 160 209 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 ); 172 213 173 214 $wp_admin_bar->add_group( … … 180 221 array( 181 222 'id' => 'edt-node', 182 'title' => $ node_title,223 'title' => $type_name, 183 224 'parent' => 'edt-group', 184 225 '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, 186 228 ), 187 229 ) … … 196 238 ); 197 239 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 ); 200 275 } 201 276 202 277 $wp_admin_bar->add_node( 203 278 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() ), 230 281 'parent' => 'edt-node', 231 282 ) -
environment-debug-admin-toolbar/tags/1.1.0/languages/environment-debug-admin-toolbar.pot
r2908302 r2908974 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Environment Debug Admin Toolbar 1. 0.0\n"5 "Project-Id-Version: Environment Debug Admin Toolbar 1.1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/environment-debug-admin-toolbar\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 4-10T14:21:15+00:00\n"12 "POT-Creation-Date: 2023-05-07T01:46:50+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.7.1\n" … … 31 31 msgstr "" 32 32 33 #: environment-debug-admin-toolbar.php:1 6533 #: environment-debug-admin-toolbar.php:139 34 34 msgid "No Environment Found" 35 35 msgstr "" 36 36 37 #: environment-debug-admin-toolbar.php:1 6637 #: environment-debug-admin-toolbar.php:141 38 38 msgid "Development" 39 39 msgstr "" 40 40 41 #: environment-debug-admin-toolbar.php:1 6741 #: environment-debug-admin-toolbar.php:143 42 42 msgid "Staging" 43 43 msgstr "" 44 44 45 #: environment-debug-admin-toolbar.php:1 6845 #: environment-debug-admin-toolbar.php:145 46 46 msgid "Production" 47 47 msgstr "" 48 48 49 #: environment-debug-admin-toolbar.php:1 6949 #: environment-debug-admin-toolbar.php:147 50 50 msgid "Unknown Environment" 51 51 msgstr "" 52 53 #: environment-debug-admin-toolbar.php:226 54 msgid "Your env is set to:" 55 msgstr "" -
environment-debug-admin-toolbar/tags/1.1.0/readme.txt
r2908746 r2908974 2 2 Contributors: mediumraredev, brugman 3 3 Tags: environment, env, debug, staging, production 4 Requires at least: 6.24 Requires at least: 5.5 5 5 Tested up to: 6.2 6 Stable tag: 1. 0.06 Stable tag: 1.1.0 7 7 License: GPLv3 8 8 … … 30 30 == Changelog == 31 31 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 32 41 = 1.0.0 = 33 42 * 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 1 2023.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 1 10 2023.04.10 - version 1.0.0 2 11 * Initial release. -
environment-debug-admin-toolbar/trunk/environment-debug-admin-toolbar.php
r2908302 r2908974 14 14 * Plugin Name: Environment Debug Admin Toolbar 15 15 * Description: Display your environment and debug info in the toolbar. 16 * Version: 1. 0.017 * Requires at least: 6.218 * Requires PHP: 8.016 * Version: 1.1.0 17 * Requires at least: 5.5 18 * Requires PHP: 7.4 19 19 * Author: Medium Rare 20 20 * Author URI: https://mediumrare.dev/ … … 30 30 define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) ); 31 31 32 define( 'EDT_VERSION', '1. 0.0' );32 define( 'EDT_VERSION', '1.1.0' ); 33 33 34 34 /** … … 72 72 * 73 73 * @param string $env Name of the environment. 74 * @return integer Environment type number ,74 * @return integer Environment type number. 75 75 */ 76 76 private function env_type( $env ) { … … 79 79 } 80 80 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' ); 99 148 default: 100 return 9;149 return ''; 101 150 } 102 151 } … … 155 204 */ 156 205 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' ) ) ) { 158 207 return; 159 208 } 160 209 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 ); 172 213 173 214 $wp_admin_bar->add_group( … … 180 221 array( 181 222 'id' => 'edt-node', 182 'title' => $ node_title,223 'title' => $type_name, 183 224 'parent' => 'edt-group', 184 225 '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, 186 228 ), 187 229 ) … … 196 238 ); 197 239 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 ); 200 275 } 201 276 202 277 $wp_admin_bar->add_node( 203 278 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() ), 230 281 'parent' => 'edt-node', 231 282 ) -
environment-debug-admin-toolbar/trunk/languages/environment-debug-admin-toolbar.pot
r2908302 r2908974 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Environment Debug Admin Toolbar 1. 0.0\n"5 "Project-Id-Version: Environment Debug Admin Toolbar 1.1.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/environment-debug-admin-toolbar\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023-0 4-10T14:21:15+00:00\n"12 "POT-Creation-Date: 2023-05-07T01:46:50+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.7.1\n" … … 31 31 msgstr "" 32 32 33 #: environment-debug-admin-toolbar.php:1 6533 #: environment-debug-admin-toolbar.php:139 34 34 msgid "No Environment Found" 35 35 msgstr "" 36 36 37 #: environment-debug-admin-toolbar.php:1 6637 #: environment-debug-admin-toolbar.php:141 38 38 msgid "Development" 39 39 msgstr "" 40 40 41 #: environment-debug-admin-toolbar.php:1 6741 #: environment-debug-admin-toolbar.php:143 42 42 msgid "Staging" 43 43 msgstr "" 44 44 45 #: environment-debug-admin-toolbar.php:1 6845 #: environment-debug-admin-toolbar.php:145 46 46 msgid "Production" 47 47 msgstr "" 48 48 49 #: environment-debug-admin-toolbar.php:1 6949 #: environment-debug-admin-toolbar.php:147 50 50 msgid "Unknown Environment" 51 51 msgstr "" 52 53 #: environment-debug-admin-toolbar.php:226 54 msgid "Your env is set to:" 55 msgstr "" -
environment-debug-admin-toolbar/trunk/readme.txt
r2908746 r2908974 2 2 Contributors: mediumraredev, brugman 3 3 Tags: environment, env, debug, staging, production 4 Requires at least: 6.24 Requires at least: 5.5 5 5 Tested up to: 6.2 6 Stable tag: 1. 0.06 Stable tag: 1.1.0 7 7 License: GPLv3 8 8 … … 30 30 == Changelog == 31 31 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 32 41 = 1.0.0 = 33 42 * Initial release.
Note: See TracChangeset
for help on using the changeset viewer.