Plugin Directory

Changeset 3240204


Ignore:
Timestamp:
02/13/2025 03:07:05 PM (14 months ago)
Author:
thrivedesk
Message:

Update to version 2.0.10 from GitHub

Location:
thrivedesk
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • thrivedesk/tags/2.0.10/readme.txt

    r3238017 r3240204  
    44Requires at least: 4.9
    55Tested up to: 6.7
    6 Stable Tag: 2.0.9
     6Stable Tag: 2.0.10
    77Requires PHP: 5.5
    88License: GNU General Public License v2.0 or later
     
    233233
    234234== Changelog ==
     235= 2.0.10 =
     236- Fix: Updated admin styles for WP notifications
     237
    235238= 2.0.9 =
    236239- Update: Update application connection with organization
  • thrivedesk/tags/2.0.10/src/Admin.php

    r3238017 r3240204  
    207207            wp_enqueue_style('thrivedesk-css', THRIVEDESK_PLUGIN_ASSETS . '/css/admin.css', '', THRIVEDESK_VERSION);
    208208            wp_enqueue_script('thrivedesk-js', THRIVEDESK_PLUGIN_ASSETS . '/js/admin.js', ['jquery'], THRIVEDESK_VERSION);
     209
     210            if (current_user_can( 'manage_options' )) {
     211                echo '<style>.update-nag, .updated, .error, .is-dismissible { display: none; }</style>';
     212            }
    209213        }
    210214
     
    228232
    229233            wp_enqueue_script('thrivedesk-autonami-script', THRIVEDESK_PLUGIN_ASSETS . '/js/wp-scripts/thrivedesk-autonami-tab.js', $asset_file['dependencies'], $asset_file['version'] ?? THRIVEDESK_VERSION);
    230         }
    231 
    232         if (current_user_can( 'manage_options' )) {
    233             echo '<style>.update-nag, .updated, .error, .is-dismissible { display: none; }</style>';
    234234        }
    235235    }
  • thrivedesk/tags/2.0.10/thrivedesk.php

    r3238017 r3240204  
    66 * Plugin URI:          https://www.thrivedesk.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
    77 * Tags:                live chat, helpdesk, free live chat, knowledge base, thrivedesk
    8  * Version:             2.0.9
     8 * Version:             2.0.10
    99 * Author:              ThriveDesk
    1010 * Author URI:          https://profiles.wordpress.org/thrivedesk/
     
    5252     * @var string
    5353     */
    54     public $version = '2.0.9';
     54    public $version = '2.0.10';
    5555
    5656    /**
  • thrivedesk/tags/2.0.10/vendor/composer/installed.php

    r3238017 r3240204  
    22    'root' => array(
    33        'name' => 'thrivedesk/wp-plugin',
    4         'pretty_version' => 'v2.0.9',
    5         'version' => '2.0.9.0',
    6         'reference' => 'cd6f07e5da124692e00c9c4dd16350c61674abf4',
     4        'pretty_version' => 'v2.0.10',
     5        'version' => '2.0.10.0',
     6        'reference' => '0555fe604cf5a76e172ec5392220bb98d0687b42',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'thrivedesk/wp-plugin' => array(
    14             'pretty_version' => 'v2.0.9',
    15             'version' => '2.0.9.0',
    16             'reference' => 'cd6f07e5da124692e00c9c4dd16350c61674abf4',
     14            'pretty_version' => 'v2.0.10',
     15            'version' => '2.0.10.0',
     16            'reference' => '0555fe604cf5a76e172ec5392220bb98d0687b42',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • thrivedesk/trunk/readme.txt

    r3238017 r3240204  
    44Requires at least: 4.9
    55Tested up to: 6.7
    6 Stable Tag: 2.0.9
     6Stable Tag: 2.0.10
    77Requires PHP: 5.5
    88License: GNU General Public License v2.0 or later
     
    233233
    234234== Changelog ==
     235= 2.0.10 =
     236- Fix: Updated admin styles for WP notifications
     237
    235238= 2.0.9 =
    236239- Update: Update application connection with organization
  • thrivedesk/trunk/src/Admin.php

    r3238017 r3240204  
    207207            wp_enqueue_style('thrivedesk-css', THRIVEDESK_PLUGIN_ASSETS . '/css/admin.css', '', THRIVEDESK_VERSION);
    208208            wp_enqueue_script('thrivedesk-js', THRIVEDESK_PLUGIN_ASSETS . '/js/admin.js', ['jquery'], THRIVEDESK_VERSION);
     209
     210            if (current_user_can( 'manage_options' )) {
     211                echo '<style>.update-nag, .updated, .error, .is-dismissible { display: none; }</style>';
     212            }
    209213        }
    210214
     
    228232
    229233            wp_enqueue_script('thrivedesk-autonami-script', THRIVEDESK_PLUGIN_ASSETS . '/js/wp-scripts/thrivedesk-autonami-tab.js', $asset_file['dependencies'], $asset_file['version'] ?? THRIVEDESK_VERSION);
    230         }
    231 
    232         if (current_user_can( 'manage_options' )) {
    233             echo '<style>.update-nag, .updated, .error, .is-dismissible { display: none; }</style>';
    234234        }
    235235    }
  • thrivedesk/trunk/thrivedesk.php

    r3238017 r3240204  
    66 * Plugin URI:          https://www.thrivedesk.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
    77 * Tags:                live chat, helpdesk, free live chat, knowledge base, thrivedesk
    8  * Version:             2.0.9
     8 * Version:             2.0.10
    99 * Author:              ThriveDesk
    1010 * Author URI:          https://profiles.wordpress.org/thrivedesk/
     
    5252     * @var string
    5353     */
    54     public $version = '2.0.9';
     54    public $version = '2.0.10';
    5555
    5656    /**
  • thrivedesk/trunk/vendor/composer/installed.php

    r3238017 r3240204  
    22    'root' => array(
    33        'name' => 'thrivedesk/wp-plugin',
    4         'pretty_version' => 'v2.0.9',
    5         'version' => '2.0.9.0',
    6         'reference' => 'cd6f07e5da124692e00c9c4dd16350c61674abf4',
     4        'pretty_version' => 'v2.0.10',
     5        'version' => '2.0.10.0',
     6        'reference' => '0555fe604cf5a76e172ec5392220bb98d0687b42',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'thrivedesk/wp-plugin' => array(
    14             'pretty_version' => 'v2.0.9',
    15             'version' => '2.0.9.0',
    16             'reference' => 'cd6f07e5da124692e00c9c4dd16350c61674abf4',
     14            'pretty_version' => 'v2.0.10',
     15            'version' => '2.0.10.0',
     16            'reference' => '0555fe604cf5a76e172ec5392220bb98d0687b42',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.