Plugin Directory

Changeset 3286869


Ignore:
Timestamp:
05/03/2025 04:19:35 PM (11 months ago)
Author:
ashleysmith1
Message:

Quick fix: UPGRADE bug resolved in version 3.3.17

Location:
abmsense/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • abmsense/trunk/abmsense.php

    r3286862 r3286869  
    33Plugin Name: ABMsense - Visitor Identification for B2B Pipeline Growth
    44Description: Turn Site Visitors into Hot Leads– It's Marketing Magic! ABMsense is a powerful tool that helps you to identify and track your website visitors. It provides you with the information you need to turn your website visitors into hot leads. With ABMsense, you can track your website visitors, identify their company, and get detailed information about their visit. Go to Settings -> ABMsense to configure the plugin.
    5 Version: 3.3.16
     5Version: 3.3.17
    66Author: Ashley Smith
    77Requires PHP: 7.2
     
    2626define('ABMSENSE_PREFIX', 'abmsense_');
    2727if (!defined('ABMSENSE_VERSION')) {
    28     define('ABMSENSE_VERSION', '3.3.16');
     28    define('ABMSENSE_VERSION', '3.3.17');
    2929}
    3030
  • abmsense/trunk/activation_deactivation.php

    r3286862 r3286869  
    8383       
    8484        try {
    85             // Update plugin data
     85            // Get the current version
     86            $current_version = abmsense_get_version();
     87           
     88            // Update the version in WordPress options first
     89            update_option(ABMSENSE_PREFIX . 'version_installed', $current_version);
     90           
     91            // Update plugin data with the new version
    8692            abmsense_update_plugin_data();
    8793           
     
    111117    $is_consent = get_option(ABMSENSE_PREFIX . 'is_consent') ?: 0;
    112118    $date_registered = get_option(ABMSENSE_PREFIX . 'date_registered') ?: gmdate('Y-m-d');
     119   
     120    // Always use the current version from the plugin file
    113121    $version_installed = abmsense_get_version();
    114122   
  • abmsense/trunk/readme.txt

    r3286862 r3286869  
    77Tested up to: 6.8
    88Requires PHP: 7.2
    9 Stable tag: 3.3.16
     9Stable tag: 3.3.17
    1010License: GPLv2 or later
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    125125* Adding Export CSV inside the Identified Companies table
    126126
    127 = 3.3.16 =
     127= 3.3.17 =
    128128* Added: User Management table
    129129* Added: Hot Lead Alerts
Note: See TracChangeset for help on using the changeset viewer.