Version Description
Download this release
Release Info
Developer | webnus |
Plugin | Modern Events Calendar Lite |
Version | 5.16.2 |
Comparing to | |
See all releases |
Code changes from version 5.16.1 to 5.16.2
- app/features/update.php +6 -0
- assets/sql/install.sql +1 -0
- assets/sql/tables.sql +1 -0
- changelog.txt +4 -1
- modern-events-calendar-lite.php +2 -2
- readme.txt +4 -1
app/features/update.php
CHANGED
@@ -71,6 +71,7 @@ class MEC_feature_update extends MEC_base
|
|
71 |
if(version_compare($version, '5.14.0', '<')) $this->version5140();
|
72 |
if(version_compare($version, '5.16.0', '<')) $this->version5160();
|
73 |
if(version_compare($version, '5.16.1', '<')) $this->version5161();
|
|
|
74 |
|
75 |
// Update to latest version to prevent running the code twice
|
76 |
update_option('mec_version', $this->main->get_version());
|
@@ -547,4 +548,9 @@ class MEC_feature_update extends MEC_base
|
|
547 |
$this->db->q("ALTER TABLE `#__mec_dates` ADD `public` INT(4) UNSIGNED NOT NULL DEFAULT 1 AFTER `tend`;");
|
548 |
}
|
549 |
}
|
|
|
|
|
|
|
|
|
|
|
550 |
}
|
71 |
if(version_compare($version, '5.14.0', '<')) $this->version5140();
|
72 |
if(version_compare($version, '5.16.0', '<')) $this->version5160();
|
73 |
if(version_compare($version, '5.16.1', '<')) $this->version5161();
|
74 |
+
if(version_compare($version, '5.16.2', '<')) $this->version5162();
|
75 |
|
76 |
// Update to latest version to prevent running the code twice
|
77 |
update_option('mec_version', $this->main->get_version());
|
548 |
$this->db->q("ALTER TABLE `#__mec_dates` ADD `public` INT(4) UNSIGNED NOT NULL DEFAULT 1 AFTER `tend`;");
|
549 |
}
|
550 |
}
|
551 |
+
|
552 |
+
public function version5162()
|
553 |
+
{
|
554 |
+
$this->version5161();
|
555 |
+
}
|
556 |
}
|
assets/sql/install.sql
CHANGED
@@ -34,6 +34,7 @@ CREATE TABLE IF NOT EXISTS `#__mec_dates` (
|
|
34 |
|
35 |
ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `tstart` (`tstart`), ADD KEY `tend` (`tend`);
|
36 |
ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
|
|
|
37 |
|
38 |
CREATE TABLE IF NOT EXISTS `#__mec_occurrences` (
|
39 |
`id` int(10) UNSIGNED NOT NULL,
|
34 |
|
35 |
ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `tstart` (`tstart`), ADD KEY `tend` (`tend`);
|
36 |
ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
|
37 |
+
ALTER TABLE `#__mec_dates` ADD `public` INT(4) UNSIGNED NOT NULL DEFAULT 1 AFTER `tend`;
|
38 |
|
39 |
CREATE TABLE IF NOT EXISTS `#__mec_occurrences` (
|
40 |
`id` int(10) UNSIGNED NOT NULL,
|
assets/sql/tables.sql
CHANGED
@@ -34,6 +34,7 @@ CREATE TABLE IF NOT EXISTS `#__mec_dates` (
|
|
34 |
|
35 |
ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `tstart` (`tstart`), ADD KEY `tend` (`tend`);
|
36 |
ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
|
|
|
37 |
|
38 |
CREATE TABLE IF NOT EXISTS `#__mec_occurrences` (
|
39 |
`id` int(10) UNSIGNED NOT NULL,
|
34 |
|
35 |
ALTER TABLE `#__mec_dates` ADD PRIMARY KEY (`id`), ADD KEY `post_id` (`post_id`), ADD KEY `tstart` (`tstart`), ADD KEY `tend` (`tend`);
|
36 |
ALTER TABLE `#__mec_dates` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
|
37 |
+
ALTER TABLE `#__mec_dates` ADD `public` INT(4) UNSIGNED NOT NULL DEFAULT 1 AFTER `tend`;
|
38 |
|
39 |
CREATE TABLE IF NOT EXISTS `#__mec_occurrences` (
|
40 |
`id` int(10) UNSIGNED NOT NULL,
|
changelog.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
-
v 5.16.
|
|
|
|
|
|
|
2 |
- Fixed: No event found issue
|
3 |
|
4 |
v 5.16.0 – 13 January 2021
|
1 |
+
v 5.16.2 – 15 January 2021
|
2 |
+
- Fixed: No event found issue in special conditions
|
3 |
+
|
4 |
+
v 5.16.1 – 13 January 2021
|
5 |
- Fixed: No event found issue
|
6 |
|
7 |
v 5.16.0 – 13 January 2021
|
modern-events-calendar-lite.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://webnus.net/modern-events-calendar/
|
5 |
* Description: An awesome plugin for events calendar
|
6 |
* Author: Webnus
|
7 |
-
* Version: 5.16.
|
8 |
* Text Domain: modern-events-calendar-lite
|
9 |
* Domain Path: /languages
|
10 |
* Author URI: http://webnus.net
|
@@ -31,7 +31,7 @@ if(!defined('MECEXEC'))
|
|
31 |
define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
|
32 |
|
33 |
/** Plugin Version **/
|
34 |
-
define('MEC_VERSION', '5.16.
|
35 |
|
36 |
/** Include Webnus MEC class if not included before **/
|
37 |
if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
|
4 |
* Plugin URI: http://webnus.net/modern-events-calendar/
|
5 |
* Description: An awesome plugin for events calendar
|
6 |
* Author: Webnus
|
7 |
+
* Version: 5.16.2
|
8 |
* Text Domain: modern-events-calendar-lite
|
9 |
* Domain Path: /languages
|
10 |
* Author URI: http://webnus.net
|
31 |
define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
|
32 |
|
33 |
/** Plugin Version **/
|
34 |
+
define('MEC_VERSION', '5.16.2');
|
35 |
|
36 |
/** Include Webnus MEC class if not included before **/
|
37 |
if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://webnus.net
|
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.6
|
7 |
-
Stable tag: 5.16.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -443,6 +443,9 @@ You can see [plugin documentation](https://webnus.net/dox/modern-events-calendar
|
|
443 |
41. WordPress Event Calendar - Daily view(Fluent View Layouts Addon)
|
444 |
|
445 |
== Changelog ==
|
|
|
|
|
|
|
446 |
= v 5.16.1 – 13 January 2021 =
|
447 |
- Fixed: No event found issue
|
448 |
|
4 |
Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 5.6
|
7 |
+
Stable tag: 5.16.2
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
443 |
41. WordPress Event Calendar - Daily view(Fluent View Layouts Addon)
|
444 |
|
445 |
== Changelog ==
|
446 |
+
= v 5.16.2 – 15 January 2021 =
|
447 |
+
- Fixed: No event found issue in special conditions
|
448 |
+
|
449 |
= v 5.16.1 – 13 January 2021 =
|
450 |
- Fixed: No event found issue
|
451 |
|