Skip to content

Commit 1615c76

Browse files
Merge branch 'master' into development
2 parents 23e5dba + 7ba9854 commit 1615c76

7 files changed

+384
-32
lines changed

CHANGELOG.md

+96
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,99 @@
1+
##### [Version 1.6.1](https://github.com/Codeinwp/otter-blocks/compare/v1.6.0...v1.6.1) (2021-03-02)
2+
3+
- Fix CSS Extensions causing Reusable Blocks to crash.
4+
- Add new Map Block
5+
- Various fixes
6+
7+
#### [Version 1.6.0](https://github.com/Codeinwp/otter-blocks/compare/v1.5.12...v1.6.0) (2021-01-06)
8+
9+
- New Icon List Block.
10+
- Allow editing text in Progress Bar Block.
11+
- Reuse Gradient Control from Core.
12+
- Fix Font Awesome loading when the non-Icon button is being used.
13+
- Improve Server-Side CSS Method
14+
15+
##### [Version 1.5.12](https://github.com/Codeinwp/otter-blocks/compare/v1.5.11...v1.5.12) (2020-12-12)
16+
17+
- Fix ThemeIsle icons not appearing on WebKit browsers
18+
19+
##### [Version 1.5.11](https://github.com/Codeinwp/otter-blocks/compare/v1.5.10...v1.5.11) (2020-11-25)
20+
21+
- Do not add the background image to the Section when the URL is not set.
22+
- WordPress 5.6 update chores.
23+
24+
##### [Version 1.5.10](https://github.com/Codeinwp/otter-blocks/compare/v1.5.9...v1.5.10) (2020-11-22)
25+
26+
- Responsive Images in Posts Block.
27+
- Fix Progress Blocks.
28+
- Don't enqueue CSS on Classic Editor posts.
29+
- Change the Highlight tag.
30+
31+
##### [Version 1.5.9](https://github.com/Codeinwp/otter-blocks/compare/v1.5.8...v1.5.9) (2020-11-18)
32+
33+
- WordPress 5.6 compatibility.
34+
- Fix duplicate posts appear in Posts block when using WPML.
35+
- Fox Sharing Icons block links.
36+
- Improve Font Awesome Icons background.
37+
- Fix Progress Bar percentage animation.
38+
- Add ThemeIsle Icons to Buttons & Font Awesome Icons Block.
39+
- Rename Font Awesome Icons Block to Icon Block.
40+
- Add Circular Progress Block.
41+
- Allow zero value for borderSize in Button Block.
42+
43+
##### [Version 1.5.8](https://github.com/Codeinwp/otter-blocks/compare/v1.5.7...v1.5.8) (2020-09-14)
44+
45+
- Add Lottie Animations Block.
46+
- Add Progress Bar Block.
47+
- Prevent old custom CSS from being cached.
48+
- Fix Slider in Section's Vertical Alignment on AMP.
49+
- Consensual Tracking Data.
50+
51+
##### [Version 1.5.7](https://github.com/Codeinwp/otter-blocks/compare/v1.5.6...v1.5.7) (2020-08-12)
52+
53+
- Fix Button Group Block borders
54+
- Fix Plugin Card failing with additional attributes
55+
- Fix permission callback missing in REST API Route
56+
57+
##### [Version 1.5.6](https://github.com/Codeinwp/otter-blocks/compare/v1.5.5...v1.5.6) (2020-08-03)
58+
59+
- Button Group Improvements
60+
- Fixed Caption field missing from Slider Block
61+
- Image management in Slider & Gallery Block
62+
- Fix issue with CSS inline loading twice
63+
- Fix Posts Block offset bug
64+
- Remove default font size from Posts Block
65+
- Improve Animation Picker
66+
67+
##### [Version 1.5.5](https://github.com/Codeinwp/otter-blocks/compare/v1.5.4...v1.5.5) (2020-06-22)
68+
69+
- Dropped support for WordPress 5.4
70+
- Store images locally when importing templates
71+
- The improved template import mechanism
72+
- Fix CSS file is not enqueued for posts outside the main loop
73+
- Drop support for WordPress 5.3
74+
- Add backward compatibility to Template Library import
75+
- Fix category filter in Posts Section
76+
- Add new Block Templates
77+
78+
##### [Version 1.5.4](https://github.com/Codeinwp/otter-blocks/compare/v1.5.3...v1.5.4) (2020-05-26)
79+
80+
- Use WP File System in Template Import
81+
- Fix CSS Regeneration
82+
- Add TinyMCE in Map Marker
83+
- Use ServerSideLoader in Author & Sharing Blocks
84+
- Fix Posts Block for Gutenberg 8.0
85+
- Display template name in Template Library
86+
- Add AMP Support to Slider Block
87+
- Remove Section Outline
88+
- Add AMP Support to Google Maps Block
89+
- Fix Horizontal/Vertical Alignment
90+
- Add Template Preview in Template Library
91+
- Fix issue with Color resetting in Button Group & Section
92+
- Fix Font Awesome not loading on Index Pages
93+
- Add two new templates
94+
- Fix SVG issue in Slider & Section Block
95+
- Add Menu Icons Module
96+
197
##### [Version 1.5.3](https://github.com/Codeinwp/otter-blocks/compare/v1.5.2...v1.5.3) (2020-04-10)
298

