Version Description
Download this release
Release Info
Developer | DvanKooten |
Plugin | Boxzilla |
Version | 3.2.17 |
Comparing to | |
See all releases |
Code changes from version 3.2.16 to 3.2.17
- CHANGELOG.md +8 -0
- boxzilla.php +2 -2
- readme.txt +9 -1
- src/licensing/class-update-manager.php +4 -0
CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1 |
Changelog
|
2 |
==========
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
#### 3.2.16 - Nov 15, 2019
|
5 |
|
6 |
**Improvements**
|
1 |
Changelog
|
2 |
==========
|
3 |
|
4 |
+
#### 3.2.17 - Nov 18, 2019
|
5 |
+
|
6 |
+
**Fixes**
|
7 |
+
|
8 |
+
- Notices when checking for updating and not having some add-on plugins installed.
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
#### 3.2.16 - Nov 15, 2019
|
13 |
|
14 |
**Improvements**
|
boxzilla.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Boxzilla
|
4 |
-
Version: 3.2.
|
5 |
Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
|
6 |
Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
|
7 |
Author: ibericode
|
@@ -41,7 +41,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
41 |
function _load_boxzilla() {
|
42 |
|
43 |
define( 'BOXZILLA_FILE', __FILE__ );
|
44 |
-
define('BOXZILLA_VERSION', '3.2.
|
45 |
|
46 |
require __DIR__ . '/bootstrap.php';
|
47 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Boxzilla
|
4 |
+
Version: 3.2.17
|
5 |
Plugin URI: https://boxzillaplugin.com/#utm_source=wp-plugin&utm_medium=boxzilla&utm_campaign=plugins-page
|
6 |
Description: Call-To-Action Boxes that display after visitors scroll down far enough. Unobtrusive, but highly conversing!
|
7 |
Author: ibericode
|
41 |
function _load_boxzilla() {
|
42 |
|
43 |
define( 'BOXZILLA_FILE', __FILE__ );
|
44 |
+
define('BOXZILLA_VERSION', '3.2.17');
|
45 |
|
46 |
require __DIR__ . '/bootstrap.php';
|
47 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://boxzillaplugin.com/#utm_source=wp-plugin-repo&utm_medium=bo
|
|
4 |
Tags: scroll triggered box, cta, social, pop-up, newsletter, call to action, mailchimp, contact form 7, social media, mc4wp, ibericode
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.3
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Requires PHP: 5.3
|
@@ -130,6 +130,14 @@ Have a look at the [frequently asked questions](https://wordpress.org/plugins/bo
|
|
130 |
== Changelog ==
|
131 |
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
#### 3.2.16 - Nov 15, 2019
|
134 |
|
135 |
**Improvements**
|
4 |
Tags: scroll triggered box, cta, social, pop-up, newsletter, call to action, mailchimp, contact form 7, social media, mc4wp, ibericode
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.3
|
7 |
+
Stable tag: 3.2.17
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Requires PHP: 5.3
|
130 |
== Changelog ==
|
131 |
|
132 |
|
133 |
+
#### 3.2.17 - Nov 18, 2019
|
134 |
+
|
135 |
+
**Fixes**
|
136 |
+
|
137 |
+
- Notices when checking for updating and not having some add-on plugins installed.
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
#### 3.2.16 - Nov 15, 2019
|
142 |
|
143 |
**Improvements**
|
src/licensing/class-update-manager.php
CHANGED
@@ -193,6 +193,10 @@ class UpdateManager {
|
|
193 |
} else {
|
194 |
// if plugin is not active, use get_plugin_data for fetching version
|
195 |
$plugin_file = WP_PLUGIN_DIR . "/{$remote_plugin->slug}/{$remote_plugin->slug}.php";
|
|
|
|
|
|
|
|
|
196 |
$plugin_data = get_plugin_data( $plugin_file );
|
197 |
|
198 |
if ( !$plugin_data || version_compare( $plugin_data['Version'], $remote_plugin->new_version, '>=' ) ) {
|
193 |
} else {
|
194 |
// if plugin is not active, use get_plugin_data for fetching version
|
195 |
$plugin_file = WP_PLUGIN_DIR . "/{$remote_plugin->slug}/{$remote_plugin->slug}.php";
|
196 |
+
if ( ! file_exists( $plugin_file ) ) {
|
197 |
+
continue;
|
198 |
+
}
|
199 |
+
|
200 |
$plugin_data = get_plugin_data( $plugin_file );
|
201 |
|
202 |
if ( !$plugin_data || version_compare( $plugin_data['Version'], $remote_plugin->new_version, '>=' ) ) {
|