Plugin Directory

Changeset 3347349


Ignore:
Timestamp:
08/20/2025 06:43:12 AM (7 months ago)
Author:
thrivedesk
Message:

Update to version 2.1.1 from GitHub

Location:
thrivedesk
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • thrivedesk/tags/2.1.1/changelog.txt

    r3344043 r3347349  
    11*** WooCommerce Extension Changelog ***
    22
    3 2.1.0 - version 2.1.0
     32025-08-20 - version 2.1.1
     4* Fixed: Portal permission fixed.
     5* Fixed: Nonce validation error.
     6
     72025-08-15 - version 2.1.0
    48* Added: Comprehensive external services documentation in readme for ThriveDesk API, App, Documentation, and MediaDelivery services
    59* Added: ABSPATH checks to all view files to prevent direct file access
  • thrivedesk/tags/2.1.1/includes/views/shortcode/conversation-details.php

    r3344043 r3347349  
    1313parse_str($parts, $query_params);
    1414
    15 if (isset($query_params['td_conversation_id'])) {
    16     $conversation =  Conversation::get_conversation($query_params['td_conversation_id']);
     15$is_portal_available = false;
     16$conversation_exists = false;
     17$conversation_id = isset( $query_params['td_conversation_id'] ) ? absint( $query_params['td_conversation_id'] ): 0;
     18
     19if ($conversation_id > 0) {
     20    $conversation =  Conversation::get_conversation($conversation_id);
    1721    $is_portal_available = (new PortalService())->has_portal_access();
    1822   
     
    7680        <div>
    7781            <form action="" id="td_conversation_reply" method="POST">
    78                 <input type="hidden" id="td_reply_none" value="<?php echo esc_attr($td_reply_nonce); ?>">
     82                <input type="hidden" id="td_reply_nonce" value="<?php echo esc_attr($td_reply_nonce); ?>">
    7983               
    8084                <?php
    81                 echo '<input type="hidden" id="td_conversation_id" value="'. esc_attr($query_params['td_conversation_id']) .'">'
     85                echo '<input type="hidden" id="td_conversation_id" value="'. esc_attr($conversation_id) .'">'
    8286                ?>
    8387               
  • thrivedesk/tags/2.1.1/readme.txt

    r3344043 r3347349  
    55Requires at least: 4.9
    66Tested up to: 6.8
    7 Stable Tag: 2.1.0
     7Stable Tag: 2.1.1
    88Requires PHP: 7.4
    99License: GNU General Public License v2.0 or later
     
    295295== Changelog ==
    296296
     297= 2.1.1 =
     298- Fix: Portal permission fixed
     299- Fix: Nonce validation error
     300
     301
    297302= 2.1.0 =
    298303- Added: Comprehensive external services documentation in readme for ThriveDesk API, App, Documentation, and MediaDelivery services
  • thrivedesk/tags/2.1.1/src/Services/PortalService.php

    r3344043 r3347349  
    2626        'business_ltd',
    2727        'business-ltd',
     28        'appsumo_tier_4'
    2829    ];
    2930
  • thrivedesk/tags/2.1.1/thrivedesk.php

    r3344043 r3347349  
    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.1.0
     8 * Version:             2.1.1
    99 * Author:              ThriveDesk
    1010 * Author URI:          https://profiles.wordpress.org/thrivedesk/
     
    5555     * @var string
    5656     */
    57     public $version = '2.1.0';
     57    public $version = '2.1.1';
    5858
    5959    /**
  • thrivedesk/tags/2.1.1/vendor/composer/installed.php

    r3344043 r3347349  
    22    'root' => array(
    33        'name' => 'thrivedesk/wp-plugin',
    4         'pretty_version' => 'v2.1.0',
    5         'version' => '2.1.0.0',
    6         'reference' => '03a37e661375fa5e88d9e5b5e2c944188668735c',
     4        'pretty_version' => 'v2.1.1',
     5        'version' => '2.1.1.0',
     6        'reference' => '4e81072540de3e254b42c6207dd8f726715124ff',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'thrivedesk/wp-plugin' => array(
    14             'pretty_version' => 'v2.1.0',
    15             'version' => '2.1.0.0',
    16             'reference' => '03a37e661375fa5e88d9e5b5e2c944188668735c',
     14            'pretty_version' => 'v2.1.1',
     15            'version' => '2.1.1.0',
     16            'reference' => '4e81072540de3e254b42c6207dd8f726715124ff',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • thrivedesk/trunk/changelog.txt

    r3344043 r3347349  
    11*** WooCommerce Extension Changelog ***
    22
    3 2.1.0 - version 2.1.0
     32025-08-20 - version 2.1.1
     4* Fixed: Portal permission fixed.
     5* Fixed: Nonce validation error.
     6
     72025-08-15 - version 2.1.0
    48* Added: Comprehensive external services documentation in readme for ThriveDesk API, App, Documentation, and MediaDelivery services
    59* Added: ABSPATH checks to all view files to prevent direct file access
  • thrivedesk/trunk/includes/views/shortcode/conversation-details.php

    r3344043 r3347349  
    1313parse_str($parts, $query_params);
    1414
    15 if (isset($query_params['td_conversation_id'])) {
    16     $conversation =  Conversation::get_conversation($query_params['td_conversation_id']);
     15$is_portal_available = false;
     16$conversation_exists = false;
     17$conversation_id = isset( $query_params['td_conversation_id'] ) ? absint( $query_params['td_conversation_id'] ): 0;
     18
     19if ($conversation_id > 0) {
     20    $conversation =  Conversation::get_conversation($conversation_id);
    1721    $is_portal_available = (new PortalService())->has_portal_access();
    1822   
     
    7680        <div>
    7781            <form action="" id="td_conversation_reply" method="POST">
    78                 <input type="hidden" id="td_reply_none" value="<?php echo esc_attr($td_reply_nonce); ?>">
     82                <input type="hidden" id="td_reply_nonce" value="<?php echo esc_attr($td_reply_nonce); ?>">
    7983               
    8084                <?php
    81                 echo '<input type="hidden" id="td_conversation_id" value="'. esc_attr($query_params['td_conversation_id']) .'">'
     85                echo '<input type="hidden" id="td_conversation_id" value="'. esc_attr($conversation_id) .'">'
    8286                ?>
    8387               
  • thrivedesk/trunk/readme.txt

    r3344043 r3347349  
    55Requires at least: 4.9
    66Tested up to: 6.8
    7 Stable Tag: 2.1.0
     7Stable Tag: 2.1.1
    88Requires PHP: 7.4
    99License: GNU General Public License v2.0 or later
     
    295295== Changelog ==
    296296
     297= 2.1.1 =
     298- Fix: Portal permission fixed
     299- Fix: Nonce validation error
     300
     301
    297302= 2.1.0 =
    298303- Added: Comprehensive external services documentation in readme for ThriveDesk API, App, Documentation, and MediaDelivery services
  • thrivedesk/trunk/src/Services/PortalService.php

    r3344043 r3347349  
    2626        'business_ltd',
    2727        'business-ltd',
     28        'appsumo_tier_4'
    2829    ];
    2930
  • thrivedesk/trunk/thrivedesk.php

    r3344043 r3347349  
    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.1.0
     8 * Version:             2.1.1
    99 * Author:              ThriveDesk
    1010 * Author URI:          https://profiles.wordpress.org/thrivedesk/
     
    5555     * @var string
    5656     */
    57     public $version = '2.1.0';
     57    public $version = '2.1.1';
    5858
    5959    /**
  • thrivedesk/trunk/vendor/composer/installed.php

    r3344043 r3347349  
    22    'root' => array(
    33        'name' => 'thrivedesk/wp-plugin',
    4         'pretty_version' => 'v2.1.0',
    5         'version' => '2.1.0.0',
    6         'reference' => '03a37e661375fa5e88d9e5b5e2c944188668735c',
     4        'pretty_version' => 'v2.1.1',
     5        'version' => '2.1.1.0',
     6        'reference' => '4e81072540de3e254b42c6207dd8f726715124ff',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'thrivedesk/wp-plugin' => array(
    14             'pretty_version' => 'v2.1.0',
    15             'version' => '2.1.0.0',
    16             'reference' => '03a37e661375fa5e88d9e5b5e2c944188668735c',
     14            'pretty_version' => 'v2.1.1',
     15            'version' => '2.1.1.0',
     16            'reference' => '4e81072540de3e254b42c6207dd8f726715124ff',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.