Plugin Directory

Changeset 2457913


Ignore:
Timestamp:
01/17/2021 07:31:16 PM (5 years ago)
Author:
raisedonors
Message:

fix install issue

Location:
raisedonors/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • raisedonors/trunk/README.txt

    r2444666 r2457913  
    6464
    6565== Changelog ==
     661.0.2
     67* 2021-01-17 fix - install issue
     68
     691.0.1
     70* 2020-12-20 add - media files for wp plugin page
     71
     721.0.0
     73* 2020-12-18 initial relase.
    6674
    6775
  • raisedonors/trunk/gutenberg-block/plugin.php

    r2444660 r2457913  
    11<?php
    2 /**
    3  * Plugin Name: my-block — CGB Gutenberg Block Plugin
    4  * 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, maedahbatool
    7  * Author URI: https://AhmadAwais.com/
    8  * Version: 1.0.0
    9  * License: GPL2+
    10  * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
    11  *
    12  * @package CGB
    13  */
    14 
    152// Exit if accessed directly.
    163if ( ! defined( 'ABSPATH' ) ) {
  • raisedonors/trunk/includes/class-raise-donors.php

    r2444660 r2457913  
    8383            $this->version = RAISE_DONORS_VERSION;
    8484        } else {
    85             $this->version = '1.0.0';
     85            $this->version = '1.0.2';
    8686        }
    8787        $this->plugin_name = 'raise-donors';
     
    125125        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-raise-donors-connection.php';
    126126
    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';
    128128
    129129
     
    222222        } );
    223223        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 );
    225225      wp_enqueue_style( 'raise-donors-elementor', plugin_dir_url( __FILE__ ) . '../admin/css/raise-donors-elementor.css');
    226226        } );
  • raisedonors/trunk/raise-donors.php

    r2444660 r2457913  
    1010 * Plugin URI:        https://raisedonors.zendesk.com/hc/en-us/categories/360004594551-Wordpress-Plugin
    1111 * Description:       Easily embed your RaiseDonors donation forms with just a few clicks.
    12  * Version:           1.0.0
     12 * Version:           1.0.2
    1313 * Author:            RaiseDonors
    1414 * Author URI:        https://raisedonors.com/
     
    2727 * Currently plugin version.
    2828 */
    29 define( 'RAISE_DONORS_VERSION', '1.0.0' );
     29define( 'RAISE_DONORS_VERSION', '1.0.2' );
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.