Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Updating readme for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
maevelander committed Nov 5, 2018
1 parent 33d381d commit 3b67d3e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 24 deletions.
11 changes: 0 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ gutenberg_ramp_load_gutenberg(
Gutenberg Ramp adds a section to the Settings -> Writing menu that allows post_type control of Gutenberg loading. This can be used in place of specifying criteria in code.


### Advanced

The typical use case is as shown above, the parameters do not change except when theme code is updated.

If making more dynamic changes, note that the parameter supplied is persisted in a site option; when the parameters are changed in code, one page load is necessary to update the site option before the editor can use the new setting.

### FAQs

**Why is a post type disabled (greyed out) at Settings > Writing?**
Expand All @@ -85,11 +79,6 @@ If you're seeing something greyed out, it means the `gutenberg_ramp_load_gutenbe

Post types that are not compatible with Gutenberg will not show up. If you think you have found a false negative (posts in that post type DO work with Gutenberg, when Ramp plugin is deactivated) please report it as an issue on [GitHub here.](https://github.com/Automattic/ramp-for-gutenberg)


**Why are the changes I'm making in functions.php are not showing up on the next pageload?**

The parameter supplied in the function is persisted in a site option. Therefore, when the parameters are changed in code, _one page load is necessary_ to update the site option before the editor can use the new setting.

**Can I contribute to this plugin?**

Absolutely! Please create issues and pull requests on [GitHub here.](https://github.com/Automattic/gutenberg-ramp)
27 changes: 14 additions & 13 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: automattic, mattoperry, justnorris, enigmaweb
Tags: gutenberg, ramp, classic editor, legacy editor, gutenberg ramp
Requires at least: 4.9.8
Tested up to: 4.9.8
Tested up to: 5.0
Requires PHP: 5.5
Stable tag: 1.0.0
Stable tag: 1.1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -65,12 +65,6 @@ gutenberg_ramp_load_gutenberg(
);
</code>

== Advanced ==

The typical use case is as shown above, the parameters do not change except when theme code is updated.

If making more dynamic changes, note that the parameter supplied is persisted in a site option; when the parameters are changed in code, one page load is necessary to update the site option before the editor can use the new setting.

== Contributions ==

Contributions are welcome via our [GitHub repo.](https://github.com/Automattic/gutenberg-ramp)
Expand All @@ -91,10 +85,6 @@ If you're seeing something greyed out, it means the `gutenberg_ramp_load_gutenbe

Post types that are not compatible with Gutenberg will not show up. If you think you have found a false negative (posts in that post type DO work with Gutenberg, when Ramp plugin is deactivated) please report it as an issue on [GitHub here.](https://github.com/Automattic/gutenberg-ramp)

= The changes I'm making in functions.php are not showing up =

The parameter supplied in the function is persisted in a site option. Therefore, when the parameters are changed in code, *one page load is necessary* to update the site option before the editor can use the new setting.

= Can I contribute to this plugin? =

Absolutely! Please create issues and pull requests on [GitHub here.](https://github.com/Automattic/gutenberg-ramp)
Expand All @@ -105,10 +95,21 @@ Absolutely! Please create issues and pull requests on [GitHub here.](https://git

== Changelog ==

= 1.1.0 =
* prepares Gutenberg Ramp for WordPress 5.0 release
* deprecates support for Gutenberg Plugin versions older than 3.5
* no longer caches load decision in `gutenberg_ramp_load_critera` option
* removed `gutenberg_ramp_option_name` filter
* adds unsupported post types notice
* adds support for multiple function calls to `gutenberg_ramp_load_gutenberg()`

= 1.0.0 =
* initial release

== Upgrade Notice ==

= 1.1.0 =
1.1.0 is a major upgrade preparing Gutenberg Ramp for WordPress 5.0 release. Upgrade prior to 5.0 is recommended to ensure seamless transition.

= 1.0.0 =
* intial release
* initial release

0 comments on commit 3b67d3e

Please sign in to comment.