Plugin Directory

Changeset 3395504


Ignore:
Timestamp:
11/14/2025 06:10:15 AM (4 weeks ago)
Author:
Icegram
Message:

Preparing for 1.3.20 release

Location:
icegram-rainmaker/trunk
Files:
2 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • icegram-rainmaker/trunk/icegram-rainmaker.php

    r3286137 r3395504  
    44 * Plugin URI: http://www.icegram.com/addons/icegram-rainmaker/
    55 * Description: The complete solution to create simple forms and collect leads
    6  * Version: 1.3.19
     6 * Version: 1.3.20
    77 * Tested up to: 6.8
    88 * Author: icegram
     
    131131
    132132if ( ! defined( 'IG_RM_PLUGIN_VERSION' ) ) {
    133     define( 'IG_RM_PLUGIN_VERSION', '1.3.19' );
     133    define( 'IG_RM_PLUGIN_VERSION', '1.3.20' );
    134134}
    135135
  • icegram-rainmaker/trunk/lite/classes/class-icegram-rainmaker.php

    r3188554 r3395504  
    239239                update_option( $option_name . '_icegram', 'yes', false );
    240240
    241                 if ( 'rm_offer_bfcm_2024' === $option_name ) {
    242                     $url = "https://www.icegram.com/rainmaker-pricing-table/?utm_source=in_app&utm_medium=rm_banner&utm_campaign=offer_bfcm_2024";
     241                if ( 'rm_offer_bfcm_2025' === $option_name ) {
     242                    $url = "https://www.icegram.com/rainmaker-pricing-table/?utm_source=in_app&utm_medium=rm_banner&utm_campaign=offer_bfcm_2025";
    243243                    header( "Location: {$url}" );
    244244                    exit();
     
    16491649
    16501650                if ( 'bfcm' === $offer_name ) {
    1651                     $offer_start_time = strtotime( '2024-11-26 12:30:00' ); // Offer start time in IST
    1652                     $offer_end_time   = strtotime( '2024-12-05 12:30:00' ); // Offer end time in ISTsdf
     1651                    $offer_start_time = strtotime( '2025-11-14 12:30:00' ); // Offer start time in IST
     1652                    $offer_end_time   = strtotime( '2025-12-05 12:30:00' ); // Offer end time in IST
    16531653                }
    16541654   
  • icegram-rainmaker/trunk/lite/classes/rm-offer.php

    r3188554 r3395504  
    11<?php
    22global $icegram_rainmaker;
    3 // BFCM 2022 Campaign
    4 if ( ( get_option( 'rm_offer_bfcm_2024_icegram' ) !== 'yes' ) && Rainmaker::is_offer_period( 'bfcm') ) {
    5     $img_url = $this->plugin_url . '../assets/images/bfcm-collect-free-pro-banner-2024.png';
     3// BFCM 2025 Campaign
     4if ( ( get_option( 'rm_offer_bfcm_2025_icegram' ) !== 'yes' ) && Rainmaker::is_offer_period( 'bfcm') ) {
     5    $img_url = $this->plugin_url . '../assets/images/bfcm-collect-free-pro-banner-2025.png';
    66    $ig_rm_plan = $icegram_rainmaker->get_plan();
    77    if( 'max' === $ig_rm_plan ){
    8         $img_url = $this->plugin_url .'../assets/images/bfcm-common-max-banner-2024.jpg';
     8        $img_url = $this->plugin_url .'../assets/images/bfcm-common-max-banner-2025.png';
    99    }
    1010    //elseif( 'plus' === $ig_rm_plan || 'pro' === $ig_rm_plan ){
     
    2222    </style>
    2323    <div class="ig_rm_offer">
    24         <a target="_blank" href="?rm_dismiss_admin_notice=1&rm_option_name=rm_offer_bfcm_2024"><img style="margin:0 auto" src="<?php echo $img_url; ?>"/></a>
     24        <a target="_blank" href="?rm_dismiss_admin_notice=1&rm_option_name=rm_offer_bfcm_2025"><img style="margin:0 auto" src="<?php echo $img_url; ?>"/></a>
    2525    </div>
    2626<?php } ?>
  • icegram-rainmaker/trunk/readme.txt

    r3286137 r3395504  
    66Requires PHP: 5.5
    77Tested up to: 6.8
    8 Stable tag: 1.3.19
     8Stable tag: 1.3.20
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    166166== Upgrade Notice ==
    167167
     168**1.3.20**
     169
     170* Update: UI/UX improvements
     171
     172== Changelog ==
     173
     174**1.3.20**
     175
     176* Update: UI/UX improvements
     177
    168178**1.3.19**
    169179
     
    172182* Fix: Fixed issue where the MailChimp "Verify API Key" button didn't work for existing forms
    173183
    174 == Changelog ==
    175 
    176 **1.3.19**
    177 
    178 * Update: WordPress 6.8 compatibility check
    179 * Fix: Added missing authorization and nonce checks [Thanks to the Patchstack team]
    180 * Fix: Fixed issue where the MailChimp "Verify API Key" button didn't work for existing forms
    181 
    182184**1.3.18**
    183185
Note: See TracChangeset for help on using the changeset viewer.