Skip to content

Commit

Permalink
Merge pull request #21 from petenelson/rc-1.9.1
Browse files Browse the repository at this point in the history
Rc 1.9.1
  • Loading branch information
petenelson authored Nov 15, 2017
2 parents adcdad4 + 01977ae commit 8987289
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**Donate link:** http://baconipsum.com/
**Requires at least:** 4.0
**Tested up to:** 4.9
**Stable tag:** 1.9.0
**Stable tag:** 1.9.1
**Text Domain:** any-ipsum
**Domain Path:** /lang
**License:** GPLv2 or later
Expand Down Expand Up @@ -41,6 +41,9 @@ The plugin installs Bacon Ipsum filler by default, so be sure to check Settings/

## Changelog ##

### v1.9.1 November 15, 2017 ###
* Added 'anyipsum-generated-filler' filter to API output.

### v1.9.0 September 23, 2016 ###
* Added 'anyipsum-generated-filler' filter to allow modification of generated filler before display.
* Added 'anyipsum-after-starts-with-row' action to HTML form.
Expand Down Expand Up @@ -106,6 +109,9 @@ The plugin installs Bacon Ipsum filler by default, so be sure to check Settings/

## Upgrade Notice ##

### v1.9.1 November 15, 2017 ###
* Added 'anyipsum-generated-filler' filter to API output.

### v1.9.0 September 23, 2016 ###
* Added 'anyipsum-generated-filler' filter to allow modification of generated filler before display.
* Added 'anyipsum-after-starts-with-row' action to HTML form.
Expand Down
3 changes: 3 additions & 0 deletions lib/class-WPAnyIpsumAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ function handle_api_request() {
$args = apply_filters( 'anyipsum-parse-request-args', $_SERVER['REQUEST_METHOD'] === 'POST' ? $_REQUEST : $_SERVER['QUERY_STRING'] );
$paras = apply_filters( 'anyipsum-generate-filler', $args );

// Allow filtering of the generated filler.
$paras = apply_filters( 'anyipsum-generated-filler', $paras );

$content_type = '';
$output = '';

Expand Down
2 changes: 1 addition & 1 deletion lib/class-WPAnyIpsumCore.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class WPAnyIpsumCore {

const PLUGIN_NAME = 'any-ipsum';
const PLUGIN_VERSION = '1.9.0';
const PLUGIN_VERSION = '1.9.1';

public function plugins_loaded() {
add_filter( 'anyipsum-generate-filler', array( $this, 'generate_filler' ) );
Expand Down
3 changes: 2 additions & 1 deletion lib/default-custom.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ doner
kevin
landjaeger
porchetta
burgdoggen
burgdoggen
buffalo
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: content, ipsum
Donate link: http://baconipsum.com/
Requires at least: 4.0
Tested up to: 4.9
Stable tag: 1.9.0
Stable tag: 1.9.1
Text Domain: any-ipsum
Domain Path: /lang
License: GPLv2 or later
Expand Down Expand Up @@ -38,6 +38,9 @@ The plugin installs Bacon Ipsum filler by default, so be sure to check Settings/

== Changelog ==

= v1.9.1 November 15, 2017 =
* Added 'anyipsum-generated-filler' filter to API output.

= v1.9.0 September 23, 2016 =
* Added 'anyipsum-generated-filler' filter to allow modification of generated filler before display.
* Added 'anyipsum-after-starts-with-row' action to HTML form.
Expand Down Expand Up @@ -103,6 +106,9 @@ The plugin installs Bacon Ipsum filler by default, so be sure to check Settings/

== Upgrade Notice ==

= v1.9.1 November 15, 2017 =
* Added 'anyipsum-generated-filler' filter to API output.

= v1.9.0 September 23, 2016 =
* Added 'anyipsum-generated-filler' filter to allow modification of generated filler before display.
* Added 'anyipsum-after-starts-with-row' action to HTML form.
Expand Down
2 changes: 1 addition & 1 deletion wp-anyipsum.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Any Ipsum
Description: Roll your own custom lorem ipsum generator
Plugin URI: https://wordpress.org/plugins/any-ipsum/
Version: 1.9.0
Version: 1.9.1
Author: Pete Nelson (@GunGeekATX)
Text Domain: any-ipsum
Domain Path: /lang
Expand Down

0 comments on commit 8987289

Please sign in to comment.