Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plugins/stackable-ultimate-gutenberg-blocks/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author: Gambit Technologies, Inc
* Author URI: http://gambit.ph
* Text Domain: stackable-ultimate-gutenberg-blocks
* Version: 2.13.2
* Version: 2.13.4
*
* @package Stackable
*/
Expand All @@ -23,7 +23,7 @@
}

defined( 'STACKABLE_SHOW_PRO_NOTICES' ) || define( 'STACKABLE_SHOW_PRO_NOTICES', true );
defined( 'STACKABLE_VERSION' ) || define( 'STACKABLE_VERSION', '2.13.2' );
defined( 'STACKABLE_VERSION' ) || define( 'STACKABLE_VERSION', '2.13.4' );
defined( 'STACKABLE_FILE' ) || define( 'STACKABLE_FILE', __FILE__ );
defined( 'STACKABLE_I18N' ) || define( 'STACKABLE_I18N', 'stackable-ultimate-gutenberg-blocks' );
// Plugin slug.
Expand Down
15 changes: 14 additions & 1 deletion plugins/stackable-ultimate-gutenberg-blocks/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: blocks, gutenberg, gutenberg blocks, page builder, WordPress blocks
Requires at least: 5.4
Tested up to: 5.6
Requires PHP: 5.3
Stable tag: 2.13.2
Stable tag: 2.13.4
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -193,6 +193,19 @@ Nope. Stackable only works with Gutenberg, the new WordPress editor.

== Changelog ==

= 2.13.4 =
* Fixed: Issue with styling duplicated blocks
* Fixed: Accordion block migration error
* Fixed: Google Fonts possible enqueueing issue

= 2.13.3 =
* New: You can now select titles to use Pargraph tags instead of H1-H6
* Fixed: Can't convert reusable blocks to regular blocks
* Fixed: Some inspector style conflicts
* Fixed: Nested Accordion block arrows did not rotate when opened
* Fixed: Feature Grid image shape for the column is now working
* Fixed: Clicking on the default quote icon in the Blockquote block

= 2.13.2 =
* Fixed: Accordion SEO issue with heading levels
* Fixed: Blocks didn't re-render when some props changed
Expand Down
4 changes: 3 additions & 1 deletion plugins/stackable-ultimate-gutenberg-blocks/src/fonts.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ public static function enqueue_google_fonts( $google_fonts, $handle = 'stackable
}

foreach ( $google_fonts as &$font ) {
$font = str_replace( ' ', '+', $font ) . ':100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic';
if ( ! empty( $font ) ) {
$font = str_replace( ' ', '+', $font ) . ':100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic';
}
}

$fonts_url = sprintf( 'https://fonts.googleapis.com/css?family=%s', implode( rawurlencode( '|' ), $google_fonts ) );
Expand Down