Changeset 2909223
- Timestamp:
- 05/08/2023 02:33:52 AM (3 years ago)
- Location:
- environment-debug-admin-toolbar
- Files:
-
- 8 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from environment-debug-admin-toolbar/trunk)
-
tags/1.1.1/changelog.txt (modified) (1 diff)
-
tags/1.1.1/environment-debug-admin-toolbar.php (modified) (3 diffs)
-
tags/1.1.1/languages/environment-debug-admin-toolbar.pot (modified) (2 diffs)
-
tags/1.1.1/readme.txt (modified) (3 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/environment-debug-admin-toolbar.php (modified) (3 diffs)
-
trunk/languages/environment-debug-admin-toolbar.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
environment-debug-admin-toolbar/tags/1.1.1/changelog.txt
r2908974 r2909223 1 2023.05.08 - version 1.1.1 2 * Fixed the name of a filter. 3 1 4 2023.05.07 - version 1.1.0 2 5 * Updated bar colors. 3 6 * Added PHP version. 4 * Added environment as title to the env type. 7 * Added actual environment as title to the env type. 8 * Added actual log file as title to WP_DEBUG_LOG. 5 9 * Added filters to set environments to types. 6 10 * Added a filter for who sees the bar. -
environment-debug-admin-toolbar/tags/1.1.1/environment-debug-admin-toolbar.php
r2908974 r2909223 14 14 * Plugin Name: Environment Debug Admin Toolbar 15 15 * Description: Display your environment and debug info in the toolbar. 16 * Version: 1.1. 016 * Version: 1.1.1 17 17 * Requires at least: 5.5 18 18 * Requires PHP: 7.4 … … 30 30 define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) ); 31 31 32 define( 'EDT_VERSION', '1.1. 0' );32 define( 'EDT_VERSION', '1.1.1' ); 33 33 34 34 /** … … 81 81 $env = strtolower( $env ); 82 82 83 $env_local = apply_filters( 84 'edt_env_local', 85 array( 86 'local', 83 $env_development = apply_filters( 84 'edt_env_development', 85 array( 87 86 'development', 88 87 'develop', 89 88 'dev', 90 ) 91 ); 92 93 if ( in_array( $env, $env_local ) ) { 89 'local', 90 ) 91 ); 92 93 if ( in_array( $env, $env_development ) ) { 94 94 return 1; 95 95 } -
environment-debug-admin-toolbar/tags/1.1.1/languages/environment-debug-admin-toolbar.pot
r2908974 r2909223 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Environment Debug Admin Toolbar 1.1. 0\n"5 "Project-Id-Version: Environment Debug Admin Toolbar 1.1.1\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-05-0 7T01:46:50+00:00\n"12 "POT-Creation-Date: 2023-05-08T02:26:08+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" -
environment-debug-admin-toolbar/tags/1.1.1/readme.txt
r2909221 r2909223 4 4 Requires at least: 5.5 5 5 Tested up to: 6.2 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 License: GPLv3 8 8 … … 47 47 If you have a rare, custom, or localized environment name, we won't be adding those. However, you can add support for them yourself, with these snippets: 48 48 49 `add_filter( 'edt_env_ local', function ( $environments ) {49 `add_filter( 'edt_env_development', function ( $environments ) { 50 50 $environments[] = 'daring_development'; 51 51 return $environments; … … 84 84 == Changelog == 85 85 86 = 1.1.1 = 87 * Fixed the name of a filter. 88 86 89 = 1.1.0 = 87 90 * Updated bar colors. -
environment-debug-admin-toolbar/trunk/changelog.txt
r2908974 r2909223 1 2023.05.08 - version 1.1.1 2 * Fixed the name of a filter. 3 1 4 2023.05.07 - version 1.1.0 2 5 * Updated bar colors. 3 6 * Added PHP version. 4 * Added environment as title to the env type. 7 * Added actual environment as title to the env type. 8 * Added actual log file as title to WP_DEBUG_LOG. 5 9 * Added filters to set environments to types. 6 10 * Added a filter for who sees the bar. -
environment-debug-admin-toolbar/trunk/environment-debug-admin-toolbar.php
r2908974 r2909223 14 14 * Plugin Name: Environment Debug Admin Toolbar 15 15 * Description: Display your environment and debug info in the toolbar. 16 * Version: 1.1. 016 * Version: 1.1.1 17 17 * Requires at least: 5.5 18 18 * Requires PHP: 7.4 … … 30 30 define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) ); 31 31 32 define( 'EDT_VERSION', '1.1. 0' );32 define( 'EDT_VERSION', '1.1.1' ); 33 33 34 34 /** … … 81 81 $env = strtolower( $env ); 82 82 83 $env_local = apply_filters( 84 'edt_env_local', 85 array( 86 'local', 83 $env_development = apply_filters( 84 'edt_env_development', 85 array( 87 86 'development', 88 87 'develop', 89 88 'dev', 90 ) 91 ); 92 93 if ( in_array( $env, $env_local ) ) { 89 'local', 90 ) 91 ); 92 93 if ( in_array( $env, $env_development ) ) { 94 94 return 1; 95 95 } -
environment-debug-admin-toolbar/trunk/languages/environment-debug-admin-toolbar.pot
r2908974 r2909223 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Environment Debug Admin Toolbar 1.1. 0\n"5 "Project-Id-Version: Environment Debug Admin Toolbar 1.1.1\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-05-0 7T01:46:50+00:00\n"12 "POT-Creation-Date: 2023-05-08T02:26:08+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" -
environment-debug-admin-toolbar/trunk/readme.txt
r2909221 r2909223 4 4 Requires at least: 5.5 5 5 Tested up to: 6.2 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 License: GPLv3 8 8 … … 47 47 If you have a rare, custom, or localized environment name, we won't be adding those. However, you can add support for them yourself, with these snippets: 48 48 49 `add_filter( 'edt_env_ local', function ( $environments ) {49 `add_filter( 'edt_env_development', function ( $environments ) { 50 50 $environments[] = 'daring_development'; 51 51 return $environments; … … 84 84 == Changelog == 85 85 86 = 1.1.1 = 87 * Fixed the name of a filter. 88 86 89 = 1.1.0 = 87 90 * Updated bar colors.
Note: See TracChangeset
for help on using the changeset viewer.