Plugin Directory

Changeset 3498317


Ignore:
Timestamp:
04/03/2026 02:53:01 PM (34 hours ago)
Author:
codetelemetrylab
Message:

Release v1.0.1 - Updated URLs and contributor

Location:
codetelemetrylab-admin-performance-inspector/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • codetelemetrylab-admin-performance-inspector/trunk/README.txt

    r3497801 r3498317  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    132132== Changelog ==
    133133
     134= 1.0.1 =
     135* Updated Author URI to company website.
     136* Updated Plugin URI to company website.
     137* Updated Contributors to company account.
     138
     139
    134140= 1.0.0 =
    135141* Initial release of CodeTelemetryLab Admin Performance Inspector.
     
    146152== Upgrade Notice ==
    147153
     154= 1.0.1 =
     155Maintenance update. No functional changes.
     156
     157
    148158= 1.0.0 =
    149159Initial release of CodeTelemetryLab Admin Performance Inspector. Activate and navigate to Tools → Admin Performance Inspector to begin profiling your WordPress admin performance.
  • codetelemetrylab-admin-performance-inspector/trunk/codetelemetrylab-admin-performance-inspector.php

    r3497815 r3498317  
    1010 *
    1111 * @link              https://codetelemetrylab.vercel.app
    12  * @since             1.0.0
     12 * @since             1.0.1
    1313 * @package           Codeadpe_Core
    1414 *
     
    1616 * Plugin URI:        https://codetelemetrylab.vercel.app/plugins
    1717 * Description:       Profiling tool for WordPress admin page performance. Analyze plugins, hooks, queries, and memory usage.
    18  * Version:           1.0.0
     18 * Version:           1.0.1
    1919 * Author:            CodeTelemetryLab
    2020 * Author URI:        https://codetelemetrylab.vercel.app
     
    2323 * Text Domain:       codetelemetrylab-admin-performance-inspector
    2424 * Domain Path:       /languages
    25  * Contributors: codetelemetrylab
    2625 */
    2726
     
    4140 * Rename this for your plugin and update it as you release new versions.
    4241 */
    43 define( 'CODEADPE_VERSION', '1.0.0' );
     42define( 'CODEADPE_VERSION', '1.0.1' );
    4443
    4544/**
     
    7776 * not affect the page life cycle.
    7877 *
    79  * @since    1.0.0
     78 * @since             1.0.1
    8079 */
    8180function codeadpe_run() {
  • codetelemetrylab-admin-performance-inspector/trunk/includes/class-admin-performance-inspector-i18n.php

    r3497801 r3498317  
    1212 *
    1313 * @link              https://codetelemetrylab.vercel.app
    14  * @since      1.0.0
     14 * @since             1.0.1
    1515 *
    1616 * @package    Codeadpe_Core
     
    2424 * so that it is ready for translation.
    2525 *
    26  * @since      1.0.0
     26 * @since             1.0.1
    2727 * @package    Codeadpe_Core
    2828 * @subpackage Codeadpe_Core/includes
     
    3535     * Load the plugin text domain for translation.
    3636     *
    37      * @since    1.0.0
     37     * @since             1.0.1
    3838     */
    3939    public function load_plugin_textdomain() {
  • codetelemetrylab-admin-performance-inspector/trunk/includes/class-admin-performance-inspector-loader.php

    r3497801 r3498317  
    99 *
    1010 * @link              https://codetelemetrylab.vercel.app
    11  * @since      1.0.0
     11 * @since             1.0.1
    1212 *
    1313 * @package    Codeadpe_Core
     
    3131     * The array of actions registered with WordPress.
    3232     *
    33      * @since    1.0.0
     33     * @since             1.0.1
    3434     * @access   protected
    3535     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    4040     * The array of filters registered with WordPress.
    4141     *
    42      * @since    1.0.0
     42     * @since             1.0.1
    4343     * @access   protected
    4444     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4949     * Initialize the collections used to maintain the actions and filters.
    5050     *
    51      * @since    1.0.0
     51     * @since             1.0.1
    5252     */
    5353    public function __construct() {
     
    6161     * Add a new action to the collection to be registered with WordPress.
    6262     *
    63      * @since    1.0.0
     63     * @since             1.0.1
    6464     * @param    string               $hook             The name of the WordPress action that is being registered.
    6565     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7575     * Add a new filter to the collection to be registered with WordPress.
    7676     *
    77      * @since    1.0.0
     77     * @since             1.0.1
    7878     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7979     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    9090     * collection.
    9191     *
    92      * @since    1.0.0
     92     * @since             1.0.1
    9393     * @access   private
    9494     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    117117     * Register the filters and actions with WordPress.
    118118     *
    119      * @since    1.0.0
     119     * @since             1.0.1
    120120     */
    121121    public function run() {
  • codetelemetrylab-admin-performance-inspector/trunk/includes/class-admin-performance-inspector.php

    r3497801 r3498317  
    1212 *
    1313 * @link              https://codetelemetrylab.vercel.app
    14  * @since      1.0.0
     14 * @since             1.0.1
    1515 *
    1616 * @package    Codeadpe_Core
     
    2727 * version of the plugin.
    2828 *
    29  * @since      1.0.0
     29 * @since             1.0.1
    3030 * @package    Codeadpe_Core
    3131 * @subpackage Codeadpe_Core/includes
     
    3838     * the plugin.
    3939     *
    40      * @since    1.0.0
     40     * @since             1.0.1
    4141     * @access   protected
    4242     * @var      Codeadpe_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4747     * The unique identifier of this plugin.
    4848     *
    49      * @since    1.0.0
     49     * @since             1.0.1
    5050     * @access   protected
    5151     * @var      string    $plugin_name    The string used to uniquely identify this plugin.
     
    5656     * The current version of the plugin.
    5757     *
    58      * @since    1.0.0
     58     * @since             1.0.1
    5959     * @access   protected
    6060     * @var      string    $version    The current version of the plugin.
     
    6565     * The profiler object.
    6666     *
    67      * @since    1.0.0
     67     * @since             1.0.1
    6868     * @access   protected
    6969     */
     
    7777     * the public-facing side of the site.
    7878     *
    79      * @since    1.0.0
     79     * @since             1.0.1
    8080     */
    8181    public function __construct() {
     
    8383            $this->version = CODEADPE_VERSION;
    8484        } else {
    85             $this->version = '1.0.0';
     85            $this->version = '1.0.1';
    8686        }
    8787        $this->plugin_name = 'codetelemetrylab-admin-performance-inspector';
     
    107107     * with WordPress.
    108108     *
    109      * @since    1.0.0
     109     * @since             1.0.1
    110110     * @access   private
    111111     */
     
    151151     * with WordPress.
    152152     *
    153      * @since    1.0.0
     153     * @since             1.0.1
    154154     * @access   private
    155155     */
     
    166166     * of the plugin.
    167167     *
    168      * @since    1.0.0
     168     * @since             1.0.1
    169169     * @access   private
    170170     */
     
    183183     * of the plugin.
    184184     *
    185      * @since    1.0.0
     185     * @since             1.0.1
    186186     * @access   private
    187187     */
     
    198198     * Run the loader to execute all of the hooks with WordPress.
    199199     *
    200      * @since    1.0.0
     200     * @since             1.0.1
    201201     */
    202202    public function run() {
     
    208208     * WordPress and to define internationalization functionality.
    209209     *
    210      * @since     1.0.0
     210     * @since             1.0.1
    211211     * @return    string    The name of the plugin.
    212212     */
     
    218218     * The reference to the class that orchestrates the hooks with the plugin.
    219219     *
    220      * @since     1.0.0
     220     * @since             1.0.1
    221221     * @return    Codeadpe_Loader    Orchestrates the hooks of the plugin.
    222222     */
     
    228228     * Retrieve the version number of the plugin.
    229229     *
    230      * @since     1.0.0
     230     * @since             1.0.1
    231231     * @return    string    The version number of the plugin.
    232232     */
  • codetelemetrylab-admin-performance-inspector/trunk/public/class-admin-performance-inspector-public.php

    r3497801 r3498317  
    99 *
    1010 * @link              https://codetelemetrylab.vercel.app
    11  * @since      1.0.0
     11 * @since             1.0.1
    1212 *
    1313 * @package    Codeadpe_Core
     
    3030     * The ID of this plugin.
    3131     *
    32      * @since    1.0.0
     32     * @since             1.0.1
    3333     * @access   private
    3434     * @var      string    $plugin_name    The ID of this plugin.
     
    3939     * The version of this plugin.
    4040     *
    41      * @since    1.0.0
     41     * @since             1.0.1
    4242     * @access   private
    4343     * @var      string    $version    The current version of this plugin.
     
    4848     * Initialize the class and set its properties.
    4949     *
    50      * @since    1.0.0
     50     * @since             1.0.1
    5151     * @param      string    $plugin_name       The name of the plugin.
    5252     * @param      string    $version    The version of this plugin.
     
    6262     * Register the stylesheets for the public-facing side of the site.
    6363     *
    64      * @since    1.0.0
     64     * @since             1.0.1
    6565     */
    6666    public function enqueue_styles() {
     
    8585     * Register the JavaScript for the public-facing side of the site.
    8686     *
    87      * @since    1.0.0
     87     * @since             1.0.1
    8888     */
    8989    public function enqueue_scripts() {
  • codetelemetrylab-admin-performance-inspector/trunk/public/partials/admin-performance-inspector-public-display.php

    r3497801 r3498317  
    1111 *
    1212 * @link              https://codetelemetrylab.vercel.app
    13  * @since      1.0.0
     13 * @since             1.0.1
    1414 *
    1515 * @package    Codeadpe_Core
  • codetelemetrylab-admin-performance-inspector/trunk/uninstall.php

    r3497801 r3498317  
    55 *
    66 * @link              https://codetelemetrylab.vercel.app
    7  * @since      1.0.0
     7 * @since             1.0.1
    88 *
    99 * @package    Codeadpe_Core
Note: See TracChangeset for help on using the changeset viewer.