-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
932 additions
and
725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# editorconfig.org | ||
|
||
# WordPress Coding Standards | ||
# https://make.wordpress.org/core/handbook/coding-standards/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
indent_size = 4 | ||
tab_width = 4 | ||
|
||
[{.jshintrc,*.json,*.yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[{*.txt,wp-config-sample.php}] | ||
end_of_line = crlf |
Submodule build
updated
3 files
+23 −0 | .editorconfig | |
+82 −74 | gulp-git-contributors.js | |
+123 −121 | gulpfile.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,54 @@ | ||
= 1.1.2 - March 7 2016 = | ||
* Fixed WooCommerce checkout button. | ||
* Created new checkout page style. | ||
* Styled core WordPress widgets. | ||
* Small WooCommerce product page fixes. | ||
* Fixed disable responsive layout for cart and checkout pages. | ||
|
||
= 1.1.1 - March 2 2016 = | ||
* Fixed/Improved various WooCommerce element styling. | ||
* Added smooth scrolling navigation option for one-page sites. | ||
* Updated settings framework. | ||
* Updated all WooCommerce template files for latest version. | ||
|
||
= 1.1 - January 20 2016 = | ||
* Fixed WooCommerce enqueueing and buttons. | ||
* Added various customizations in theme settings. | ||
* Added retina logo setting. | ||
* Added breadcrumb support. | ||
* Added option for mobile menu breakpoint. | ||
* Added RTL support. | ||
* Properly enqueue default webfonts. | ||
* Updated to latest Page Builder lite. | ||
* Added WooCommerce cart in menu. | ||
* Added more page layouts. | ||
* Corrections to comment form. | ||
* Added contact form styling. | ||
* Fixed audio shortcode styling. | ||
* Various edge case CSS fixes and improvements. | ||
* Fixed thumbnail sizing. | ||
* Added basic author box. | ||
|
||
= 1.0.3 - October 5 2015 = | ||
* Properly escape output in header.php. | ||
* Properly prefixed globals. | ||
* Use get_search_form. | ||
* Removed unsupported customizer code. | ||
* Removed rtl.css until it's properly supported. | ||
|
||
= 1.0.2 - October 5 2015 = | ||
* Fixed page scrolling error caused by sticky menu. | ||
* Properly handle sticky menu with both fixed and absolute admin bar. | ||
|
||
= 1.0.1 - October 4 2015 = | ||
* Various fixes and improvements in preparation for initial review/release. | ||
|
||
= 1.0 - August 18 2015 = | ||
* Initial release | ||
= 1.1.3 - March 9 2016 = | ||
* Reformatted code to match WordPress guidelines. | ||
* Center aligned dropdown menu. | ||
* Fixed short labels in main submenu items. | ||
* Fixed bug with anchor menu items. | ||
* Properly styled WooCommerce form. | ||
|
||
= 1.1.2 - March 7 2016 = | ||
* Fixed WooCommerce checkout button. | ||
* Created new checkout page style. | ||
* Styled core WordPress widgets. | ||
* Small WooCommerce product page fixes. | ||
* Fixed disable responsive layout for cart and checkout pages. | ||
|
||
= 1.1.1 - March 2 2016 = | ||
* Fixed/Improved various WooCommerce element styling. | ||
* Added smooth scrolling navigation option for one-page sites. | ||
* Updated settings framework. | ||
* Updated all WooCommerce template files for latest version. | ||
|
||
= 1.1 - January 20 2016 = | ||
* Fixed WooCommerce enqueueing and buttons. | ||
* Added various customizations in theme settings. | ||
* Added retina logo setting. | ||
* Added breadcrumb support. | ||
* Added option for mobile menu breakpoint. | ||
* Added RTL support. | ||
* Properly enqueue default webfonts. | ||
* Updated to latest Page Builder lite. | ||
* Added WooCommerce cart in menu. | ||
* Added more page layouts. | ||
* Corrections to comment form. | ||
* Added contact form styling. | ||
* Fixed audio shortcode styling. | ||
* Various edge case CSS fixes and improvements. | ||
* Fixed thumbnail sizing. | ||
* Added basic author box. | ||
|
||
= 1.0.3 - October 5 2015 = | ||
* Properly escape output in header.php. | ||
* Properly prefixed globals. | ||
* Use get_search_form. | ||
* Removed unsupported customizer code. | ||
* Removed rtl.css until it's properly supported. | ||
|
||
= 1.0.2 - October 5 2015 = | ||
* Fixed page scrolling error caused by sticky menu. | ||
* Properly handle sticky menu with both fixed and absolute admin bar. | ||
|
||
= 1.0.1 - October 4 2015 = | ||
* Various fixes and improvements in preparation for initial review/release. | ||
|
||
= 1.0 - August 18 2015 = | ||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.