Version Description
- 2019-09-11
Download this release
Release Info
Developer | codeinwp |
Plugin | Orbit Fox by ThemeIsle |
Version | 2.8.8 |
Comparing to | |
See all releases |
Code changes from version 2.8.7 to 2.8.8
- CHANGELOG.md +3 -2
- core/assets/css/orbit-fox-admin.css +1 -1
- core/includes/class-orbit-fox.php +1 -1
- obfx_modules/beaver-widgets/custom-fields/number-field/number_field.php +1 -1
- obfx_modules/beaver-widgets/custom-fields/toggle-field/toggle_field.php +2 -2
- readme.md +6 -1
- readme.txt +6 -1
- themeisle-companion.php +1 -1
- themeisle-hash.json +1 -1
- vendor/autoload.php +1 -1
- vendor/codeinwp/themeisle-sdk/CHANGELOG.md +16 -0
- vendor/codeinwp/themeisle-sdk/load.php +1 -1
- vendor/codeinwp/themeisle-sdk/src/Modules/Licenser.php +2 -2
- vendor/composer/autoload_real.php +5 -5
- vendor/composer/installed.json +6 -6
CHANGELOG.md
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
|
2 |
-
### v2.8.
|
3 |
**Changes:**
|
4 |
-
|
|
|
5 |
### v2.8.7 - 2019-08-13
|
6 |
**Changes:**
|
7 |
* Release
|
1 |
|
2 |
+
### v2.8.8 - 2019-09-11
|
3 |
**Changes:**
|
4 |
+
* Fixes Constant Warning for Beaver Widgets Module
|
5 |
+
|
6 |
### v2.8.7 - 2019-08-13
|
7 |
**Changes:**
|
8 |
* Release
|
core/assets/css/orbit-fox-admin.css
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Extends Spectre.css Library
|
9 |
*/
|
10 |
/*
|
11 |
-
Version: 2.8.
|
12 |
*/
|
13 |
|
14 |
/* Document
|
8 |
* Extends Spectre.css Library
|
9 |
*/
|
10 |
/*
|
11 |
+
Version: 2.8.8
|
12 |
*/
|
13 |
|
14 |
/* Document
|
core/includes/class-orbit-fox.php
CHANGED
@@ -69,7 +69,7 @@ class Orbit_Fox {
|
|
69 |
|
70 |
$this->plugin_name = 'orbit-fox';
|
71 |
|
72 |
-
$this->version = '2.8.
|
73 |
|
74 |
$this->load_dependencies();
|
75 |
$this->set_locale();
|
69 |
|
70 |
$this->plugin_name = 'orbit-fox';
|
71 |
|
72 |
+
$this->version = '2.8.8';
|
73 |
|
74 |
$this->load_dependencies();
|
75 |
$this->set_locale();
|
obfx_modules/beaver-widgets/custom-fields/number-field/number_field.php
CHANGED
@@ -24,7 +24,7 @@ add_action( 'fl_builder_control_obfx_number', 'obfx_number_field', 1, 3 );
|
|
24 |
*/
|
25 |
function obfx_enqueue_field() {
|
26 |
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
|
27 |
-
wp_enqueue_script( 'obfx-number-js', BEAVER_WIDGETS_URL . 'custom-fields/number-field/number.js', array(),
|
28 |
}
|
29 |
}
|
30 |
add_action( 'wp_enqueue_scripts', 'obfx_enqueue_field' );
|
24 |
*/
|
25 |
function obfx_enqueue_field() {
|
26 |
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
|
27 |
+
wp_enqueue_script( 'obfx-number-js', BEAVER_WIDGETS_URL . 'custom-fields/number-field/number.js', array(), '1.0.0', true );
|
28 |
}
|
29 |
}
|
30 |
add_action( 'wp_enqueue_scripts', 'obfx_enqueue_field' );
|
obfx_modules/beaver-widgets/custom-fields/toggle-field/toggle_field.php
CHANGED
@@ -37,8 +37,8 @@ add_action( 'fl_builder_control_obfx_toggle', 'obfx_toggle_field', 1, 3 );
|
|
37 |
*/
|
38 |
function obfx_enqueue_toggle_field() {
|
39 |
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
|
40 |
-
wp_enqueue_style( 'obfx-toggle-css', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.css',
|
41 |
-
wp_enqueue_script( 'obfx-toggle-js', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.js', array(),
|
42 |
}
|
43 |
}
|
44 |
add_action( 'wp_enqueue_scripts', 'obfx_enqueue_toggle_field' );
|
37 |
*/
|
38 |
function obfx_enqueue_toggle_field() {
|
39 |
if ( class_exists( 'FLBuilderModel' ) && FLBuilderModel::is_builder_active() ) {
|
40 |
+
wp_enqueue_style( 'obfx-toggle-css', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.css', array(), '1.0.0', 'all' );
|
41 |
+
wp_enqueue_script( 'obfx-toggle-js', BEAVER_WIDGETS_URL . 'custom-fields/toggle-field/toggle.js', array(), '1.0.0', true );
|
42 |
}
|
43 |
}
|
44 |
add_action( 'wp_enqueue_scripts', 'obfx_enqueue_toggle_field' );
|
readme.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
**Tags:** widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
|
4 |
**Requires at least:** 4.7
|
5 |
**Tested up to:** 5.2
|
6 |
-
**Requires PHP:** 5.
|
7 |
**Stable tag:** trunk
|
8 |
**License:** GPLv2 or later
|
9 |
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -109,6 +109,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
109 |
5. Social Sharing Module
|
110 |
|
111 |
## Changelog ##
|
|
|
|
|
|
|
|
|
|
|
112 |
### 2.8.7 - 2019-08-13 ###
|
113 |
|
114 |
* Fix error notice in menu icons
|
3 |
**Tags:** widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
|
4 |
**Requires at least:** 4.7
|
5 |
**Tested up to:** 5.2
|
6 |
+
**Requires PHP:** 5.6
|
7 |
**Stable tag:** trunk
|
8 |
**License:** GPLv2 or later
|
9 |
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
|
109 |
5. Social Sharing Module
|
110 |
|
111 |
## Changelog ##
|
112 |
+
### 2.8.8 - 2019-09-11 ###
|
113 |
+
|
114 |
+
* Fixes Constant Warning for Beaver Widgets Module
|
115 |
+
|
116 |
+
|
117 |
### 2.8.7 - 2019-08-13 ###
|
118 |
|
119 |
* Fix error notice in menu icons
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: themeisle, codeinwp, rodicaelena, baicusandrei, hardeepasrani
|
|
3 |
Tags: widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.2
|
6 |
-
Requires PHP: 5.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -109,6 +109,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
109 |
5. Social Sharing Module
|
110 |
|
111 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
112 |
= 2.8.7 - 2019-08-13 =
|
113 |
|
114 |
* Fix error notice in menu icons
|
3 |
Tags: widget, admin, widgets, sharing, sections, themes, stock photos, custom icons, icons, menu icons, stock, templates
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.2
|
6 |
+
Requires PHP: 5.6
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
109 |
5. Social Sharing Module
|
110 |
|
111 |
== Changelog ==
|
112 |
+
= 2.8.8 - 2019-09-11 =
|
113 |
+
|
114 |
+
* Fixes Constant Warning for Beaver Widgets Module
|
115 |
+
|
116 |
+
|
117 |
= 2.8.7 - 2019-08-13 =
|
118 |
|
119 |
* Fix error notice in menu icons
|
themeisle-companion.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: Orbit Fox Companion
|
16 |
* Plugin URI: https://orbitfox.com/
|
17 |
* Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
|
18 |
-
* Version: 2.8.
|
19 |
* Author: Themeisle
|
20 |
* Author URI: https://orbitfox.com/
|
21 |
* License: GPL-2.0+
|
15 |
* Plugin Name: Orbit Fox Companion
|
16 |
* Plugin URI: https://orbitfox.com/
|
17 |
* Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
|
18 |
+
* Version: 2.8.8
|
19 |
* Author: Themeisle
|
20 |
* Author URI: https://orbitfox.com/
|
21 |
* License: GPL-2.0+
|
themeisle-hash.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"class-autoloader.php":"61ea652f66f6ca0ead234c6357f88791","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"
|
1 |
+
{"class-autoloader.php":"61ea652f66f6ca0ead234c6357f88791","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"aa3ca597bbc531f90be9f4f93057c059","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7::getLoader();
|
vendor/codeinwp/themeisle-sdk/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
## [3.1.2](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.1...v3.1.2) (2019-08-12)
|
2 |
|
3 |
|
1 |
+
## [3.1.4](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.3...v3.1.4) (2019-08-23)
|
2 |
+
|
3 |
+
|
4 |
+
### Bug Fixes
|
5 |
+
|
6 |
+
* license key was missing on get_version call ([365cde6](https://github.com/Codeinwp/themeisle-sdk/commit/365cde6))
|
7 |
+
* license key was missing on get_version call ([c02f225](https://github.com/Codeinwp/themeisle-sdk/commit/c02f225))
|
8 |
+
|
9 |
+
## [3.1.3](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.2...v3.1.3) (2019-08-20)
|
10 |
+
|
11 |
+
|
12 |
+
### Bug Fixes
|
13 |
+
|
14 |
+
* license deactivation behaviour https://github.com/Codeinwp/visua… ([59c4afe](https://github.com/Codeinwp/themeisle-sdk/commit/59c4afe))
|
15 |
+
* license deactivation behaviour https://github.com/Codeinwp/visualizer-pro/issues/192 ([f641e18](https://github.com/Codeinwp/themeisle-sdk/commit/f641e18))
|
16 |
+
|
17 |
## [3.1.2](https://github.com/Codeinwp/themeisle-sdk/compare/v3.1.1...v3.1.2) (2019-08-12)
|
18 |
|
19 |
|
vendor/codeinwp/themeisle-sdk/load.php
CHANGED
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
14 |
return;
|
15 |
}
|
16 |
// Current SDK version and path.
|
17 |
-
$themeisle_sdk_version = '3.1.
|
18 |
$themeisle_sdk_path = dirname( __FILE__ );
|
19 |
|
20 |
global $themeisle_sdk_max_version;
|
14 |
return;
|
15 |
}
|
16 |
// Current SDK version and path.
|
17 |
+
$themeisle_sdk_version = '3.1.4';
|
18 |
$themeisle_sdk_path = dirname( __FILE__ );
|
19 |
|
20 |
global $themeisle_sdk_max_version;
|
vendor/codeinwp/themeisle-sdk/src/Modules/Licenser.php
CHANGED
@@ -158,7 +158,7 @@ class Licenser extends Abstract_Module {
|
|
158 |
<?php
|
159 |
echo sprintf(
|
160 |
'<p>%s<input class="themeisle-sdk-license-input %s" type="text" id="%s_license" name="%s_license" value="%s" /><a class="%s">%s</a> <button name="%s_btn_trigger" class="button button-primary themeisle-sdk-licenser-button-cta" value="yes" type="submit" >%s</button></p><p class="description">%s</p>',
|
161 |
-
( ( 'valid' === $status ) ? sprintf( '<input type="hidden" value="%s" name="%s_license" />', $this->product->get_key()
|
162 |
( ( 'valid' === $status ) ? 'themeisle-sdk-text-input-valid' : '' ),
|
163 |
$this->product->get_key(),
|
164 |
( ( 'valid' === $status ) ? $this->product->get_key() . '_mask' : $this->product->get_key() ),
|
@@ -567,7 +567,7 @@ class Licenser extends Abstract_Module {
|
|
567 |
$api_params = array(
|
568 |
'edd_action' => 'get_version',
|
569 |
'version' => $this->product->get_version(),
|
570 |
-
'license' => empty( $this->license_key ) ? 'free' :
|
571 |
'name' => rawurlencode( $this->product->get_name() ),
|
572 |
'slug' => $this->product->get_slug(),
|
573 |
'author' => rawurlencode( $this->get_distributor_name() ),
|
158 |
<?php
|
159 |
echo sprintf(
|
160 |
'<p>%s<input class="themeisle-sdk-license-input %s" type="text" id="%s_license" name="%s_license" value="%s" /><a class="%s">%s</a> <button name="%s_btn_trigger" class="button button-primary themeisle-sdk-licenser-button-cta" value="yes" type="submit" >%s</button></p><p class="description">%s</p>',
|
161 |
+
( ( 'valid' === $status ) ? sprintf( '<input type="hidden" value="%s" name="%s_license" />', $value, $this->product->get_key() ) : '' ),
|
162 |
( ( 'valid' === $status ) ? 'themeisle-sdk-text-input-valid' : '' ),
|
163 |
$this->product->get_key(),
|
164 |
( ( 'valid' === $status ) ? $this->product->get_key() . '_mask' : $this->product->get_key() ),
|
567 |
$api_params = array(
|
568 |
'edd_action' => 'get_version',
|
569 |
'version' => $this->product->get_version(),
|
570 |
+
'license' => empty( $this->license_key ) ? 'free' : $this->license_key,
|
571 |
'name' => rawurlencode( $this->product->get_name() ),
|
572 |
'slug' => $this->product->get_slug(),
|
573 |
'author' => rawurlencode( $this->get_distributor_name() ),
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit4fb5dcade6e1ed1350964ef788107bfb
|
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
-
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
function
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit77983c28fea376a5a14202bc4c78a2c7', 'loadClassLoader'));
|
25 |
|
26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
27 |
foreach ($map as $namespace => $path) {
|
42 |
|
43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
45 |
+
composerRequire77983c28fea376a5a14202bc4c78a2c7($fileIdentifier, $file);
|
46 |
}
|
47 |
|
48 |
return $loader;
|
49 |
}
|
50 |
}
|
51 |
|
52 |
+
function composerRequire77983c28fea376a5a14202bc4c78a2c7($fileIdentifier, $file)
|
53 |
{
|
54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
55 |
require $file;
|
vendor/composer/installed.json
CHANGED
@@ -191,17 +191,17 @@
|
|
191 |
},
|
192 |
{
|
193 |
"name": "codeinwp/themeisle-sdk",
|
194 |
-
"version": "3.1.
|
195 |
-
"version_normalized": "3.1.
|
196 |
"source": {
|
197 |
"type": "git",
|
198 |
"url": "https://github.com/Codeinwp/themeisle-sdk.git",
|
199 |
-
"reference": "
|
200 |
},
|
201 |
"dist": {
|
202 |
"type": "zip",
|
203 |
-
"url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/
|
204 |
-
"reference": "
|
205 |
"shasum": ""
|
206 |
},
|
207 |
"require-dev": {
|
@@ -209,7 +209,7 @@
|
|
209 |
"squizlabs/php_codesniffer": "^3.1",
|
210 |
"wp-coding-standards/wpcs": "^1.0.0"
|
211 |
},
|
212 |
-
"time": "2019-08-
|
213 |
"type": "library",
|
214 |
"installation-source": "dist",
|
215 |
"notification-url": "https://packagist.org/downloads/",
|
191 |
},
|
192 |
{
|
193 |
"name": "codeinwp/themeisle-sdk",
|
194 |
+
"version": "3.1.4",
|
195 |
+
"version_normalized": "3.1.4.0",
|
196 |
"source": {
|
197 |
"type": "git",
|
198 |
"url": "https://github.com/Codeinwp/themeisle-sdk.git",
|
199 |
+
"reference": "ede4dbdb119ad5b5d317f3866d68c90a45fe8179"
|
200 |
},
|
201 |
"dist": {
|
202 |
"type": "zip",
|
203 |
+
"url": "https://api.github.com/repos/Codeinwp/themeisle-sdk/zipball/ede4dbdb119ad5b5d317f3866d68c90a45fe8179",
|
204 |
+
"reference": "ede4dbdb119ad5b5d317f3866d68c90a45fe8179",
|
205 |
"shasum": ""
|
206 |
},
|
207 |
"require-dev": {
|
209 |
"squizlabs/php_codesniffer": "^3.1",
|
210 |
"wp-coding-standards/wpcs": "^1.0.0"
|
211 |
},
|
212 |
+
"time": "2019-08-23 08:47:43",
|
213 |
"type": "library",
|
214 |
"installation-source": "dist",
|
215 |
"notification-url": "https://packagist.org/downloads/",
|