Skip to content

Commit

Permalink
new release v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed May 15, 2017
1 parent bc57feb commit 03b9da9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://xylusthemes.com
Tags: 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, RSVP, 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: 4.7
Stable tag: 1.1.1
Stable tag: 1.1.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -40,6 +40,8 @@ This Plugin is works as a stand alone as well as add-on plugin for below listed

* Scheduled Imports from above sources and import events effortlessly

You can use `[wp_events]` for display in-built events list.

== Installation ==

**This plugin can be installed directly from your site.**
Expand Down Expand Up @@ -70,6 +72,8 @@ This Plugin is works as a stand alone as well as add-on plugin for below listed
10. Settings for import events.

== Changelog ==
= 1.1.2 =
* FIXED: some bug fixes in events manage.

= 1.1.1 =
* Fixes: some bug fixes
Expand Down
2 changes: 0 additions & 2 deletions assets/css/wp-event-aggregator.css
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,6 @@ body {
.details { float: left; width: 50%;}
.details > a { display: block; line-height:18px;}
.details > p {margin-bottom: 10px;margin-top:0;}
strong{ color:#444444; display: block;}
.venue{ float:left; width:35%;}
.map {border:2px solid #ddd;float: left;width:64%; border-radius:2px;}
.footer{ width:100%; float:left; border-top:1px solid #e5e5e5; padding:30px 0 15px 0;}
Expand All @@ -752,7 +751,6 @@ strong{ color:#444444; display: block;}
.footer .calendar{text-decoration:underline; font-weight:normal;}
.titlemain{ font-size:18px; font-weight:bold; color:#444444; margin-bottom:10px;}
.margin{ margin-bottom:10px;}
a:hover {color: #5bc5e2;}
.title1 strong {display:block;line-height:12px;margin:25px 0 0;}
.organizermain.library{ margin-top:0;}

Expand Down
16 changes: 14 additions & 2 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.1.1
* Version: 1.1.2
* Author: Xylus Themes
* Author URI: http://xylusthemes.com
* License: GPL-2.0+
Expand Down Expand Up @@ -250,4 +250,16 @@ function wpea_get_import_options( $type = '' ){
// Get WP_Event_Aggregator Running.
global $importevents, $errors, $success_msg, $warnings, $info_msg;
$importevents = run_wp_event_aggregator();
$errors = $warnings = $success_msg = $info_msg = array();
$errors = $warnings = $success_msg = $info_msg = array();

/**
* The code that runs during plugin activation.
*
* @since 1.1.2
*/
function wpea_activate_wp_event_aggregator() {
global $importevents;
$importevents->cpt->register_event_post_type();
flush_rewrite_rules();
}
register_activation_hook( __FILE__, 'wpea_activate_wp_event_aggregator' );

0 comments on commit 03b9da9

Please sign in to comment.