Gallery Custom Links - Version 1.1.1

Version Description

  • Update: Defaults set to Output Buffering + HtmlDomParser. Those settings work for most.
  • Info: I need your support. Don't hesitate to try different versions of the plugin if it was working fine for you in the past (old versions). You can also let me a good review to motivate me, that helps a lot.
Download this release

Release Info

Developer TigrouMeow
Plugin Icon 128x128 Gallery Custom Links
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1.0 to 1.1.1

Files changed (3) hide show
  1. gallery_custom_links.php +2 -2
  2. mgcl_core.php +1 -1
  3. readme.txt +5 -2
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: 1.1.0
7
  Author: Jordy Meow
8
  Author URI: https://meowapps.com
9
  Text Domain: gallery-custom-links
@@ -23,7 +23,7 @@ if ( class_exists( 'Meow_Gallery_Custom_Links' ) ) {
23
  }
24
 
25
  global $mgcl_version;
26
- $mgcl_version = '1.1.0';
27
 
28
  include "mgcl_admin.php";
29
  $mgcl_admin = new Meow_Gallery_Custom_Links_Admin( 'mgcl', __FILE__, 'gallery-custom-links' );
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: 1.1.1
7
  Author: Jordy Meow
8
  Author URI: https://meowapps.com
9
  Text Domain: gallery-custom-links
23
  }
24
 
25
  global $mgcl_version;
26
+ $mgcl_version = '1.1.1';
27
 
28
  include "mgcl_admin.php";
29
  $mgcl_admin = new Meow_Gallery_Custom_Links_Admin( 'mgcl', __FILE__, 'gallery-custom-links' );
mgcl_core.php CHANGED
@@ -10,7 +10,7 @@ class Meow_Gallery_Custom_Links
10
  {
11
  public $isEnabled = true;
12
  // use OB on the whole page, or only go through the the_content ($renderingMode will be ignored)
13
- public $isObMode = false;
14
  // 'HtmlDomParser' (less prone to break badly formatted HTML) or 'DiDom' (faster)
15
  public $parsingEngine = 'HtmlDomParser';
16
  public $enableLogs = false;
10
  {
11
  public $isEnabled = true;
12
  // use OB on the whole page, or only go through the the_content ($renderingMode will be ignored)
13
+ public $isObMode = true;
14
  // 'HtmlDomParser' (less prone to break badly formatted HTML) or 'DiDom' (faster)
15
  public $parsingEngine = 'HtmlDomParser';
16
  public $enableLogs = false;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: custom, links, gallery, gutenberg
4
  Requires at least: 5.0
5
  Tested up to: 5.1
6
  Requires PHP: 7.0
7
- Stable tag: 1.1.0
8
 
9
  Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others.
10
 
@@ -41,9 +41,12 @@ Replace all the files. Nothing else to do.
41
 
42
  == Changelog ==
43
 
 
 
 
 
44
  = 1.1.0 =
45
  * Update: Using HtmlDomParser fully (which should avoid broken HTML). It is possible to override the plugin hidden options to switch to different mode, but I am trying to find a mode that works for 99% of the users first.
46
- * Info: I need your support. Don't hesitate to try different versions of the plugin if it was working fine for you in the past ([old versions](https://wordpress.org/plugins/gallery-custom-links/advanced/)). You can also let me a good review to motivate me, that helps a lot.
47
 
48
  = 1.0.9 =
49
  * Update: Avoid interfering at all with all Ajax/Rest requests.
4
  Requires at least: 5.0
5
  Tested up to: 5.1
6
  Requires PHP: 7.0
7
+ Stable tag: 1.1.1
8
 
9
  Gallery Custom Links allows you to link images from galleries to a specified URL. Tested with WordPress Gallery, Gutenberg, the Meow Gallery and others.
10
 
41
 
42
  == Changelog ==
43
 
44
+ = 1.1.1 =
45
+ * Update: Defaults set to Output Buffering + HtmlDomParser. Those settings work for most.
46
+ * Info: I need your support. Don't hesitate to try different versions of the plugin if it was working fine for you in the past ([old versions](https://wordpress.org/plugins/gallery-custom-links/advanced/)). You can also let me a good review to motivate me, that helps a lot.
47
+
48
  = 1.1.0 =
49
  * Update: Using HtmlDomParser fully (which should avoid broken HTML). It is possible to override the plugin hidden options to switch to different mode, but I am trying to find a mode that works for 99% of the users first.
 
50
 
51
  = 1.0.9 =
52
  * Update: Avoid interfering at all with all Ajax/Rest requests.