Skip to content

Commit ac2bcfe

Browse files
authored
release: version 2.0.6
- Redesigned Form Block with new styling and options - Optimize Animations Module - Optimized front-end loading of scripts - New Dynamic Content Extension - Add Local Fonts Module in Otter Pro - Add static background to Maps Block until in loading state - Allow device-based alignment on Button Group Block - Add Full Width option in Button Group Block - Remove Template Library from Otter - Fix Gallery Block not Converting to Slider Block - Fix Sections width not being controlled in Single column - Fix issue with multiple Tabs Blocks not working on the same page - Fix Flip Block width on hover - Fix Advanced Heading block not splitting properly when pressed Enter - Fix alignment not working when Advanced Heading is set to Span - Fix columns not working properly in Posts Block in the Editor mode
2 parents 7523c81 + 5a47bf7 commit ac2bcfe

File tree

144 files changed

+8147
-3756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+8147
-3756
lines changed

.github/workflows/create-build-url.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
run: npm run build
3636
- name: Create zip
3737
run: npm run dist
38+
- name: Remove build folder
39+
run: rm -rf build
3840
- name: Build dev files
3941
run: npm run build-dev
4042
- name: Create zip
@@ -78,13 +80,13 @@ jobs:
7880
with:
7981
issue-number: ${{ steps.get-pr-number.outputs.num }}
8082
comment-author: github-actions[bot]
81-
body-includes: Download Gutenberg Blocks and Template Library by Otter
83+
body-includes: Download Otter – Page Builder Blocks & Extensions for Gutenberg
8284

8385
- name: Get comment body
8486
id: get-comment-body
8587
run: |
8688
body="Plugin build for ${{ github.event.pull_request.head.sha }} is ready :bellhop_bell:!
87-
- Download Gutenberg Blocks and Template Library by Otter - [Production](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/otter-blocks.zip) ~ [Development](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/otter-blocks-dev.zip)
89+
- Download Otter – Page Builder Blocks & Extensions for Gutenberg - [Production](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/otter-blocks.zip) ~ [Development](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/otter-blocks-dev.zip)
8890
- Download Otter Pro - [Production](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/otter-pro.zip) ~ [Development](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/otter-pro-dev.zip)
8991
- Download Blocks Animation - [Production](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/blocks-animation.zip) ~ [Development](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/blocks-animation-dev.zip)
9092
- Download Blocks CSS - [Production](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/blocks-css.zip) ~ [Development](https://verti-artifacts.s3.amazonaws.com/${{ github.event.pull_request.base.repo.name }}-${{ needs.dev-zip.outputs.branch-name }}-${{ needs.dev-zip.outputs.git-sha-8 }}/blocks-css-dev.zip)

.github/workflows/create-tag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
GIT_COMMITTER_NAME: themeisle[bot]
3333
GIT_COMMITTER_EMAIL: ${{ secrets.BOT_EMAIL }}
3434
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_ANNOUNCEMENTS }}
35-
SEMANTIC_RELEASE_PACKAGE: Gutenberg Blocks and Template Library by Otter
35+
SEMANTIC_RELEASE_PACKAGE: Otter – Page Builder Blocks & Extensions for Gutenberg
3636
empty-job:
3737
# if no jobs run, github action considers it a test failure -- which seems like a bug
3838
# this makes it so the top-level if statement for the job does not give status failure.

.github/workflows/sync-branches.yml

-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- 'master'
6-
- 'development'
76
jobs:
87
sync-branch:
98
runs-on: ubuntu-latest
@@ -21,11 +20,3 @@ jobs:
2120
from_branch: master
2221
target_branch: development
2322
github_token: ${{ secrets.BOT_TOKEN }}
24-
- name: Merge development -> otter-pro
25-
if: ${{ steps.retrieve-branch-name.outputs.branch_name == 'development' }}
26-
uses: Codeinwp/merge-branch@master
27-
with:
28-
type: now
29-
from_branch: development
30-
target_branch: otter-pro
31-
github_token: ${{ secrets.BOT_TOKEN }}

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"require": {
5353
"codeinwp/themeisle-sdk": "^3.1",
5454
"masterminds/html5": "^2.7",
55-
"tubalmartin/cssmin": "^4.1"
55+
"tubalmartin/cssmin": "^4.1",
56+
"wptt/webfont-loader": "^1.1"
5657
}
5758
}

composer.lock

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

docs/index.md

-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,3 @@
88
- [Registration](blocks.md#registration)
99
- [Server-side Rendering](blocks.md#server-side-rendering)
1010
- [Custom CSS & Google Fonts](blocks.md#custom-css--google-fonts)
11-
12-
- [Template Library](template-library.md)
13-
- [Adding New Templates](template-library.md#adding-new-templates)
14-
- [Adding via Theme or Plugin](template-library.md#adding-via-theme-or-plugin)

docs/template-library.md

-88
This file was deleted.

inc/class-base-css.php

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ public function autoload_block_classes() {
7777
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Font_Awesome_Icons_CSS',
7878
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Icon_List_CSS',
7979
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Icon_List_Item_CSS',
80+
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Form_CSS',
81+
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Form_Input_CSS',
82+
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Form_Textarea_CSS',
8083
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Flip_CSS',
8184
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Progress_Bar_CSS',
8285
'\ThemeIsle\GutenbergBlocks\CSS\Blocks\Popup_CSS',

0 commit comments

Comments
 (0)