Skip to content

Commit

Permalink
Merge pull request #65 from moderntribe/release/0.11.1
Browse files Browse the repository at this point in the history
Package version 0.11.1
  • Loading branch information
bookernath committed Aug 29, 2018
2 parents e774b76 + 13a02ca commit 0fcfac8
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 16 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.11.1] - 2018-08-28
### Fixed
- Remove reference to `Id` from the Gutenberg blocks `props` Object which was deprecated in version 3.3. Replaced with new key `clientId`.

## [0.11.0] - 2018-08-27
### Added
- Changelog
Expand All @@ -20,16 +24,10 @@
- When running an import via CLI, reschedule the next cron import after
the CLI import completes.

### Deprecated

### Removed
- The class `BigCommerce\Customizer\Sections\Catalog` is gone. Its constants
have moved to `BigCommerce\Customizer\Sections\Product_Archive`.

### Fixed

### Security

## [0.10.0] - 2018-08-03
### Added
- Rendering of form error messages that do not correspond to specific fields
Expand Down
5 changes: 4 additions & 1 deletion assets/css/bc-admin.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/bc-admin.min.css

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion assets/css/bc-gutenberg.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/bc-gutenberg.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/dist/admin/gutenberg/scripts.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/dist/admin/gutenberg/scripts.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/src/admin/gutenberg/blocks/products/products.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const registerBlock = () => {
const spinner = createElement('span', {className: 'spinner is-active', key: 'spinner'});
const previewEl = createElement('div', {className: 'bigcommerce-product-preview', key: 'preview-shortcode'}, [spinner]);
const state = {
currentBlock: props.id,
currentBlock: props.clientId,
};

const getResponse = (queryObj) => {
Expand Down
5 changes: 5 additions & 0 deletions assets/pcss/admin/gutenberg/_default.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,9 @@
}
}
}

.bc-quickview-trigger {
border: 0;
outline: none;
}
}
4 changes: 4 additions & 0 deletions assets/pcss/admin/shortcode-ui/_shortcode-dialog.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@
}
}

.bc-shortcode-ui__products-list {
height: 100%;
}

.bc-shortcode-ui__terms-list-item {
display: inline-block;
vertical-align: middle;
Expand Down
2 changes: 1 addition & 1 deletion bigcommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: BigCommerce for WordPress
Description: BigCommerce for WordPress
Author: Modern Tribe
Version: 0.11.0
Version: 0.11.1
Author URI: http://www.tri.be
Requires PHP: 5.6
Text Domain: bigcommerce
Expand Down
2 changes: 1 addition & 1 deletion build-timestamp.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?php
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '11.23.08.27.2018');
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '11.16.08.29.2018');
2 changes: 1 addition & 1 deletion src/BigCommerce/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace BigCommerce;

class Plugin {
const VERSION = '0.11.0';
const VERSION = '0.11.1';

protected static $_instance;

Expand Down

0 comments on commit 0fcfac8

Please sign in to comment.