Version Description
- Fix: Autoload was missing.
Download this release
Release Info
Developer | TigrouMeow |
Plugin | Gallery Custom Links |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- classes/core.php +2 -0
- gallery-custom-links.php +2 -2
- readme.txt +4 -1
classes/core.php
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
3 |
class Meow_MGCL_Core
|
4 |
{
|
5 |
public $admin = null;
|
1 |
<?php
|
2 |
|
3 |
+
require MGCL_PATH . '/vendor/autoload.php';
|
4 |
+
|
5 |
class Meow_MGCL_Core
|
6 |
{
|
7 |
public $admin = null;
|
gallery-custom-links.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Gallery Custom Links
|
4 |
Plugin URI: https://meowapps.com
|
5 |
Description: Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others.
|
6 |
-
Version: 2.0.
|
7 |
Author: Jordy Meow
|
8 |
Author URI: https://meowapps.com
|
9 |
Text Domain: gallery-custom-links
|
@@ -14,7 +14,7 @@ http://www.opensource.org/licenses/mit-license.php
|
|
14 |
http://www.gnu.org/licenses/gpl.html
|
15 |
*/
|
16 |
|
17 |
-
define( 'MGCL_VERSION', '2.0.
|
18 |
define( 'MGCL_PREFIX', 'mgcl' );
|
19 |
define( 'MGCL_DOMAIN', 'gallery-custom-links' );
|
20 |
define( 'MGCL_ENTRY', __FILE__ );
|
3 |
Plugin Name: Gallery Custom Links
|
4 |
Plugin URI: https://meowapps.com
|
5 |
Description: Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others.
|
6 |
+
Version: 2.0.2
|
7 |
Author: Jordy Meow
|
8 |
Author URI: https://meowapps.com
|
9 |
Text Domain: gallery-custom-links
|
14 |
http://www.gnu.org/licenses/gpl.html
|
15 |
*/
|
16 |
|
17 |
+
define( 'MGCL_VERSION', '2.0.2' );
|
18 |
define( 'MGCL_PREFIX', 'mgcl' );
|
19 |
define( 'MGCL_DOMAIN', 'gallery-custom-links' );
|
20 |
define( 'MGCL_ENTRY', __FILE__ );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://commerce.coinbase.com/checkout/d047546a-77a8-41c8-9ea9-4a95
|
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 7.0
|
8 |
-
Stable tag: 2.0.
|
9 |
|
10 |
Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others.
|
11 |
|
@@ -42,6 +42,9 @@ Replace all the files. Nothing else to do.
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
45 |
= 2.0.1 =
|
46 |
* Fix: There were a few issues in this new version.
|
47 |
* Update: New modernized admin.
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 7.0
|
8 |
+
Stable tag: 2.0.2
|
9 |
|
10 |
Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others.
|
11 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 2.0.2 =
|
46 |
+
* Fix: Autoload was missing.
|
47 |
+
|
48 |
= 2.0.1 =
|
49 |
* Fix: There were a few issues in this new version.
|
50 |
* Update: New modernized admin.
|