Version Description
Download this release
Release Info
| Developer | themeisle |
| Plugin | |
| Version | 2.10.16 |
| Comparing to | |
| See all releases | |
Code changes from version 2.10.15 to 2.10.16
- CHANGELOG.md +4 -0
- core/includes/class-orbit-fox.php +1 -1
- languages/themeisle-companion.pot +3 -3
- obfx_modules/elementor-widgets/init.php +10 -1
- readme.md +7 -0
- readme.txt +7 -0
- themeisle-companion.php +1 -1
- vendor/autoload.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.php +6 -6
CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
|
| 2 |
|
| 3 |
* Update dependencies
|
| 1 |
+
##### [Version 2.10.16](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.15...v2.10.16) (2022-09-02)
|
| 2 |
+
|
| 3 |
+
* Fix fatal error due to late function registering.
|
| 4 |
+
|
| 5 |
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
|
| 6 |
|
| 7 |
* Update dependencies
|
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.10.
|
| 73 |
|
| 74 |
$this->load_dependencies();
|
| 75 |
$this->set_locale();
|
| 69 |
|
| 70 |
$this->plugin_name = 'orbit-fox';
|
| 71 |
|
| 72 |
+
$this->version = '2.10.16';
|
| 73 |
|
| 74 |
$this->load_dependencies();
|
| 75 |
$this->set_locale();
|
languages/themeisle-companion.pot
CHANGED
|
@@ -2,10 +2,10 @@
|
|
| 2 |
# This file is distributed under the GPL-2.0+.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Orbit Fox Companion 2.10.
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://github.com/Codeinwp/themeisle-companion/issues\n"
|
| 8 |
-
"POT-Creation-Date: 2022-09-02
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -2066,7 +2066,7 @@ msgstr ""
|
|
| 2066 |
msgid "10+ more Elementor and Gutenberg widgets"
|
| 2067 |
msgstr ""
|
| 2068 |
|
| 2069 |
-
#: obfx_modules/elementor-widgets/init.php:
|
| 2070 |
msgid "Learn more"
|
| 2071 |
msgstr ""
|
| 2072 |
|
| 2 |
# This file is distributed under the GPL-2.0+.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Orbit Fox Companion 2.10.16\n"
|
| 6 |
"Report-Msgid-Bugs-To: "
|
| 7 |
"https://github.com/Codeinwp/themeisle-companion/issues\n"
|
| 8 |
+
"POT-Creation-Date: 2022-09-02 15:00:36+00:00\n"
|
| 9 |
"MIME-Version: 1.0\n"
|
| 10 |
"Content-Type: text/plain; charset=utf-8\n"
|
| 11 |
"Content-Transfer-Encoding: 8bit\n"
|
| 2066 |
msgid "10+ more Elementor and Gutenberg widgets"
|
| 2067 |
msgstr ""
|
| 2068 |
|
| 2069 |
+
#: obfx_modules/elementor-widgets/init.php:58
|
| 2070 |
msgid "Learn more"
|
| 2071 |
msgstr ""
|
| 2072 |
|
obfx_modules/elementor-widgets/init.php
CHANGED
|
@@ -45,7 +45,16 @@ class Elementor_Widgets_OBFX_Module extends Orbit_Fox_Module_Abstract {
|
|
| 45 |
'<b>Neve PRO</b>'
|
| 46 |
) .
|
| 47 |
'</p>
|
| 48 |
-
<a class="notice-cta" target="_blank" href="' .
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
<b>' . __( 'Learn more', 'themeisle-companion' ) . '</b>
|
| 50 |
</a>
|
| 51 |
</div>';
|
| 45 |
'<b>Neve PRO</b>'
|
| 46 |
) .
|
| 47 |
'</p>
|
| 48 |
+
<a class="notice-cta" target="_blank" href="' . esc_url_raw(
|
| 49 |
+
add_query_arg(
|
| 50 |
+
array(
|
| 51 |
+
'utm_source' => 'wpadmin',
|
| 52 |
+
'utm_medium' => 'orbitfox',
|
| 53 |
+
'utm_campaign' => 'elementorwidgets',
|
| 54 |
+
),
|
| 55 |
+
'https://themeisle.com/themes/neve/pricing/'
|
| 56 |
+
)
|
| 57 |
+
) . '">
|
| 58 |
<b>' . __( 'Learn more', 'themeisle-companion' ) . '</b>
|
| 59 |
</a>
|
| 60 |
</div>';
|
readme.md
CHANGED
|
@@ -107,6 +107,13 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
| 107 |
|
| 108 |
## Changelog ##
|
| 109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
|
| 111 |
|
| 112 |
* Update dependencies
|
| 107 |
|
| 108 |
## Changelog ##
|
| 109 |
|
| 110 |
+
##### [Version 2.10.16](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.15...v2.10.16) (2022-09-02)
|
| 111 |
+
|
| 112 |
+
* Fix fatal error due to late function registering.
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
|
| 117 |
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
|
| 118 |
|
| 119 |
* Update dependencies
|
readme.txt
CHANGED
|
@@ -107,6 +107,13 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
|
|
| 107 |
|
| 108 |
== Changelog ==
|
| 109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
|
| 111 |
|
| 112 |
* Update dependencies
|
| 107 |
|
| 108 |
== Changelog ==
|
| 109 |
|
| 110 |
+
##### [Version 2.10.16](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.15...v2.10.16) (2022-09-02)
|
| 111 |
+
|
| 112 |
+
* Fix fatal error due to late function registering.
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
|
| 117 |
##### [Version 2.10.15](https://github.com/Codeinwp/themeisle-companion/compare/v2.10.14...v2.10.15) (2022-09-02)
|
| 118 |
|
| 119 |
* Update dependencies
|
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.10.
|
| 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.10.16
|
| 19 |
* Author: Themeisle
|
| 20 |
* Author URI: https://orbitfox.com/
|
| 21 |
* License: GPL-2.0+
|
vendor/autoload.php
CHANGED
|
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
|
|
| 9 |
|
| 10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 11 |
|
| 12 |
-
return
|
| 9 |
|
| 10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
| 11 |
|
| 12 |
+
return ComposerAutoloaderInit081bd7a3639c64a7202279232a2c5a22::getLoader();
|
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 |
|
|
@@ -24,18 +24,18 @@ class ComposerAutoloaderInitdfce362bc6e91a53d9a51189195f2da6
|
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
-
spl_autoload_register(array('
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
| 29 |
-
spl_autoload_unregister(array('
|
| 30 |
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
-
call_user_func(\Composer\Autoload\
|
| 33 |
|
| 34 |
$loader->register(true);
|
| 35 |
|
| 36 |
-
$includeFiles = \Composer\Autoload\
|
| 37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 38 |
-
|
| 39 |
}
|
| 40 |
|
| 41 |
return $loader;
|
|
@@ -47,7 +47,7 @@ class ComposerAutoloaderInitdfce362bc6e91a53d9a51189195f2da6
|
|
| 47 |
* @param string $file
|
| 48 |
* @return void
|
| 49 |
*/
|
| 50 |
-
function
|
| 51 |
{
|
| 52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit081bd7a3639c64a7202279232a2c5a22
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 24 |
|
| 25 |
require __DIR__ . '/platform_check.php';
|
| 26 |
|
| 27 |
+
spl_autoload_register(array('ComposerAutoloaderInit081bd7a3639c64a7202279232a2c5a22', 'loadClassLoader'), true, true);
|
| 28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
| 29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit081bd7a3639c64a7202279232a2c5a22', 'loadClassLoader'));
|
| 30 |
|
| 31 |
require __DIR__ . '/autoload_static.php';
|
| 32 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit081bd7a3639c64a7202279232a2c5a22::getInitializer($loader));
|
| 33 |
|
| 34 |
$loader->register(true);
|
| 35 |
|
| 36 |
+
$includeFiles = \Composer\Autoload\ComposerStaticInit081bd7a3639c64a7202279232a2c5a22::$files;
|
| 37 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 38 |
+
composerRequire081bd7a3639c64a7202279232a2c5a22($fileIdentifier, $file);
|
| 39 |
}
|
| 40 |
|
| 41 |
return $loader;
|
| 47 |
* @param string $file
|
| 48 |
* @return void
|
| 49 |
*/
|
| 50 |
+
function composerRequire081bd7a3639c64a7202279232a2c5a22($fileIdentifier, $file)
|
| 51 |
{
|
| 52 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 53 |
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
vendor/composer/autoload_static.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
-
class
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'9c67151ae59aff4788964ce8eb2a0f43' => __DIR__ . '/..' . '/clue/stream-filter/src/functions_include.php',
|
|
@@ -269,9 +269,9 @@ class ComposerStaticInitdfce362bc6e91a53d9a51189195f2da6
|
|
| 269 |
public static function getInitializer(ClassLoader $loader)
|
| 270 |
{
|
| 271 |
return \Closure::bind(function () use ($loader) {
|
| 272 |
-
$loader->prefixLengthsPsr4 =
|
| 273 |
-
$loader->prefixDirsPsr4 =
|
| 274 |
-
$loader->classMap =
|
| 275 |
|
| 276 |
}, null, ClassLoader::class);
|
| 277 |
}
|
| 4 |
|
| 5 |
namespace Composer\Autoload;
|
| 6 |
|
| 7 |
+
class ComposerStaticInit081bd7a3639c64a7202279232a2c5a22
|
| 8 |
{
|
| 9 |
public static $files = array (
|
| 10 |
'9c67151ae59aff4788964ce8eb2a0f43' => __DIR__ . '/..' . '/clue/stream-filter/src/functions_include.php',
|
| 269 |
public static function getInitializer(ClassLoader $loader)
|
| 270 |
{
|
| 271 |
return \Closure::bind(function () use ($loader) {
|
| 272 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit081bd7a3639c64a7202279232a2c5a22::$prefixLengthsPsr4;
|
| 273 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit081bd7a3639c64a7202279232a2c5a22::$prefixDirsPsr4;
|
| 274 |
+
$loader->classMap = ComposerStaticInit081bd7a3639c64a7202279232a2c5a22::$classMap;
|
| 275 |
|
| 276 |
}, null, ClassLoader::class);
|
| 277 |
}
|
vendor/composer/installed.php
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
<?php return array(
|
| 2 |
'root' => array(
|
| 3 |
'name' => 'codeinwp/themeisle-companion',
|
| 4 |
-
'pretty_version' => 'v2.10.
|
| 5 |
-
'version' => '2.10.
|
| 6 |
-
'reference' => '
|
| 7 |
'type' => 'wordpress-plugin',
|
| 8 |
'install_path' => __DIR__ . '/../../',
|
| 9 |
'aliases' => array(),
|
|
@@ -47,9 +47,9 @@
|
|
| 47 |
'dev_requirement' => false,
|
| 48 |
),
|
| 49 |
'codeinwp/themeisle-companion' => array(
|
| 50 |
-
'pretty_version' => 'v2.10.
|
| 51 |
-
'version' => '2.10.
|
| 52 |
-
'reference' => '
|
| 53 |
'type' => 'wordpress-plugin',
|
| 54 |
'install_path' => __DIR__ . '/../../',
|
| 55 |
'aliases' => array(),
|
| 1 |
<?php return array(
|
| 2 |
'root' => array(
|
| 3 |
'name' => 'codeinwp/themeisle-companion',
|
| 4 |
+
'pretty_version' => 'v2.10.16',
|
| 5 |
+
'version' => '2.10.16.0',
|
| 6 |
+
'reference' => '9ede8cb06142feb05b0c4ade5ce353531dbc74a0',
|
| 7 |
'type' => 'wordpress-plugin',
|
| 8 |
'install_path' => __DIR__ . '/../../',
|
| 9 |
'aliases' => array(),
|
| 47 |
'dev_requirement' => false,
|
| 48 |
),
|
| 49 |
'codeinwp/themeisle-companion' => array(
|
| 50 |
+
'pretty_version' => 'v2.10.16',
|
| 51 |
+
'version' => '2.10.16.0',
|
| 52 |
+
'reference' => '9ede8cb06142feb05b0c4ade5ce353531dbc74a0',
|
| 53 |
'type' => 'wordpress-plugin',
|
| 54 |
'install_path' => __DIR__ . '/../../',
|
| 55 |
'aliases' => array(),
|
