Skip to content

Commit

Permalink
chore(release): 1.5.6 [skip ci]
Browse files Browse the repository at this point in the history
##### [Version 1.5.6](v1.5.5...v1.5.6) (2020-08-03)

- Button Group Improvements
- Fixed Caption field missing from Slider Block
- Image management in Slider & Gallery Block
- Fix issue with CSS inline loading twice
- Fix Posts Block offset bug
- Remove default font size from Posts Block
- Improve Animation Picker
  • Loading branch information
pirate-bot committed Aug 3, 2020
1 parent 4f9082c commit c9ad521
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
##### [Version 1.5.6](https://github.com/Codeinwp/otter-blocks/compare/v1.5.5...v1.5.6) (2020-08-03)

- Button Group Improvements
- Fixed Caption field missing from Slider Block
- Image management in Slider & Gallery Block
- Fix issue with CSS inline loading twice
- Fix Posts Block offset bug
- Remove default font size from Posts Block
- Improve Animation Picker

##### [Version 1.5.5](https://github.com/Codeinwp/otter-blocks/compare/v1.5.4...v1.5.5) (2020-06-22)

- Dropped support for WordPress 5.4
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "codeinwp/otter-blocks",
"description": "A set of awesome Gutenberg Blocks by ThemeIsle.",
"type": "wordpress-plugin",
"version": "1.5.5",
"version": "1.5.6",
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^1",
Expand Down
4 changes: 2 additions & 2 deletions otter-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Plugin Name: Gutenberg Blocks and Template Library by Otter
* Plugin URI: https://themeisle.com/plugins/otter-blocks
* Description: Create beautiful and attracting posts, pages, and landing pages with Gutenberg Blocks and Template Library by Otter. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
* Version: 1.5.5
* Version: 1.5.6
* Author: ThemeIsle
* Author URI: https://themeisle.com
* License: GPL-2.0+
Expand All @@ -26,7 +26,7 @@
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
define( 'OTTER_BLOCKS_VERSION', '1.5.5' );
define( 'OTTER_BLOCKS_VERSION', '1.5.6' );
define( 'OTTER_BLOCKS_DEV', false );

$vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php';
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "otter-blocks",
"version": "1.5.5",
"version": "1.5.6",
"description": "Gutenberg Blocks and Template Library by Otter",
"scripts": {
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
Expand Down
28 changes: 20 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ It has:
- Sharing Icons Block
- Plugin Card Block

### STUNNING WEB PAGES WITH DRAG AND DROP EFFICIENCY
# STUNNING WEB PAGES WITH DRAG AND DROP EFFICIENCY #

Otter can be used to build everything from a personal blog to an international store without losing the personal touch. Otter’s famous ease-of-use transforms basic blocks into expressive layouts in seconds:

### DO IT YOUR WAY WITH SECTION BLOCKS
# DO IT YOUR WAY WITH SECTION BLOCKS #

With Otter’s Section Block you will be able to create innovative layouts that improve readability with enhanced visual appeal. The Section Block lets you create interesting layouts that help emphasis your content.

You can create your own layouts or select one of Otter’s layouts and templates. Each of the layouts has been professionally designed to provide a range of visually pleasing sections like About, Headers, Pricing, Testimonials.

You can take advantage of the responsive controls to increase padding and margins or drop elements to create visual experiences perfect for mobile, tablet, or desktop.

### TEMPLATE LIBRARY
# TEMPLATE LIBRARY #

Unleash your inner designer with Otter’s template library. With over 50 different templates you can build a professional site quickly and efficiently.

Expand All @@ -58,16 +58,16 @@ All of your website’s most important areas are covered; headers, testimonials,

From headers with images to headers with features, from content with images to about sections with video. Otter has a template to match your vision, just add the content and you’ll be set.

### REDESIGNED GOOGLE MAPS BLOCK
# REDESIGNED GOOGLE MAPS BLOCK #

Otter’s integration with the WordPress Block Editor allows you to see your changes live from the backend. Innovative blocks like the Google Maps block help you customise the experience right down to the color and description of the markers, search for places by name or coordinates, add and remove map controls, or change the size and style of the maps with a few clicks.

### CSS ON EVERY BLOCK
# CSS ON EVERY BLOCK #

Otter’s commitment to user centred building includes a unique block-by-block CSS extension that makes it easy for you to add CSS to your blocks. The additional CSS area is integrated into the backend to make targeting your blocks easier. You can add media queries, change colours, and add borders all in one easy to follow area.

### CUSTOMIZE EVERY BLOCK
# CUSTOMIZE EVERY BLOCK #

More than layouts and sections, you need advanced customisation options to give you control over style and appearance. With Otter, you’ve got it all.

Create mobile-friendly designs with Otter’s built-in responsive settings. Each block can be tweaked to provide a consistent experience for mobile, tablet, and desktop.
Expand All @@ -86,9 +86,21 @@ Help your site shine with design options built to enhance your brand. Every bloc

## Changelog ##

##### [Version 1.5.6](https://github.com/Codeinwp/otter-blocks/compare/v1.5.5...v1.5.6) (2020-08-03)

- Button Group Improvements
- Fixed Caption field missing from Slider Block
- Image management in Slider & Gallery Block
- Fix issue with CSS inline loading twice
- Fix Posts Block offset bug
- Remove default font size from Posts Block
- Improve Animation Picker




##### [Version 1.5.5](https://github.com/Codeinwp/otter-blocks/compare/v1.5.4...v1.5.5) (2020-06-22)

- Dropped support for WordPress 5.4
- Store images locally when importing templates
- The improved template import mechanism
- Fix CSS file is not enqueued for posts outside the main loop
Expand Down
13 changes: 13 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ Help your site shine with design options built to enhance your brand. Every bloc

== Changelog ==

##### [Version 1.5.6](https://github.com/Codeinwp/otter-blocks/compare/v1.5.5...v1.5.6) (2020-08-03)

- Button Group Improvements
- Fixed Caption field missing from Slider Block
- Image management in Slider & Gallery Block
- Fix issue with CSS inline loading twice
- Fix Posts Block offset bug
- Remove default font size from Posts Block
- Improve Animation Picker




##### [Version 1.5.5](https://github.com/Codeinwp/otter-blocks/compare/v1.5.4...v1.5.5) (2020-06-22)

- Store images locally when importing templates
Expand Down

0 comments on commit c9ad521

Please sign in to comment.