399
- Remove Icons from Range Controls

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codeinwp/otter-blocks",
33
"description": "A set of awesome Gutenberg Blocks by ThemeIsle.",
44
"type": "wordpress-plugin",
5-
"version": "1.5.3",
5+
"version": "1.6.1",
66
"require-dev": {
77
"squizlabs/php_codesniffer": "^3.3",
88
"wp-coding-standards/wpcs": "^1",

otter-blocks.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Gutenberg Blocks and Template Library by Otter
88
* Plugin URI: https://themeisle.com/plugins/otter-blocks
99
* 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.
10-
* Version: 1.5.3
10+
* Version: 1.6.1
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-2.0+
@@ -26,7 +26,7 @@
2626
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
2727
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
2828
define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
29-
define( 'OTTER_BLOCKS_VERSION', '1.5.3' );
29+
define( 'OTTER_BLOCKS_VERSION', '1.6.1' );
3030
define( 'OTTER_BLOCKS_DEV', false );
3131

3232
$vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php';

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "otter-blocks",
3-
"version": "1.5.3",
3+
"version": "1.6.1",
44
"description": "Gutenberg Blocks and Template Library by Otter",
55
"scripts": {
66
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",

readme.md

+155-27
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
**Tested up to:** 5.7
66
**Requires PHP:** 5.4
77
**Stable tag:** trunk
8-
**License:** GPLv3
9-
**License URI:** https://www.gnu.org/licenses/gpl-3.0.en.html
8+
**License:** GPLv3
9+
**License URI:** https://www.gnu.org/licenses/gpl-3.0.en.html
1010

1111
Otter is a dynamic collection of page building blocks and templates for the WordPress block editor. 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 in Gutenberg.
1212

1313
## Description ##
1414

15-
Otter is a dynamic collection of page building blocks and templates for the WordPress block editor.
15+
Otter is a dynamic collection of page building blocks and templates for the WordPress block editor.
1616

17-
The growing list of page building blocks covers all of the elements you need to build your WordPress site. Combine the blocks with Otter to build stunning pages and posts with the simplicity of designing.
17+
The growing list of page building blocks covers all of the elements you need to build your WordPress site. Combine the blocks with Otter to build stunning pages and posts with the simplicity of designing.
1818

19-
With a lightweight approach, Otter enhances WordPress site building without impacting site speed. With Otter, you can truly harness the potential of the new WordPress era.
19+
With a lightweight approach, Otter enhances WordPress site building without impacting site speed. With Otter, you can truly harness the potential of the new WordPress era.
2020

2121
https://www.youtube.com/watch?v=ypIeTgvYeRE
2222

@@ -40,43 +40,43 @@ It has:
4040
- Sharing Icons Block
4141
- Plugin Card Block
4242

43-
### STUNNING WEB PAGES WITH DRAG AND DROP EFFICIENCY
43+
# STUNNING WEB PAGES WITH DRAG AND DROP EFFICIENCY #
4444

4545
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:
4646

47-
### DO IT YOUR WAY WITH SECTION BLOCKS
47+
# DO IT YOUR WAY WITH SECTION BLOCKS #
4848

49-
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.
49+
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.
5050

51-
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.
51+
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.
5252

53-
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.
53+
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.
5454

55-
### TEMPLATE LIBRARY
55+
# TEMPLATE LIBRARY #
5656

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

59-
The template library provides a range of different elements in a variety of styles to help you build great pages.
59+
The template library provides a range of different elements in a variety of styles to help you build great pages.
6060

61-
All of your website’s most important areas are covered; headers, testimonials, pricing tables, content and more.
61+
All of your website’s most important areas are covered; headers, testimonials, pricing tables, content and more.
6262

63-
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.
63+
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.
6464

65-
### REDESIGNED GOOGLE MAPS BLOCK
65+
# REDESIGNED GOOGLE MAPS BLOCK #
6666

67-
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.
67+
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.
6868

69-
### CSS ON EVERY BLOCK
69+
# CSS ON EVERY BLOCK #
7070

71-
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.
71+
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.
72+
73+
# CUSTOMIZE EVERY BLOCK #
7274

73-
### CUSTOMIZE EVERY BLOCK
74-
7575
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.
7676

77-
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.
77+
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.
7878

79-
Help your site shine with design options built to enhance your brand. Every block has customization support to help you style your site according to your vision:
79+
Help your site shine with design options built to enhance your brand. Every block has customization support to help you style your site according to your vision:
8080

8181
- Color controls for primary, accents, and backgrounds.
8282
- Animation at the click of a button.
@@ -90,6 +90,134 @@ Help your site shine with design options built to enhance your brand. Every bloc
9090

9191
## Changelog ##
9292

93+
##### [Version 1.6.1](https://github.com/Codeinwp/otter-blocks/compare/v1.6.0...v1.6.1) (2021-03-02)
94+
95+
- Fix CSS Extensions causing Reusable Blocks to crash.
96+
- Add new Map Block
97+
- Various fixes
98+
99+
100+
101+
102+
#### [Version 1.6.0](https://github.com/Codeinwp/otter-blocks/compare/v1.5.12...v1.6.0) (2021-01-06)
103+
104+
- New Icon List Block.
105+
- Allow editing text in Progress Bar Block.
106+
- Reuse Gradient Control from Core.
107+
- Fix Font Awesome loading when the non-Icon button is being used.
108+
- Improve Server-Side CSS Method
109+
110+
111+
112+
113+
##### [Version 1.5.12](https://github.com/Codeinwp/otter-blocks/compare/v1.5.11...v1.5.12) (2020-12-12)
114+
115+
- Fix ThemeIsle icons not appearing on WebKit browsers
116+
117+
118+
119+
120+
##### [Version 1.5.11](https://github.com/Codeinwp/otter-blocks/compare/v1.5.10...v1.5.11) (2020-11-25)
121+
122+
- Do not add the background image to the Section when the URL is not set.
123+
- WordPress 5.6 update chores.
124+
125+
126+
127+
128+
##### [Version 1.5.10](https://github.com/Codeinwp/otter-blocks/compare/v1.5.9...v1.5.10) (2020-11-22)
129+
130+
- Responsive Images in Posts Block.
131+
- Fix Progress Blocks.
132+
- Don't enqueue CSS on Classic Editor posts.
133+
- Change the Highlight tag.
134+
135+
136+
137+
138+
##### [Version 1.5.9](https://github.com/Codeinwp/otter-blocks/compare/v1.5.8...v1.5.9) (2020-11-18)
139+
140+
- WordPress 5.6 compatibility.
141+
- Fix duplicate posts appear in Posts block when using WPML.
142+
- Fox Sharing Icons block links.
143+
- Improve Font Awesome Icons background.
144+
- Fix Progress Bar percentage animation.
145+
- Add ThemeIsle Icons to Buttons & Font Awesome Icons Block.
146+
- Rename Font Awesome Icons Block to Icon Block.
147+
- Add Circular Progress Block.
148+
- Allow zero value for borderSize in Button Block.
149+
150+
151+
152+
153+
##### [Version 1.5.8](https://github.com/Codeinwp/otter-blocks/compare/v1.5.7...v1.5.8) (2020-09-14)
154+
155+
- Add Lottie Animations Block.
156+
- Add Progress Bar Block.
157+
- Prevent old custom CSS from being cached.
158+
- Fix Slider in Section's Vertical Alignment on AMP.
159+
- Consensual Tracking Data.
160+
161+
162+
163+
164+
##### [Version 1.5.7](https://github.com/Codeinwp/otter-blocks/compare/v1.5.6...v1.5.7) (2020-08-12)
165+
166+
- Fix Button Group Block borders
167+
- Fix Plugin Card failing with additional attributes
168+
- Fix permission callback missing in REST API Route
169+
170+
171+
172+
173+
##### [Version 1.5.6](https://github.com/Codeinwp/otter-blocks/compare/v1.5.5...v1.5.6) (2020-08-03)
174+
175+
- Button Group Improvements
176+
- Fixed Caption field missing from Slider Block
177+
- Image management in Slider & Gallery Block
178+
- Fix issue with CSS inline loading twice
179+
- Fix Posts Block offset bug
180+
- Remove default font size from Posts Block
181+
- Improve Animation Picker
182+
183+
184+
185+
186+
##### [Version 1.5.5](https://github.com/Codeinwp/otter-blocks/compare/v1.5.4...v1.5.5) (2020-06-22)
187+
188+
- Store images locally when importing templates
189+
- The improved template import mechanism
190+
- Fix CSS file is not enqueued for posts outside the main loop
191+
- Drop support for WordPress 5.3
192+
- Add backward compatibility to Template Library import
193+
- Fix category filter in Posts Section
194+
- Add new Block Templates
195+
196+
197+
198+
199+
##### [Version 1.5.4](https://github.com/Codeinwp/otter-blocks/compare/v1.5.3...v1.5.4) (2020-05-26)
200+
201+
- Use WP File System in Template Import
202+
- Fix CSS Regeneration
203+
- Add TinyMCE in Map Marker
204+
- Use ServerSideLoader in Author & Sharing Blocks
205+
- Fix Posts Block for Gutenberg 8.0
206+
- Display template name in Template Library
207+
- Add AMP Support to Slider Block
208+
- Remove Section Outline
209+
- Add AMP Support to Google Maps Block
210+
- Fix Horizontal/Vertical Alignment
211+
- Add Template Preview in Template Library
212+
- Fix issue with Color resetting in Button Group & Section
213+
- Fix Font Awesome not loading on Index Pages
214+
- Add two new templates
215+
- Fix SVG issue in Slider & Section Block
216+
- Add Menu Icons Module
217+
218+
219+
220+
93221
##### [Version 1.5.3](https://github.com/Codeinwp/otter-blocks/compare/v1.5.2...v1.5.3) (2020-04-10)
94222

95223
- Remove Icons from Range Controls
@@ -309,17 +437,17 @@ Fix issue with Custom CSS module not working
309437

310438
### 1.0.4 - 2018-12-07 ###
311439
* Fixed dependencies issue
312-
440+
313441
### 1.0.3 - 2018-12-07 ###
314442
* Fixes issue with Posts Grid block displaying wrong author
315-
443+
316444
### 1.0.2 - 2018-12-05 ###
317445
* Fixed Notice Block and Font Awesome Icons
318446
* Optimized build size
319-
447+
320448
### 1.0.1 - 2018-10-29 ###
321449
* Bug fixed with Google Map block.
322-
450+
323451
### 1.0.0 - 2018-10-17 ###
324452
* Adds docker env.
325453
* Adds hash back.

0 commit comments

Comments
 (0)