Changeset 2457913
- Timestamp:
- 01/17/2021 07:31:16 PM (5 years ago)
- Location:
- raisedonors/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
gutenberg-block/plugin.php (modified) (1 diff)
-
includes/class-raise-donors.php (modified) (3 diffs)
-
raise-donors.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
raisedonors/trunk/README.txt
r2444666 r2457913 64 64 65 65 == Changelog == 66 1.0.2 67 * 2021-01-17 fix - install issue 68 69 1.0.1 70 * 2020-12-20 add - media files for wp plugin page 71 72 1.0.0 73 * 2020-12-18 initial relase. 66 74 67 75 -
raisedonors/trunk/gutenberg-block/plugin.php
r2444660 r2457913 1 1 <?php 2 /**3 * Plugin Name: my-block — CGB Gutenberg Block Plugin4 * Plugin URI: https://github.com/ahmadawais/create-guten-block/5 * Description: my-block — is a Gutenberg plugin created via create-guten-block.6 * Author: mrahmadawais, maedahbatool7 * Author URI: https://AhmadAwais.com/8 * Version: 1.0.09 * License: GPL2+10 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt11 *12 * @package CGB13 */14 15 2 // Exit if accessed directly. 16 3 if ( ! defined( 'ABSPATH' ) ) { -
raisedonors/trunk/includes/class-raise-donors.php
r2444660 r2457913 83 83 $this->version = RAISE_DONORS_VERSION; 84 84 } else { 85 $this->version = '1.0. 0';85 $this->version = '1.0.2'; 86 86 } 87 87 $this->plugin_name = 'raise-donors'; … … 125 125 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-raise-donors-connection.php'; 126 126 127 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'gutenberg-block/ src/init.php';127 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'gutenberg-block/init.php'; 128 128 129 129 … … 222 222 } ); 223 223 add_action( 'elementor/editor/wp_head', function () { 224 wp_enqueue_script( 'raise-donors-elementor', plugin_dir_url( __FILE__ ) . '../admin/js/raise-donors-elementor.js', [ 'jquery' ], '1.0.0', true );224 wp_enqueue_script( 'raise-donors-elementor', plugin_dir_url( __FILE__ ) . '../admin/js/raise-donors-elementor.js', [ 'jquery' ], $this->version, true ); 225 225 wp_enqueue_style( 'raise-donors-elementor', plugin_dir_url( __FILE__ ) . '../admin/css/raise-donors-elementor.css'); 226 226 } ); -
raisedonors/trunk/raise-donors.php
r2444660 r2457913 10 10 * Plugin URI: https://raisedonors.zendesk.com/hc/en-us/categories/360004594551-Wordpress-Plugin 11 11 * Description: Easily embed your RaiseDonors donation forms with just a few clicks. 12 * Version: 1.0. 012 * Version: 1.0.2 13 13 * Author: RaiseDonors 14 14 * Author URI: https://raisedonors.com/ … … 27 27 * Currently plugin version. 28 28 */ 29 define( 'RAISE_DONORS_VERSION', '1.0. 0' );29 define( 'RAISE_DONORS_VERSION', '1.0.2' ); 30 30 31 31 /**
Note: See TracChangeset
for help on using the changeset viewer.