Skip to content

Commit

Permalink
Merge pull request #116 from xylusthemes/release/1.7.1
Browse files Browse the repository at this point in the history
Bumped to v1.7.1
  • Loading branch information
Rajat1192 committed Feb 24, 2023
2 parents 10917ff + bae97b4 commit f9bba9e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
Binary file added .wordpress-org/screenshot-17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 14 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
=== WP Event Aggregator: Import Eventbrite events, Meetup events, social events and any iCal Events into WordPress ===
Contributors: xylus,dharm1025
Contributors: xylus,dharm1025,rajat1192
Donate link: http://xylusthemes.com
Tags: facebook events, event aggregator, eventbrite, iCal, facebook, eventbrite, meetup, event aggregator, event feeds, event bulk import, import events, event import, wp events calendar, wp event,event import, event directory, events manager, the events calendar, events, import events, facebook event, meetup event, eventbrite event, ical import, ics import, event management, event calendar, event manager
Requires at least: 4.0
Tested up to: 6.1
Stable tag: 1.7.0
Stable tag: 1.7.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -42,6 +42,8 @@ WP Event Aggregator works as a stand-alone as well as add-on plugin with leading

**Features**

* Upcoming Events Widget On Elementor Editor ([Pro][1]).
* New Event listing Grid view Layout ([Pro][1]).
* Easy and seemless Event import from Facebook, Eventbrite, Meetup, iCalendar and ICS to WordPres.
* Import Eventrite event by Event ID, organiser ID ([Pro][1]) and from your Eventbrite account ([Pro][1]).
* Import Facebook event by Event ID, Facebook page ID ([Pro][1]), Facebook group ([Pro][1]).
Expand Down Expand Up @@ -136,6 +138,16 @@ You can use `[wp_events]` for display in-built events list.

== Changelog ==

= 1.7.1 =
* ADDED: Events Grid List New Layout ( PRO )
* ADDED: Upcoming Events Elementor Widget ( PRO )
* ADDED: Setting Page link in notice.
* ADDED: Schedule import Edit Source Data.
* ADDED: Schedule import Source Data On schedule row.
* FIXED: iCal Outlook import Timezone issue.
* FIXED: Duplicate Event issue in TEC.
* FIXED: Duplicate Event issue in My Calendar.

= 1.7.0 =
* FIXED: All Day events bug.
* FIXED: Events manager location bug.
Expand Down
4 changes: 2 additions & 2 deletions languages/wp-event-aggregator.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: WP Event Aggregator 1.7.0\n"
"Project-Id-Version: WP Event Aggregator 1.7.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-event-aggregator\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-02-24T11:37:13+00:00\n"
"POT-Creation-Date: 2023-02-24T12:40:17+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: wp-event-aggregator\n"
Expand Down
10 changes: 5 additions & 5 deletions wp-event-aggregator.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Event Aggregator
* Plugin URI: http://xylusthemes.com/plugins/wp-event-aggregator/
* Description: Import Events from anywhere - Facebook, Eventbrite, Meetup, iCalendar and ICS into your WordPress site.
* Version: 1.7.0
* Version: 1.7.1
* Author: Xylus Themes
* Author URI: http://xylusthemes.com
* License: GPL-2.0+
Expand Down Expand Up @@ -96,14 +96,14 @@ private function __construct() { /* Do nothing here */ }
*
* @since 1.0.0
*/
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'wp-event-aggregator' ), '1.7.0' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'wp-event-aggregator' ), '1.7.1' ); }

/**
* A dummy magic method to prevent WP_Event_Aggregator from being unserialized.
*
* @since 1.0.0
*/
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'wp-event-aggregator' ), '1.7.0' ); }
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'wp-event-aggregator' ), '1.7.1' ); }


/**
Expand All @@ -117,12 +117,12 @@ private function setup_constants() {

// Plugin version.
if( ! defined( 'WPEA_VERSION' ) ){
define( 'WPEA_VERSION', '1.7.0' );
define( 'WPEA_VERSION', '1.7.1' );
}

// Minimum Pro plugin version.
if( ! defined( 'WPEA_MIN_PRO_VERSION' ) ){
define( 'WPEA_MIN_PRO_VERSION', '1.6.5' );
define( 'WPEA_MIN_PRO_VERSION', '1.7.1' );
}

// Plugin folder Path.
Expand Down

0 comments on commit f9bba9e

Please sign in to comment.