Changeset 3337534
- Timestamp:
- 08/01/2025 01:34:50 AM (8 months ago)
- Location:
- events-calendar-for-google/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (2 diffs)
-
events_calendar_for_google.php (modified) (3 diffs)
-
includes/class-ecfg-custom-hooks.php (modified) (1 diff)
-
includes/class-ecfg-template-functions.php (modified) (1 diff)
-
public/class-events-calendar-for-google-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
events-calendar-for-google/trunk/README.txt
r3327892 r3337534 4 4 Tags: calender, google calendar , event calendar, event, events 5 5 Requires at least: 4.5 6 Tested up to: 6. 76 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 3.2. 08 Stable tag: 3.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 79 79 == 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> 81 86 <pre> 82 87 improvement: Error removed from installation steps. -
events-calendar-for-google/trunk/events_calendar_for_google.php
r3320320 r3337534 7 7 * Plugin Name: Events Calendar for Google 8 8 * Description: List Google Calender with customized layouts. Manange your Calender events Style from wordpress dashboard. 9 * Version: 3.2. 09 * Version: 3.2.1 10 10 * Author: Blue Plugins 11 11 * Author URI: https://blueplugins.com/ … … 24 24 * Currently plugin version. 25 25 */ 26 define( 'ECFG_VERSION', '3.2. 0' );26 define( 'ECFG_VERSION', '3.2.1' ); 27 27 define('ECFG_PLUGIN_DIR',plugin_dir_path( __FILE__ )); 28 28 … … 57 57 $this->version = ECFG_VERSION; 58 58 } else { 59 $this->version = '3.2. 0';59 $this->version = '3.2.1'; 60 60 } 61 61 $this->plugin_name = 'events_calendar_google'; -
events-calendar-for-google/trunk/includes/class-ecfg-custom-hooks.php
r3320320 r3337534 18 18 */ 19 19 class ECFG_Define_Custom_Hooks { 20 20 public $template_function; 21 21 /*Introducing variables here*/ 22 22 -
events-calendar-for-google/trunk/includes/class-ecfg-template-functions.php
r3320320 r3337534 19 19 */ 20 20 class ECFG_template_functions { 21 22 /*Introducing variables here*/ 21 public $calender_id; 22 public $client_key; 23 /*Introducing variables here*/ 23 24 protected $error_message; 24 25 -
events-calendar-for-google/trunk/public/class-events-calendar-for-google-public.php
r3320320 r3337534 31 31 */ 32 32 private $plugin_name; 33 33 public $template_function; 34 public $custom_hooks; 35 public $layout; 34 36 /** 35 37 * The version of this plugin.
Note: See TracChangeset
for help on using the changeset viewer.