Plugin Directory

Changeset 3483031


Ignore:
Timestamp:
03/15/2026 10:43:12 AM (2 weeks ago)
Author:
devitemsllc
Message:

Update to version 1.4.43 from GitHub

Location:
support-genix-lite
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • support-genix-lite/tags/1.4.43/models/database/Mapbd_wps_chatbot_session.php

    r3474374 r3483031  
    9898                `duration` int(11) DEFAULT NULL,
    9999                `is_starred` tinyint(1) NOT NULL DEFAULT 0,
     100                `source` char(1) NOT NULL DEFAULT '' COMMENT 'drop(M=Main Site,E=Embed)',
     101                `embed_token_id` int(11) NOT NULL DEFAULT 0,
     102                `page_url` varchar(500) NOT NULL DEFAULT '',
    100103                `started_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
    101104                `last_activity_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
     
    104107                KEY `idx_started_at` (`started_at`),
    105108                KEY `idx_user_id` (`user_id`),
    106                 KEY `idx_is_starred` (`is_starred`)
     109                KEY `idx_is_starred` (`is_starred`),
     110                KEY `idx_source` (`source`)
    107111            ) $charsetCollate;";
    108112            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
  • support-genix-lite/tags/1.4.43/models/database/Mapbd_wps_ticket.php

    r3480997 r3483031  
    15381538                      `mailbox_type` char(1) NOT NULL DEFAULT '' COMMENT 'radio(M=Modern,T=Traditional)',
    15391539                      PRIMARY KEY (`id`) USING BTREE,
    1540                       UNIQUE KEY `ticket_track_id` (`ticket_track_id`) USING BTREE
     1540                      UNIQUE KEY `ticket_track_id` (`ticket_track_id`) USING BTREE,
     1541                      FULLTEXT KEY `ft_title` (`title`)
    15411542                    ) $charsetCollate;";
    15421543            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
  • support-genix-lite/tags/1.4.43/modules/Apbd_wps_settings.php

    r3480997 r3483031  
    14351435                    Apbd_wps_envato_system::MigrateDisplayOpts();
    14361436                }
     1437
     1438                // When pro version is less than 1.8.43
     1439                if (1 === version_compare('1.8.43', $last_pro_version)) {
     1440                    // From version 1.4.43
     1441                    Mapbd_wps_chatbot_session::UpdateDBTable3();
     1442                    Mapbd_wps_ticket::UpdateDBTable7();
     1443                }
    14371444            } else {
    14381445                // From version 1.1.0
     
    17281735                    Apbd_wps_woocommerce::MigrateDisplayOpts();
    17291736                    Apbd_wps_envato_system::MigrateDisplayOpts();
     1737                }
     1738            }
     1739
     1740            // From version 1.4.43
     1741            if (1 === version_compare('1.4.43', $previous_version)) {
     1742                // When pro version is empty or less than 1.8.43
     1743                if (empty($last_pro_version) || (1 === version_compare('1.8.43', $last_pro_version))) {
     1744                    Mapbd_wps_chatbot_session::UpdateDBTable3();
     1745                    Mapbd_wps_ticket::UpdateDBTable7();
    17301746                }
    17311747            }
  • support-genix-lite/tags/1.4.43/support-genix-lite.php

    r3480997 r3483031  
    44Plugin URI: http://supportgenix.com
    55Description: Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System.
    6 Version: 1.4.42
     6Version: 1.4.43
    77Author: Support Genix
    88Author URI: https://supportgenix.com
     
    1919$apbdWpSupportLiteFile = __FILE__;
    2020$apbdWpSupportLitePath = dirname($apbdWpSupportLiteFile);
    21 $apbdWpSupportLiteVersion = '1.4.42';
     21$apbdWpSupportLiteVersion = '1.4.43';
    2222
    2323if (!defined('SUPPORT_GENIX_LITE_FILE_PATH')) {
  • support-genix-lite/trunk/models/database/Mapbd_wps_chatbot_session.php

    r3474374 r3483031  
    9898                `duration` int(11) DEFAULT NULL,
    9999                `is_starred` tinyint(1) NOT NULL DEFAULT 0,
     100                `source` char(1) NOT NULL DEFAULT '' COMMENT 'drop(M=Main Site,E=Embed)',
     101                `embed_token_id` int(11) NOT NULL DEFAULT 0,
     102                `page_url` varchar(500) NOT NULL DEFAULT '',
    100103                `started_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
    101104                `last_activity_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
     
    104107                KEY `idx_started_at` (`started_at`),
    105108                KEY `idx_user_id` (`user_id`),
    106                 KEY `idx_is_starred` (`is_starred`)
     109                KEY `idx_is_starred` (`is_starred`),
     110                KEY `idx_source` (`source`)
    107111            ) $charsetCollate;";
    108112            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
  • support-genix-lite/trunk/models/database/Mapbd_wps_ticket.php

    r3480997 r3483031  
    15381538                      `mailbox_type` char(1) NOT NULL DEFAULT '' COMMENT 'radio(M=Modern,T=Traditional)',
    15391539                      PRIMARY KEY (`id`) USING BTREE,
    1540                       UNIQUE KEY `ticket_track_id` (`ticket_track_id`) USING BTREE
     1540                      UNIQUE KEY `ticket_track_id` (`ticket_track_id`) USING BTREE,
     1541                      FULLTEXT KEY `ft_title` (`title`)
    15411542                    ) $charsetCollate;";
    15421543            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
  • support-genix-lite/trunk/modules/Apbd_wps_settings.php

    r3480997 r3483031  
    14351435                    Apbd_wps_envato_system::MigrateDisplayOpts();
    14361436                }
     1437
     1438                // When pro version is less than 1.8.43
     1439                if (1 === version_compare('1.8.43', $last_pro_version)) {
     1440                    // From version 1.4.43
     1441                    Mapbd_wps_chatbot_session::UpdateDBTable3();
     1442                    Mapbd_wps_ticket::UpdateDBTable7();
     1443                }
    14371444            } else {
    14381445                // From version 1.1.0
     
    17281735                    Apbd_wps_woocommerce::MigrateDisplayOpts();
    17291736                    Apbd_wps_envato_system::MigrateDisplayOpts();
     1737                }
     1738            }
     1739
     1740            // From version 1.4.43
     1741            if (1 === version_compare('1.4.43', $previous_version)) {
     1742                // When pro version is empty or less than 1.8.43
     1743                if (empty($last_pro_version) || (1 === version_compare('1.8.43', $last_pro_version))) {
     1744                    Mapbd_wps_chatbot_session::UpdateDBTable3();
     1745                    Mapbd_wps_ticket::UpdateDBTable7();
    17301746                }
    17311747            }
  • support-genix-lite/trunk/support-genix-lite.php

    r3480997 r3483031  
    44Plugin URI: http://supportgenix.com
    55Description: Helpdesk, AI Chatbot, Knowledge Base & Customer Support Ticketing System.
    6 Version: 1.4.42
     6Version: 1.4.43
    77Author: Support Genix
    88Author URI: https://supportgenix.com
     
    1919$apbdWpSupportLiteFile = __FILE__;
    2020$apbdWpSupportLitePath = dirname($apbdWpSupportLiteFile);
    21 $apbdWpSupportLiteVersion = '1.4.42';
     21$apbdWpSupportLiteVersion = '1.4.43';
    2222
    2323if (!defined('SUPPORT_GENIX_LITE_FILE_PATH')) {
Note: See TracChangeset for help on using the changeset viewer.