Version Description
2019-09-04 = * Enhancements for more compatible with themes and plugins.
Download this release
Release Info
Developer | theluckywp |
Plugin | LuckyWP Table of Contents |
Version | 1.9.4 |
Comparing to | |
See all releases |
Code changes from version 1.9.3 to 1.9.4
- core/base/BasePlugin.php +1 -6
- luckywp-table-of-contents.php +2 -2
- readme.txt +4 -1
core/base/BasePlugin.php
CHANGED
@@ -70,12 +70,7 @@ abstract class BasePlugin extends ServiceLocator
|
|
70 |
protected function bootstrap($bootstrap)
|
71 |
{
|
72 |
foreach ($bootstrap as $mixed) {
|
73 |
-
$
|
74 |
-
if (is_callable($mixed)) {
|
75 |
-
if (!$component = call_user_func($mixed, $this)) {
|
76 |
-
continue;
|
77 |
-
}
|
78 |
-
} elseif (is_string($mixed) && $this->has($mixed)) {
|
79 |
$this->get($mixed);
|
80 |
}
|
81 |
}
|
70 |
protected function bootstrap($bootstrap)
|
71 |
{
|
72 |
foreach ($bootstrap as $mixed) {
|
73 |
+
if (is_string($mixed) && $this->has($mixed)) {
|
|
|
|
|
|
|
|
|
|
|
74 |
$this->get($mixed);
|
75 |
}
|
76 |
}
|
luckywp-table-of-contents.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: LuckyWP Table of Contents
|
4 |
Plugin URI: https://theluckywp.com/product/table-of-contents/
|
5 |
Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode, Gutenberg block or widget).
|
6 |
-
Version: 1.9.
|
7 |
Author: LuckyWP
|
8 |
Author URI: https://theluckywp.com/
|
9 |
Text Domain: luckywp-table-of-contents
|
@@ -29,6 +29,6 @@ $lwptocAutoloader->register();
|
|
29 |
$lwptocAutoloader->addNamespace('luckywp\tableOfContents', __DIR__);
|
30 |
|
31 |
$config = require(__DIR__ . '/config/plugin.php');
|
32 |
-
(new \luckywp\tableOfContents\plugin\Plugin($config))->run('1.9.
|
33 |
|
34 |
require_once __DIR__ . '/functions.php';
|
3 |
Plugin Name: LuckyWP Table of Contents
|
4 |
Plugin URI: https://theluckywp.com/product/table-of-contents/
|
5 |
Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode, Gutenberg block or widget).
|
6 |
+
Version: 1.9.4
|
7 |
Author: LuckyWP
|
8 |
Author URI: https://theluckywp.com/
|
9 |
Text Domain: luckywp-table-of-contents
|
29 |
$lwptocAutoloader->addNamespace('luckywp\tableOfContents', __DIR__);
|
30 |
|
31 |
$config = require(__DIR__ . '/config/plugin.php');
|
32 |
+
(new \luckywp\tableOfContents\plugin\Plugin($config))->run('1.9.4', __FILE__, 'lwptoc_');
|
33 |
|
34 |
require_once __DIR__ . '/functions.php';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://theluckywp.com/product/table-of-contents/
|
|
4 |
Tags: table of contents, toc, navigation, links, seo
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 5.2.2
|
7 |
-
Stable tag: 1.9.
|
8 |
Requires PHP: 5.6.20
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -151,6 +151,9 @@ For non-English websites it is recommended to enable the `Intl` PHP extension.
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
154 |
= 1.9.3 — 2019-08-25 =
|
155 |
+ Added WPML compatibility.
|
156 |
|
4 |
Tags: table of contents, toc, navigation, links, seo
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 5.2.2
|
7 |
+
Stable tag: 1.9.4
|
8 |
Requires PHP: 5.6.20
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 1.9.4 — 2019-09-04 =
|
155 |
+
* Enhancements for more compatible with themes and plugins.
|
156 |
+
|
157 |
= 1.9.3 — 2019-08-25 =
|
158 |
+ Added WPML compatibility.
|
159 |
|