Plugin Directory

Changeset 3337534


Ignore:
Timestamp:
08/01/2025 01:34:50 AM (8 months ago)
Author:
coolcoders
Message:

Version upodate 3.2.1

Location:
events-calendar-for-google/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • events-calendar-for-google/trunk/README.txt

    r3327892 r3337534  
    44Tags: calender, google calendar , event calendar, event, events
    55Requires at least: 4.5
    6 Tested up to: 6.7
     6Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 3.2.0
     8Stable tag: 3.2.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7878
    7979== Changelog ==
    80 <h2> Version 3.2.0| 08 July 2025 </h2>
     80<h2> Version 3.2.1| 31 July 2025 </h2>
     81<pre>
     82 improvement: Depreciated errors removed.
     83 improvement: Plugin testing with wordpress version 6.8 .
     84</pre>
     85<h2> Version 3.2.0| 18 Jan 2025 </h2>
    8186<pre>
    8287 improvement: Error removed from installation steps.
  • events-calendar-for-google/trunk/events_calendar_for_google.php

    r3320320 r3337534  
    77 * Plugin Name:       Events Calendar for Google
    88 * Description:       List Google Calender with customized layouts. Manange your Calender events Style from wordpress dashboard.
    9  * Version:           3.2.0
     9 * Version:           3.2.1
    1010 * Author:            Blue Plugins
    1111 * Author URI:        https://blueplugins.com/
     
    2424 * Currently plugin version.
    2525 */
    26 define( 'ECFG_VERSION', '3.2.0' );
     26define( 'ECFG_VERSION', '3.2.1' );
    2727define('ECFG_PLUGIN_DIR',plugin_dir_path( __FILE__ ));
    2828
     
    5757            $this->version = ECFG_VERSION;
    5858        } else {
    59             $this->version = '3.2.0';
     59            $this->version = '3.2.1';
    6060        }
    6161        $this->plugin_name = 'events_calendar_google';
  • events-calendar-for-google/trunk/includes/class-ecfg-custom-hooks.php

    r3320320 r3337534  
    1818 */
    1919class ECFG_Define_Custom_Hooks {
    20      
     20     public $template_function;
    2121    /*Introducing variables here*/ 
    2222   
  • events-calendar-for-google/trunk/includes/class-ecfg-template-functions.php

    r3320320 r3337534  
    1919 */
    2020class ECFG_template_functions {
    21      
    22     /*Introducing variables here*/ 
     21    public $calender_id;
     22    public $client_key;
     23        /*Introducing variables here*/ 
    2324    protected $error_message;
    2425       
  • events-calendar-for-google/trunk/public/class-events-calendar-for-google-public.php

    r3320320 r3337534  
    3131     */
    3232    private $plugin_name;
    33 
     33    public $template_function;
     34    public $custom_hooks;
     35    public $layout;
    3436    /**
    3537     * The version of this plugin.
Note: See TracChangeset for help on using the changeset viewer.