Skip to content

Commit

Permalink
Merge pull request #113 from moderntribe/release/1.1.0
Browse files Browse the repository at this point in the history
Package version 1.1.0
  • Loading branch information
bookernath committed Nov 20, 2018
2 parents d3f4733 + 72aa0cf commit 4499f28
Show file tree
Hide file tree
Showing 113 changed files with 2,448 additions and 1,037 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [1.1.0]

### Added

- Created a new template tag, shortcode, and block for displaying product reviews.
Shortcode usage: `[bigcommerce_reviews id={product ID}]`. Template tag
usage: `echo \BigCommerce\Functions\product_reviews( $product_id );`
- Added a plugin diagnostics section to the settings screen.
- Added a static method to retrieve a Product object by product ID. Usage:
`$product = \BigCommerce\Posts_Types\Product\Product::by_product_id( $product_id );`

### Changed

- Template may now have a wrapper HTML element that cannot be modified with
a template override. This wrapper is defined in the template controller
class associated with the template. Filters `bigcommerce/template/wrapper/tag`,
`bigcommerce/template/wrapper/classes`, and `bigcommerce/template/wrapper/attributes`
are available to modify this wrapper. Modification may break JavaScript
provided by the plugin. We have added comments next to other HTML
elements that are required to maintain JS functionality.

### Fixed

- Better error handling when the OAuth connector gives unexpected responses.

## [1.0.2]

### Changed
Expand Down Expand Up @@ -166,6 +191,7 @@


[Unreleased]: https://github.com/moderntribe/bigcommerce/compare/master...develop
[1.1.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.0.2...1.1.0
[1.0.2]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/0.15.0...1.0.1
[0.15.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/0.14.0...0.15.0
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,14 @@ default header and footer. The page content is rendered inside the wrapper templ
in `components/page-wrapper.php`. By modifying this wrapper template to match the HTML
markup of a template in your theme, you should have consistent styling across your site.

Additional precautions should be taken when editing the contents of a template override. Within
each of the templates there are `data-attributes` and `PHP` calls that are required in order for the
template to work properly. Wherever you see a PHP call, you should assume that it is a necessary
part of that template and should not be removed or altered. Additionally, you will find documentation
in all of these templates denoting where specific classes or data-attributes are required. Omitting or
removing these classes or attributes could potentially break the JS functionality of this plugin and
your site's theme.

## Action and Filter Hooks

### Architectural Guidelines
Expand Down
108 changes: 102 additions & 6 deletions 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.

24 changes: 15 additions & 9 deletions assets/css/master.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/master.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/fonts/icons-bigcommerce/bigcommerce-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/fonts/icons-bigcommerce/bigcommerce-icons.ttf
Binary file not shown.
Binary file modified assets/fonts/icons-bigcommerce/bigcommerce-icons.woff
Binary file not shown.
Binary file modified assets/fonts/icons-bigcommerce/bigcommerce-icons.woff2
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
512 changes: 270 additions & 242 deletions assets/js/dist/admin/gutenberg/scripts.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/js/dist/admin/gutenberg/scripts.min.js

Large diffs are not rendered by default.

579 changes: 302 additions & 277 deletions assets/js/dist/admin/scripts.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/js/dist/admin/scripts.min.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions assets/js/dist/admin/vendor.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions assets/js/dist/admin/vendor.min.js

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

Loading

0 comments on commit 4499f28

Please sign in to comment.