Lightweight Grid Columns - Version 0.6

Version Description

Download this release

Release Info

Developer edge22
Plugin Icon 128x128 Lightweight Grid Columns
Version 0.6
Comparing to
See all releases

Code changes from version 0.5 to 0.6

Files changed (3) hide show
  1. changelog.txt +3 -0
  2. lightweight-grid-columns.php +5 -5
  3. readme.txt +1 -1
changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  == changelog ==
2
 
 
 
 
3
  ----
4
 
5
  (6/2/2016) - 0.5
1
  == changelog ==
2
 
3
+ (6/3/2016) - 0.6
4
+ * Fix column class bug causing some columns not to work
5
+
6
  ----
7
 
8
  (6/2/2016) - 0.5
lightweight-grid-columns.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Lightweight Grid Columns
4
  Plugin URI: http://generatepress.com
5
  Description: Add columns to your content using easy to use shortcodes.
6
- Version: 0.5
7
  Author: Thomas Usborne
8
  Author URI: https://tomusborne.com
9
  License: GNU General Public License v2 or later
@@ -11,7 +11,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
  Text Domain: lightweight-grid-columns
12
  */
13
 
14
- define( 'LGC_VERSION', '0.5');
15
 
16
  /**
17
  * Load plugin textdomain.
@@ -133,9 +133,9 @@ function lgc_columns_shortcode( $atts , $content = null ) {
133
 
134
  $content = sprintf(
135
  '<div %9$s class="lgc-column lgc-grid-parent %1$s %2$s %3$s %4$s"><div %6$s class="inside-grid-column %5$s">%7$s</div></div>%8$s',
136
- 'grid-' . intval( $grid ),
137
- 'tablet-grid-' . intval( $tablet_grid ),
138
- 'mobile-grid-' . intval( $mobile_grid ),
139
  ( 'true' == $equal_heights ) ? 'lgc-equal-heights' : '',
140
  esc_attr( $class ),
141
  ( '' !== $style ) ? ' style="' . esc_attr( $style ) . '"' : '',
3
  Plugin Name: Lightweight Grid Columns
4
  Plugin URI: http://generatepress.com
5
  Description: Add columns to your content using easy to use shortcodes.
6
+ Version: 0.6
7
  Author: Thomas Usborne
8
  Author URI: https://tomusborne.com
9
  License: GNU General Public License v2 or later
11
  Text Domain: lightweight-grid-columns
12
  */
13
 
14
+ define( 'LGC_VERSION', '0.6');
15
 
16
  /**
17
  * Load plugin textdomain.
133
 
134
  $content = sprintf(
135
  '<div %9$s class="lgc-column lgc-grid-parent %1$s %2$s %3$s %4$s"><div %6$s class="inside-grid-column %5$s">%7$s</div></div>%8$s',
136
+ 'lgc-grid-' . intval( $grid ),
137
+ 'lgc-tablet-grid-' . intval( $tablet_grid ),
138
+ 'lgc-mobile-grid-' . intval( $mobile_grid ),
139
  ( 'true' == $equal_heights ) ? 'lgc-equal-heights' : '',
140
  esc_attr( $class ),
141
  ( '' !== $style ) ? ' style="' . esc_attr( $style ) . '"' : '',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://generatepress.com/ongoing-development
4
  Tags: columns, columns shortcode, grid columns
5
  Requires at least: 4.0
6
  Tested up to: 4.5.2
7
- Stable tag: 0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Tags: columns, columns shortcode, grid columns
5
  Requires at least: 4.0
6
  Tested up to: 4.5.2
7
+ Stable tag: 0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10