Plugin Directory

Changeset 3082847


Ignore:
Timestamp:
05/07/2024 09:45:49 PM (22 months ago)
Author:
mediumraredev
Message:

Update to version 1.3.2 from GitHub

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

Legend:

Unmodified
Added
Removed
  • environment-debug-admin-toolbar/tags/1.3.2/changelog.txt

    r2991157 r3082847  
     12024.05.07 - version 1.3.2
     2 * Fixed wrong variable use for getenv('WP_ENV') users.
     3
    142023.11.07 - version 1.3.1
    25 * Checked compatibility with WP 6.4.
  • environment-debug-admin-toolbar/tags/1.3.2/environment-debug-admin-toolbar.php

    r2991157 r3082847  
    1414 * Plugin Name:       Environment & Debug Bar
    1515 * Description:       Display your environment and debug info in the toolbar.
    16  * Version:           1.3.1
     16 * Version:           1.3.2
    1717 * Requires at least: 5.5
    1818 * Requires PHP:      7.4
     
    3030define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) );
    3131
    32 define( 'EDT_VERSION', '1.3.1' );
     32define( 'EDT_VERSION', '1.3.2' );
    3333
    3434/**
     
    5454            }
    5555            if ( getenv( 'WP_ENV' ) !== false ) {
    56                 return getenv( 'WP_ENVIRONMENT_TYPE' );
     56                return getenv( 'WP_ENV' );
    5757            }
    5858        }
  • environment-debug-admin-toolbar/tags/1.3.2/languages/environment-debug-admin-toolbar.pot

    r2991157 r3082847  
    1 # Copyright (C) 2023 Medium Rare
     1# Copyright (C) 2024 Medium Rare
    22# This file is distributed under the GPL v3.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Environment & Debug Bar 1.3.1\n"
     5"Project-Id-Version: Environment & Debug Bar 1.3.2\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-11-07T20:42:22+00:00\n"
     12"POT-Creation-Date: 2024-05-07T21:39:58+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.0-alpha-04d5fdd\n"
  • environment-debug-admin-toolbar/tags/1.3.2/readme.txt

    r3063000 r3082847  
    44Requires at least: 5.5
    55Tested up to: 6.5
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPLv3
    88
     
    9292== Changelog ==
    9393
     94= 1.3.2 =
     95* Fixed wrong variable use for getenv('WP_ENV') users.
     96
    9497= 1.3.1 =
    9598* Checked compatibility with WP 6.4.
  • environment-debug-admin-toolbar/trunk/changelog.txt

    r2991157 r3082847  
     12024.05.07 - version 1.3.2
     2 * Fixed wrong variable use for getenv('WP_ENV') users.
     3
    142023.11.07 - version 1.3.1
    25 * Checked compatibility with WP 6.4.
  • environment-debug-admin-toolbar/trunk/environment-debug-admin-toolbar.php

    r2991157 r3082847  
    1414 * Plugin Name:       Environment & Debug Bar
    1515 * Description:       Display your environment and debug info in the toolbar.
    16  * Version:           1.3.1
     16 * Version:           1.3.2
    1717 * Requires at least: 5.5
    1818 * Requires PHP:      7.4
     
    3030define( 'EDT_BASENAME', plugin_basename( EDT_FILE ) );
    3131
    32 define( 'EDT_VERSION', '1.3.1' );
     32define( 'EDT_VERSION', '1.3.2' );
    3333
    3434/**
     
    5454            }
    5555            if ( getenv( 'WP_ENV' ) !== false ) {
    56                 return getenv( 'WP_ENVIRONMENT_TYPE' );
     56                return getenv( 'WP_ENV' );
    5757            }
    5858        }
  • environment-debug-admin-toolbar/trunk/languages/environment-debug-admin-toolbar.pot

    r2991157 r3082847  
    1 # Copyright (C) 2023 Medium Rare
     1# Copyright (C) 2024 Medium Rare
    22# This file is distributed under the GPL v3.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Environment & Debug Bar 1.3.1\n"
     5"Project-Id-Version: Environment & Debug Bar 1.3.2\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-11-07T20:42:22+00:00\n"
     12"POT-Creation-Date: 2024-05-07T21:39:58+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.0-alpha-04d5fdd\n"
  • environment-debug-admin-toolbar/trunk/readme.txt

    r3063000 r3082847  
    44Requires at least: 5.5
    55Tested up to: 6.5
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPLv3
    88
     
    9292== Changelog ==
    9393
     94= 1.3.2 =
     95* Fixed wrong variable use for getenv('WP_ENV') users.
     96
    9497= 1.3.1 =
    9598* Checked compatibility with WP 6.4.
Note: See TracChangeset for help on using the changeset viewer.