Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleykolodziej committed Sep 16, 2020
2 parents a506d52 + f79da57 commit b8ae9b1
Show file tree
Hide file tree
Showing 38 changed files with 2,869 additions and 1,750 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ node_modules/
*.zip
/_styleguide
/sftp-config.json
sftp-config-alt.json
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
# Changelog

## 0.3.0
- Official support for WordPress 5.4, including:
- Compatibility for the the listicle block https://github.com/bu-ist/bu-blocks/pull/271
- Compatibility for the Photo Essay block https://github.com/bu-ist/bu-blocks/pull/269
- Compatibility for the BUniverse block https://github.com/bu-ist/bu-blocks/pull/255
- Compabilility for the Button block https://github.com/bu-ist/bu-blocks/pull/256
- Compatibility for the Custom HTML block https://github.com/bu-ist/bu-blocks/pull/257
- Compatibility for the Headline block https://github.com/bu-ist/bu-blocks/pull/258
- Compatibility for the Intro Paragraph block https://github.com/bu-ist/bu-blocks/pull/260
- Compatibility for the Drawer block https://github.com/bu-ist/bu-blocks/pull/261
- Compatibility for the Modal block https://github.com/bu-ist/bu-blocks/pull/262
- Compatibility for the Related Stories block https://github.com/bu-ist/bu-blocks/pull/263
- Compatibility for the Stats block https://github.com/bu-ist/bu-blocks/pull/270
- Compatibility for the Listicle block https://github.com/bu-ist/bu-blocks/pull/271
- Improved parent block selection in editor by adding padding https://github.com/bu-ist/bu-blocks/pull/270
- Fixed issue with templateLock changes upstream that block child blocks from being inserted https://github.com/bu-ist/bu-blocks/pull/270

## 0.2.19
- Bug Fix: Fixes listicle sidebar sizing https://github.com/bu-ist/r-editorial/issues/783
- Fix Photo essay Modal Keyboard Navigation https://github.com/bu-ist/r-editorial/issues/827

## 0.2.18
- Leadin Block: fix image caption position for text-over-image style. This moves the caption up below the photo on small device sizes instead of the caption displaying below the hed/dek of the leadin block.
Expand Down
10 changes: 5 additions & 5 deletions bu-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author URI: http://www.bu.edu/interactive-design/
* Text Domain: bu-blocks
* Domain Path: /languages
* Version: 0.2.19
* Version: 0.2.20
*
* @package BU_Blocks
*/
Expand All @@ -20,7 +20,7 @@
}

// Defines the plugin version.
define( 'BU_BLOCKS_VERSION', '0.2.19' );
define( 'BU_BLOCKS_VERSION', '0.2.20' );

/**
* Displays admin notice and prevents activation.
Expand All @@ -35,12 +35,12 @@ function gutenberg_notice() {
?>
<div class="notice notice-error is-dismissible">
<p>
<?php esc_html_e( 'BU Blocks Error: BU Blocks requires either WordPress 5.0.0, or the Gutenberg plugin to be installed and activated on any version previous to 5.0.0.', 'bu-blocks' ); ?>
<?php esc_html_e( 'BU Blocks Error: BU Blocks requires either WordPress 5.0.0, or the Gutenberg plugin to be installed and activated on any version previous to 5.0.0.', 'bu-blocks', 'r-editorial' ); ?>
</p>
<p>
<?php esc_html_e( 'Please install and activate the Gutenberg plugin to use BU Blocks.', 'bu-blocks' ); ?>
<?php esc_html_e( 'Please install and activate the Gutenberg plugin to use BU Blocks.', 'bu-blocks', 'r-editorial' ); ?>
</p>
<p><a class="button" href="https://wordpress.org/plugins/gutenberg/" target="_blank" rel="noopener noreferrer"><?php _e( 'Get Gutenberg', 'bu-blocks' ); ?></a></p>
<p><a class="button" href="https://wordpress.org/plugins/gutenberg/" target="_blank" rel="noopener noreferrer"><?php _e( 'Get Gutenberg', 'bu-blocks', 'r-editorial' ); ?></a></p>
</div>
<?php
deactivate_plugins( plugin_basename( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion dist/blocks.build.js

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions dist/blocks.editor.build.css

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions dist/blocks.style.build.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/blocks.style.build.css

Large diffs are not rendered by default.

Loading

0 comments on commit b8ae9b1

Please sign in to comment.