Plugin Directory

Changeset 3481952


Ignore:
Timestamp:
03/13/2026 12:02:41 PM (3 weeks ago)
Author:
coinsnap
Message:
  1. 1.4.2
Location:
coinsnap-bitcoin-donation
Files:
46 added
2 edited

Legend:

Unmodified
Added
Removed
  • coinsnap-bitcoin-donation/trunk/coinsnap-bitcoin-donation.php

    r3481935 r3481952  
    44 * Plugin URI:         https://coinsnap.io/wp-plugins/wp-bitcoin-donation/
    55 * Description:        Easy Bitcoin donations on a WordPress website
    6  * Version:            1.4.1
     6 * Version:            1.4.2
    77 * Author:             Coinsnap
    88 * Author URI:         https://coinsnap.io/
     
    1919
    2020if(!defined( 'COINSNAP_BITCOIN_DONATION_REFERRAL_CODE' ) ) { define( 'COINSNAP_BITCOIN_DONATION_REFERRAL_CODE', 'D19833' );}
    21 if(!defined( 'COINSNAP_BITCOIN_DONATION_VERSION' ) ) { define( 'COINSNAP_BITCOIN_DONATION_VERSION', '1.4.1' );}
     21if(!defined( 'COINSNAP_BITCOIN_DONATION_VERSION' ) ) { define( 'COINSNAP_BITCOIN_DONATION_VERSION', '1.4.2' );}
    2222if(!defined( 'COINSNAP_BITCOIN_DONATION_PHP_VERSION' ) ) { define( 'COINSNAP_BITCOIN_DONATION_PHP_VERSION', '8.0' );}
    2323if(!defined( 'COINSNAP_BITCOIN_DONATION_PLUGIN_DIR' ) ){define('COINSNAP_BITCOIN_DONATION_PLUGIN_DIR',plugin_dir_url(__FILE__));}
     
    300300       
    301301        global $post;
    302    
     302    /*
    303303        if(
    304304                has_shortcode($post->post_content, 'coinsnap_bitcoin_donation') ||
     
    308308                has_shortcode($post->post_content, 'shoutout_form') ||
    309309                has_shortcode($post->post_content, 'shoutout_list')
    310        ){
     310       )*/
     311       {
    311312           
    312313            wp_enqueue_style('coinsnap-bitcoin-donation-style', plugin_dir_url(__FILE__) . 'assets/css/style.css', [], COINSNAP_BITCOIN_DONATION_VERSION);
     
    387388           
    388389        } 
    389        
     390        /*
    390391        if((
    391392            has_shortcode($post->post_content, 'coinsnap_bitcoin_donation') ||
    392393            has_shortcode($post->post_content, 'coinsnap_bitcoin_donation_wide'))
    393         ){
     394        )*/{
    394395       
    395396            //Localize script for donationData
     
    402403            ]);
    403404        }
    404        
     405        /*
    405406        if((
    406407            has_shortcode($post->post_content, 'multi_amount_donation') ||
    407408            has_shortcode($post->post_content, 'multi_amount_donation_wide'))
    408         ){
     409        )*/{
    409410            // Localize script for multiData
    410411            wp_enqueue_script('coinsnap-bitcoin-donation-multi-script',plugin_dir_url(__FILE__).'assets/js/multi.js',['jquery'],COINSNAP_BITCOIN_DONATION_VERSION, true);
     
    421422        }
    422423
    423         if((
     424        /*if((
    424425            has_shortcode($post->post_content, 'shoutout_form') ||
    425426            has_shortcode($post->post_content, 'shoutout_list'))
    426         ){
     427        )*/{
    427428       
    428429            // Localize script for shoutoutsData
  • coinsnap-bitcoin-donation/trunk/readme.txt

    r3481935 r3481952  
    44Tags: Lightning, SATS, bitcoin, donation, BTCPay
    55Tested up to: 6.9
    6 Stable tag: 1.4.1
     6Stable tag: 1.4.2
    77License: GPL2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    203203* Update: Added plugin isolation from other plugins in backend.
    204204
    205 = 1.4.0 :: 2026-03-12 =
     205= 1.4.0 :: 2026-03-11 =
    206206* Update: Fiat/Crypto amount calculation in frontend.
    207207* Update: Minimum and premium donation amounts in Shoutout form.
     
    209209* Compatibility with Wordpress 6.9.4 is tested.
    210210
    211 = 1.4.1 :: 2026-03-13 =
     211= 1.4.1 :: 2026-03-12 =
    212212* Fixed: CSS and JS files enqueue conditions.
    213213* Fixed: Class Coinsnap_Bitcoin_Donation_Client() call during payment amount check.
    214214* Update: Donation widget theme application.
     215
     216= 1.4.2 :: 2026-03-13 =
     217* Update: Shortcode check on CSS and JS files enqueue conditions is temporary removed.
Note: See TracChangeset for help on using the changeset viewer.