Plugin Directory

Changeset 2411812


Ignore:
Timestamp:
11/03/2020 12:19:02 PM (5 years ago)
Author:
fooevents
Message:

Release 1.6.0

Location:
fooevents-calendar
Files:
64 added
20 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • fooevents-calendar/trunk/default.po

    r2390985 r2411812  
    22msgstr ""
    33"Project-Id-Version: FooEvents Calendar\n"
    4 "POT-Creation-Date: 2020-09-30 13:49+0200\n"
    5 "PO-Revision-Date: 2020-09-30 13:49+0200\n"
     4"POT-Creation-Date: 2020-11-03 12:15+0200\n"
     5"PO-Revision-Date: 2020-11-03 12:15+0200\n"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    108108msgstr ""
    109109
    110 #: fooevents-calendar.php:1950
     110#: fooevents-calendar.php:1979
    111111msgid "Calendar Settings"
    112112msgstr ""
    113113
    114 #: fooevents-calendar.php:1956
     114#: fooevents-calendar.php:1985
    115115msgid "Enable 24 hour time format"
    116116msgstr ""
    117117
    118 #: fooevents-calendar.php:1960
     118#: fooevents-calendar.php:1989
    119119msgid "Uses 24 hour time format on the calendar."
    120120msgstr ""
    121121
    122 #: fooevents-calendar.php:1965 templates/calendar-options.php:16
     122#: fooevents-calendar.php:1994 templates/calendar-options.php:16
    123123msgid "Only display start day"
    124124msgstr ""
    125125
    126 #: fooevents-calendar.php:1969
     126#: fooevents-calendar.php:1998
    127127msgid "When multi-day plugin is active only display the event start day"
    128128msgstr ""
    129129
    130 #: fooevents-calendar.php:1973
     130#: fooevents-calendar.php:2002
    131131msgid "Enable full day events"
    132132msgstr ""
    133133
    134 #: fooevents-calendar.php:1977
     134#: fooevents-calendar.php:2006
    135135msgid "Removes event time from calendar entry titles."
    136136msgstr ""
    137137
    138 #: fooevents-calendar.php:1981 templates/calendar-options.php:30
     138#: fooevents-calendar.php:2010 templates/calendar-options.php:30
    139139msgid "Calendar theme"
    140140msgstr ""
    141141
    142 #: fooevents-calendar.php:1987 fooevents-calendar.php:2003
     142#: fooevents-calendar.php:2016 fooevents-calendar.php:2032
    143143msgid "Default"
    144144msgstr ""
    145145
    146 #: fooevents-calendar.php:1988
     146#: fooevents-calendar.php:2017
    147147msgid "Light"
    148148msgstr ""
    149149
    150 #: fooevents-calendar.php:1989
     150#: fooevents-calendar.php:2018
    151151msgid "Dark"
    152152msgstr ""
    153153
    154 #: fooevents-calendar.php:1990
     154#: fooevents-calendar.php:2019
    155155msgid "Flat"
    156156msgstr ""
    157157
    158 #: fooevents-calendar.php:1991
     158#: fooevents-calendar.php:2020
    159159msgid "Minimalist"
    160160msgstr ""
    161161
    162 #: fooevents-calendar.php:1993
     162#: fooevents-calendar.php:2022
    163163msgid "Selects calendar theme to be used on Wordpress frontend."
    164164msgstr ""
    165165
    166 #: fooevents-calendar.php:1997 templates/calendar-options.php:43
     166#: fooevents-calendar.php:2026 templates/calendar-options.php:43
    167167msgid "Events list theme"
    168168msgstr ""
    169169
    170 #: fooevents-calendar.php:2004
     170#: fooevents-calendar.php:2033
    171171msgid "Light Card"
    172172msgstr ""
    173173
    174 #: fooevents-calendar.php:2005
     174#: fooevents-calendar.php:2034
    175175msgid "Dark Card"
    176176msgstr ""
    177177
    178 #: fooevents-calendar.php:2007
     178#: fooevents-calendar.php:2036
    179179msgid "Selects events list theme to be used on Wordpress frontend."
    180180msgstr ""
  • fooevents-calendar/trunk/fooevents-calendar.php

    r2391503 r2411812  
    33 * Plugin Name: FooEvents Calendar
    44 * Description: Add event information to any post, page or custom post type and display it in a stylish calendar.
    5  * Version: 1.5.26
     5 * Version: 1.6.0
    66 * Author: FooEvents
    77 * Plugin URI: https://www.fooevents.com/fooevents-calendar/
     
    858858            'event.start.utc'    => $event_date,
    859859            'event.end.utc'      => $event_end_date,
    860             'event.start.timezone' => $timezone,
    861             'event.end.timezone' => $timezone,
     860            'event.start.timezone' => 'UTC',
     861            'event.end.timezone' => 'UTC',
    862862            'event.currency' => 'USD'
    863863
     
    13461346        }
    13471347       
     1348        if (is_plugin_active('fooevents_bookings/fooevents-bookings.php') || is_plugin_active_for_network('fooevents_bookings/fooevents-bookings.php')) {
     1349
     1350            $FooEvents_Bookings = new FooEvents_Bookings();
     1351            $booking_events = $FooEvents_Bookings->get_bookings_for_calendar();
     1352
     1353            $events = array_merge_recursive($events, $booking_events);
     1354           
     1355        }
     1356       
    13481357        $json_events = array_merge($attributes, $events);
    13491358        $json_events = addslashes(json_encode($json_events, JSON_HEX_QUOT | JSON_HEX_APOS));
     
    17091718                if($multi_day_type == 'select') {
    17101719
    1711                     $multi_day_dates= $Fooevents_Multiday_Events->get_multi_day_selected_dates($event->ID);
     1720                    $multi_day_dates = $Fooevents_Multiday_Events->get_multi_day_selected_dates($event->ID);
    17121721                   
    17131722                    if($display_type == 'events_list') {
     
    18241833                    if(!empty($event_end_date)) {
    18251834
    1826                         $event_end_date_formatted = $Fooevents_Multiday_Events->format_end_date($event->ID, '', $display_type);
     1835                        $event_end_date_formatted = $Fooevents_Multiday_Events->format_end_date($event->ID, true, $display_type);
    18271836                       
    18281837                        if($globalFooEventsStartDay != 'yes') {
  • fooevents-calendar/trunk/readme.txt

    r2391503 r2411812  
    11=== FooEvents Calendar ===
    22Contributors: fooevents, jasondugmore, robiin
    3 Tags: calendar, events, widget, simple, month, list, venue, eventbrite, sidebar, sell tickets, registration, WooCommerce, tickets, ticketing, dates, date, plugin, posts, template, calenrad theme, themes, theme, time, google maps, google, maps, conference, multi-day, training, workshop, fundraiser, marathon, race, meetup, concert, meeting, seminar, summit, forum
    4 Requires at least: 4
     3Tags: calendar, events, tickets, seminar
     4Requires at least: 5
    55Tested up to: 5.5
    6 Stable tag: 1.5.26
     6Stable tag: 1.6.0
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    161161
    162162== Changelog ==
     163= 1.6.0 =
     164* FIXED: Eventbrite import bug *
     165* FIXED: Multi-day display bug *
     166* FIXED: Various small bugs *
     167* TESTED ON: WordPress 5.5.3 and WooCommerce 4.6.1 *
     168
    163169= 1.5.26 =
    164170* ADDED: Event expiration support *
  • fooevents-calendar/trunk/templates/list_of_events.php

    r2321603 r2411812  
    1515            <?php endif; ?>
    1616            <?php if(!empty($event['desc'])) : ?>
    17             <p><?php echo wp_kses_post($event['desc']); ?></p>
     17            <p class="fooevents-calendar-list-desc"><?php echo wp_kses_post($event['desc']); ?></p>
    1818            <?php endif; ?>
    1919            <?php if(!empty($event['in_stock']) && $event['in_stock'] == 'yes'): ?>
  • fooevents-calendar/trunk/updatelog.txt

    r2391503 r2411812  
    33
    44------------------
     51.6.0
     6FIXED: Eventbrite import bug
     7FIXED: Multi-day display bug
     8FIXED: Various small bugs
     9TESTED ON: WordPress 5.5.3 and WooCommerce 4.6.1
     10
    5111.5.26
    612ADDED: Event expiration support
Note: See TracChangeset for help on using the changeset viewer.