Changeset 3481952
- Timestamp:
- 03/13/2026 12:02:41 PM (3 weeks ago)
- Location:
- coinsnap-bitcoin-donation
- Files:
-
- 46 added
- 2 edited
-
tags/1.4.2 (added)
-
tags/1.4.2/assets (added)
-
tags/1.4.2/assets/css (added)
-
tags/1.4.2/assets/css/admin-style.css (added)
-
tags/1.4.2/assets/css/index.php (added)
-
tags/1.4.2/assets/css/shoutouts.css (added)
-
tags/1.4.2/assets/css/style-wide.css (added)
-
tags/1.4.2/assets/css/style.css (added)
-
tags/1.4.2/assets/images (added)
-
tags/1.4.2/assets/images/bitcoin.svg (added)
-
tags/1.4.2/assets/images/bitcoinqr.svg (added)
-
tags/1.4.2/assets/images/checkmark.svg (added)
-
tags/1.4.2/assets/images/index.php (added)
-
tags/1.4.2/assets/index.php (added)
-
tags/1.4.2/assets/js (added)
-
tags/1.4.2/assets/js/admin.js (added)
-
tags/1.4.2/assets/js/donations.js (added)
-
tags/1.4.2/assets/js/index.php (added)
-
tags/1.4.2/assets/js/multi.js (added)
-
tags/1.4.2/assets/js/popup.js (added)
-
tags/1.4.2/assets/js/shared.js (added)
-
tags/1.4.2/assets/js/shoutouts.js (added)
-
tags/1.4.2/coinsnap-bitcoin-donation.php (added)
-
tags/1.4.2/includes (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-client.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-forms.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-list.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-public-donors.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-settings.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shortcode-multi-amount-wide.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shortcode-multi-amount.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shortcode-wide.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shortcode.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shoutout-posts.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shoutouts-form.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-shoutouts-list.php (added)
-
tags/1.4.2/includes/class-coinsnap-bitcoin-donation-webhooks.php (added)
-
tags/1.4.2/includes/index.php (added)
-
tags/1.4.2/index.php (added)
-
tags/1.4.2/languages (added)
-
tags/1.4.2/languages/index.php (added)
-
tags/1.4.2/readme.txt (added)
-
tags/1.4.2/templates (added)
-
tags/1.4.2/templates/coinsnap-bitcoin-donation-modal.php (added)
-
tags/1.4.2/templates/index.php (added)
-
tags/1.4.2/uninstall.php (added)
-
trunk/coinsnap-bitcoin-donation.php (modified) (7 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coinsnap-bitcoin-donation/trunk/coinsnap-bitcoin-donation.php
r3481935 r3481952 4 4 * Plugin URI: https://coinsnap.io/wp-plugins/wp-bitcoin-donation/ 5 5 * Description: Easy Bitcoin donations on a WordPress website 6 * Version: 1.4. 16 * Version: 1.4.2 7 7 * Author: Coinsnap 8 8 * Author URI: https://coinsnap.io/ … … 19 19 20 20 if(!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' );}21 if(!defined( 'COINSNAP_BITCOIN_DONATION_VERSION' ) ) { define( 'COINSNAP_BITCOIN_DONATION_VERSION', '1.4.2' );} 22 22 if(!defined( 'COINSNAP_BITCOIN_DONATION_PHP_VERSION' ) ) { define( 'COINSNAP_BITCOIN_DONATION_PHP_VERSION', '8.0' );} 23 23 if(!defined( 'COINSNAP_BITCOIN_DONATION_PLUGIN_DIR' ) ){define('COINSNAP_BITCOIN_DONATION_PLUGIN_DIR',plugin_dir_url(__FILE__));} … … 300 300 301 301 global $post; 302 302 /* 303 303 if( 304 304 has_shortcode($post->post_content, 'coinsnap_bitcoin_donation') || … … 308 308 has_shortcode($post->post_content, 'shoutout_form') || 309 309 has_shortcode($post->post_content, 'shoutout_list') 310 ){ 310 )*/ 311 { 311 312 312 313 wp_enqueue_style('coinsnap-bitcoin-donation-style', plugin_dir_url(__FILE__) . 'assets/css/style.css', [], COINSNAP_BITCOIN_DONATION_VERSION); … … 387 388 388 389 } 389 390 /* 390 391 if(( 391 392 has_shortcode($post->post_content, 'coinsnap_bitcoin_donation') || 392 393 has_shortcode($post->post_content, 'coinsnap_bitcoin_donation_wide')) 393 ) {394 )*/{ 394 395 395 396 //Localize script for donationData … … 402 403 ]); 403 404 } 404 405 /* 405 406 if(( 406 407 has_shortcode($post->post_content, 'multi_amount_donation') || 407 408 has_shortcode($post->post_content, 'multi_amount_donation_wide')) 408 ) {409 )*/{ 409 410 // Localize script for multiData 410 411 wp_enqueue_script('coinsnap-bitcoin-donation-multi-script',plugin_dir_url(__FILE__).'assets/js/multi.js',['jquery'],COINSNAP_BITCOIN_DONATION_VERSION, true); … … 421 422 } 422 423 423 if((424 /*if(( 424 425 has_shortcode($post->post_content, 'shoutout_form') || 425 426 has_shortcode($post->post_content, 'shoutout_list')) 426 ) {427 )*/{ 427 428 428 429 // Localize script for shoutoutsData -
coinsnap-bitcoin-donation/trunk/readme.txt
r3481935 r3481952 4 4 Tags: Lightning, SATS, bitcoin, donation, BTCPay 5 5 Tested up to: 6.9 6 Stable tag: 1.4. 16 Stable tag: 1.4.2 7 7 License: GPL2 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 203 203 * Update: Added plugin isolation from other plugins in backend. 204 204 205 = 1.4.0 :: 2026-03-1 2=205 = 1.4.0 :: 2026-03-11 = 206 206 * Update: Fiat/Crypto amount calculation in frontend. 207 207 * Update: Minimum and premium donation amounts in Shoutout form. … … 209 209 * Compatibility with Wordpress 6.9.4 is tested. 210 210 211 = 1.4.1 :: 2026-03-1 3=211 = 1.4.1 :: 2026-03-12 = 212 212 * Fixed: CSS and JS files enqueue conditions. 213 213 * Fixed: Class Coinsnap_Bitcoin_Donation_Client() call during payment amount check. 214 214 * 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.