Skip to content

Commit

Permalink
Version 2.2.6 update
Browse files Browse the repository at this point in the history
Add basic support and styling for Gutenberg
Add support for WooCommerce gallery features
Fix strings in functions for gulp rename issue
Remove theme support for title-tag to fix SEO settings conflict
Remove Gravity Forms CSS override
  • Loading branch information
seothemes committed Feb 1, 2018
1 parent 7292ac9 commit 906542d
Show file tree
Hide file tree
Showing 11 changed files with 512 additions and 137 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Genesis Starter Theme Changelog

## [2.2.6] - 2017-02-01
* Add basic support and styling for Gutenberg
* Add support for WooCommerce gallery features
* Add asset concatenation gulp task/combine front-end JS into single file
* Add Blank Page page template
* Add sourcemaps for WooCommerce styles
* Add Customizer data and jsbeautify config
* Fix page-header removal in all page templates
* Fix page-header CSS being output when no header image is set
* Fix strings in functions for gulp rename issue
* Fix page-header height when nav-secondary is active
* Remove theme support for title-tag to fix SEO settings conflict
* Remove Gravity Forms CSS override

## [2.2.5] - 2017-01-12
* Add secondary color to Customizer
* Change default HTTP connection method for BrowserSync
Expand Down
21 changes: 16 additions & 5 deletions README.md
Expand Up @@ -86,6 +86,7 @@ A search engine optimized, mobile-first, flexbox-based starter theme for the Gen
* WordPress > 4.8
* Genesis Framework > 2.4
* Node.js > 6.9
* NPM > 5.6.0
* Gulp.js > 3.9


Expand Down Expand Up @@ -137,30 +138,40 @@ theme/
│ ├── fonts/
│ ├── images/
│ ├── scripts/
│ ├── scripts/
│ │ ├── concat/
│ │ └── min/
│ └── styles/
│ └── min/
├── includes/
│ ├── customize.php
│ ├── defaults.php
│ ├── extras.php
│ ├── header.php
│ ├── helpers.php
│ └── plugins.php
│ ├── plugins.php
│ └── rgba.php
├── languages/
│ └── genesis-starter.pot
├── templates/
│ ├── page-landing.php
│ └── page-builder.php
│ ├── page-blank.php
│ ├── page-builder.php
│ └── page-landing.php
├── .editorconfig
├── .gitignore
├── 404.php
├── CHANGELOG.md
├── front-page.php
├── functions.php
├── gulpfile.js
├── languages.pot
├── LICENSE.md
├── package.lock.json
├── package.json
├── README.md
├── sample.xml
├── screenshot.png
└── style.css
├── style.css
└── widgets.wie
```


Expand Down
8 changes: 8 additions & 0 deletions assets/scripts/concat/README.md
@@ -0,0 +1,8 @@
# Turn multiple scripts into one with concatenation

- Place Javascript files into /assets/scripts/concat
- Run 'gulp scripts'

Scripts will automatically be turned into one concatenated Javascript file.

https://github.com/contra/gulp-concat

0 comments on commit 906542d

Please sign in to comment.