Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped to v1.8.0 #154

Merged
merged 5 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: facebook, events, import, calendar, facebook event, facebook import, faceb
Requires at least: 4.0
Requires PHP: 5.3
Tested up to: 6.6
Stable tag: 1.7.9
Stable tag: 1.8.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -51,7 +51,6 @@ You can use `[facebook_events]` for display in-built facebook events list.
* Upcoming Events Widget On Elementor Editor
* Upcoming Events New Grid View Style
* Import events from the facebook page
* Import events from the facebook group
* Import events from Facebook Event
* Import My Events will import all events you marked as Interested/Going
* Sync events with facebook automatically
Expand Down Expand Up @@ -108,6 +107,12 @@ You can use `[facebook_events]` for display in-built facebook events list.

== Changelog ==

= 1.8.0 =
* ADDED: Default Event Feature image option( Grid View ).
* ADDED: Hyperlink in event description.
* REMOVE: Group ID option.
* REMOVE: facebook event link in the event description( iCal import ).

= 1.7.9 =
* ADDED: Copy-Paste button in the settings page.
* IMPROVEMENTS: Support for WP 6.6
Expand Down
8 changes: 4 additions & 4 deletions import-facebook-events.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Import Social Events
* Plugin URI: http://xylusthemes.com/plugins/import-facebook-events/
* Description: Import Social Events allows you to import Facebook ( facebook.com ) events into your WordPress site.
* Version: 1.7.9
* Version: 1.8.0
* Author: Xylus Themes
* Author URI: http://xylusthemes.com
* License: GPL-2.0+
Expand Down Expand Up @@ -105,15 +105,15 @@ private function __construct() {
* @since 1.0.0
*/
public function __clone() {
_doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'import-facebook-events' ), '1.7.9' ); }
_doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'import-facebook-events' ), '1.8.0' ); }

/**
* A dummy magic method to prevent Import_Facebook_Events from being unserialized.
*
* @since 1.0.0
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'import-facebook-events' ), '1.7.9' ); }
_doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'import-facebook-events' ), '1.8.0' ); }


/**
Expand All @@ -127,7 +127,7 @@ private function setup_constants() {

// Plugin version.
if ( ! defined( 'IFE_VERSION' ) ) {
define( 'IFE_VERSION', '1.7.9' );
define( 'IFE_VERSION', '1.8.0' );
}

// Minimum Pro plugin version.
Expand Down
4 changes: 2 additions & 2 deletions languages/import-facebook-events.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: Import Social Events 1.7.9\n"
"Project-Id-Version: Import Social Events 1.8.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/import-facebook-events\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-10-04T11:20:51+00:00\n"
"POT-Creation-Date: 2024-10-04T11:26:43+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0\n"
"X-Domain: import-facebook-events\n"
Expand Down