Skip to content

Commit

Permalink
Merge pull request #2099 from roots/9.0.2
Browse files Browse the repository at this point in the history
9.0.2
  • Loading branch information
retlehs authored Aug 21, 2018
2 parents 0d4b251 + d7acd3a commit 8a023b4
Show file tree
Hide file tree
Showing 7 changed files with 127 additions and 223 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
### 9.0.2: August 21st, 2018
* Update to Bootstrap 4.1.3 ([#2097](https://github.com/roots/sage/pull/2097))
* Comments template fix ([#2095](https://github.com/roots/sage/pull/2095))
* UglifyJs: Change the ecma option from 8 to 5 ([#2092](https://github.com/roots/sage/pull/2092))
* Add searchform partial and function to replace default WordPress functionality ([#2090](https://github.com/roots/sage/pull/2090))
* Change language_attributes() to get_language_attributes() ([#2089](https://github.com/roots/sage/pull/2089))
* Fix missing comment-reply JS ([#2085](https://github.com/roots/sage/pull/2085))
* Use better merge method for Webpack Preset config ([#2084](https://github.com/roots/sage/pull/2084))
* Add support for preset specific Webpack config ([#2083](https://github.com/roots/sage/pull/2083))
* Enable Sass comments and run prefixing before minification ([#2078](https://github.com/roots/sage/pull/2078))
* Set removeViewBox to 'false' in webpack's optimization settings ([#2075](https://github.com/roots/sage/pull/2075))
* Add uglifyjs plugin ([#2070](https://github.com/roots/sage/pull/2070))
* Make template() compatible with wp admin ([#2068](https://github.com/roots/sage/pull/2068))
* Upgrade to Controller 2.1.0 ([#2025](https://github.com/roots/sage/pull/2025))

### 9.0.1: April 30th, 2018
* Update to Bootstrap 4.1.1 ([#2065](https://github.com/roots/sage/pull/2065))
* Auto-detect `proxyUrl` scheme ([#2062](https://github.com/roots/sage/pull/2062))
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ Sage is a WordPress starter theme with a modern development workflow.
* Modern JavaScript
* [Webpack](https://webpack.github.io/) for compiling assets, optimizing images, and concatenating and minifying files
* [Browsersync](http://www.browsersync.io/) for synchronized browser testing
* [Blade](https://laravel.com/docs/5.5/blade) as a templating engine
* [Blade](https://laravel.com/docs/5.6/blade) as a templating engine
* [Controller](https://github.com/soberwp/controller) for passing data to Blade templates
* CSS framework (optional): [Bootstrap 4](https://getbootstrap.com/), [Bulma](https://bulma.io/), [Foundation](https://foundation.zurb.com/), [Tachyons](http://tachyons.io/)
* CSS framework (optional): [Bootstrap 4](https://getbootstrap.com/), [Bulma](https://bulma.io/), [Foundation](https://foundation.zurb.com/), [Tachyons](http://tachyons.io/), [Tailwind](https://tailwindcss.com/)

See a working example at [roots-example-project.com](https://roots-example-project.com/).

Expand Down Expand Up @@ -49,7 +49,7 @@ During theme installation you will have options to update `style.css` theme head
```shell
themes/your-theme-name/ # → Root of your Sage based theme
├── app/ # → Theme PHP
│ ├── controllers/ # → Controller files
│ ├── Controllers/ # → Controller files
│ ├── admin.php # → Theme customizer setup
│ ├── filters.php # → Theme filters
│ ├── helpers.php # → Helper functions
Expand Down
2 changes: 1 addition & 1 deletion app/filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
}

return $comments_template;
}, PHP_INT_MAX);
}, 100);

/**
* Render WordPress searchform using Blade
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"php": ">=7.1",
"composer/installers": "~1.0",
"illuminate/support": "~5.6",
"roots/sage-lib": "~9.0.1",
"roots/sage-lib": "~9.0.2",
"soberwp/controller": "~2.1.0"
},
"require-dev": {
Expand Down
Loading

0 comments on commit 8a023b4

Please sign in to comment.