Plugin Directory

Changeset 3111958


Ignore:
Timestamp:
07/03/2024 09:46:06 PM (21 months ago)
Author:
aldeng
Message:

4.6.8

Location:
event-agent/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • event-agent/trunk/README.txt

    r3083492 r3111958  
    88Requires PHP:      8.0
    99Requires at least: 6.0
    10 Tested up to:      6.4
    11 Stable tag:        4.6.7
    12 Version:           4.6.7
     10Tested up to:      6.6
     11Stable tag:        4.6.8
     12Version:           4.6.8
    1313License:           GPLv2 or later
    1414License URI:       http://www.gnu.org/licenses/gpl-2.0.html
  • event-agent/trunk/admin/js/events-vue.js

    r3035307 r3111958  
    3636                }
    3737            },
    38             calendarTimeZone: 'local',
     38            calendarTimeZone: '',
    3939            editor: ClassicEditor,
    4040            editorConfig: {
     
    163163            eventPage: null,
    164164            oldBackgroundId: 0,
    165             oldImageId: 0
     165            oldImageId: 0,
     166            timezones: ''
    166167        },
    167168
     
    712713                            this.hasStripe = response.data.hasStripe;
    713714                            this.eventPage = response.data.eventPage;
     715                            this.calendarTimeZone = response.data.timezoneId;
     716                            this.timezones = response.data.timezones;
    714717                            this.loading = false;
    715718                            this.pendingConfiguration = !this.hasCheckInPage || !this.hasRegistrationPage ||
     
    12231226                    duration: 3600000,
    12241227                    priceTiers: [],
    1225                     hybridVenueId: null
     1228                    hybridVenueId: null,
     1229                    timeZone: this.calendarTimeZone
    12261230                };
    12271231                this.event.registrationStartDate = this.event.startDate;
  • event-agent/trunk/admin/partials/events.php

    r3032376 r3111958  
    274274                                    content="<?php esc_html_e('The time zone of this event.', 'event-agent'); ?>"></ea-label-help>
    275275                                <el-select v-model="event.timeZone" placeholder="<?php esc_html_e('Time Zone', 'event-agent'); ?>" filterable @change="handleTzChange">
    276                                     <el-option v-for="timezone in event.timezones" :key="timezone" :label="timezone" :value="timezone"></el-option>
     276                                    <el-option v-for="timezone in timezones" :key="timezone" :label="timezone" :value="timezone"></el-option>
    277277                                </el-select>
    278278                            </el-form-item>
  • event-agent/trunk/event-agent.php

    r3083492 r3111958  
    1111 * Plugin URI:        https://www.eventagent.ai/
    1212 * Description:       EventAgent.ai combines a next generation event management system with AI-powered marketing to maximize your sales.  AI makes all the difference.
    13  * Version:           4.6.7
     13 * Version:           4.6.8
    1414 * Requires at least: 6.0
    1515 * Requires PHP:      8.0
     
    2525}
    2626
    27 define( 'EVENT_AGENT_VERSION', '4.6.7' );
     27define( 'EVENT_AGENT_VERSION', '4.6.8' );
    2828
    2929require_once dirname(__FILE__).'/includes/activate.php';
Note: See TracChangeset for help on using the changeset viewer.