Plugin Directory

Changeset 3360366


Ignore:
Timestamp:
09/12/2025 09:10:39 AM (7 months ago)
Author:
eventilla
Message:

Deploy version 2.0.10

Location:
eventilla-events
Files:
296 added
4 edited

Legend:

Unmodified
Added
Removed
  • eventilla-events/trunk/README.txt

    r3360338 r3360366  
    44Tags: events, event
    55Requires at least: 6.7.0
    6 Tested up to: 6.8.1
     6Tested up to: 6.8.2
    77Requires PHP: 7.4
    8 Stable tag: 2.0.9
     8Stable tag: 2.0.10
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454
    5555=== Changelog ==
     56= 2.0.10 =
     57- Fix jQuery error in settings page
    5658= 2.0.9 =
    5759- JSON encoded post meta data is now wp_slashed so slashes are not removed when data is sanitized
  • eventilla-events/trunk/admin/js/eventilla-wp-admin.js

    r3283265 r3360366  
    3434         var codeEditorTile = '';
    3535         var codeEditorCss = '';
    36 
    37          if ($('#eventilla_opt_template_editor_list').length > 0) {
    38              codeEditorList = wp.codeEditor.initialize($('#eventilla_opt_template_editor_list'), cm_settings);
    39              codeEditorTable = wp.codeEditor.initialize($('#eventilla_opt_template_editor_table'), cm_settings);
    40              codeEditorTile = wp.codeEditor.initialize($('#eventilla_opt_template_editor_tile'), cm_settings);
    41              codeEditorCss = wp.codeEditor.initialize($('#eventilla_opt_css_editor'), cm_settings);
    42          }
    43 
    4436
    4537        /* Reset links elements */
  • eventilla-events/trunk/eventilla-wp.php

    r3360338 r3360366  
    1616 * Plugin URI:        https://www.eventilla.com/
    1717 * Description:       Eventilla Events brings your event information from eventilla.com to WordPress as custom posts.
    18  * Version:           2.0.9
     18 * Version:           2.0.10
    1919 * Author:            Eventilla
    2020 * Author URI:        http://www.eventilla.com
     
    3636 */
    3737if(!defined('EVENTILLA_WP_VERSION')) {
    38     define('EVENTILLA_WP_VERSION', '2.0.9');
     38    define('EVENTILLA_WP_VERSION', '2.0.10');
    3939}
    4040
  • eventilla-events/trunk/includes/class-eventilla-wp.php

    r3283265 r3360366  
    7373
    7474        $this->plugin_name = 'eventilla-wp';
    75         $this->version = '1.9.0';
     75        $this->version = defined('EVENTILLA_WP_VERSION') ? EVENTILLA_WP_VERSION : '1.0.0';
    7676
    7777        $this->load_dependencies();
Note: See TracChangeset for help on using the changeset viewer.