Skip to content

Commit

Permalink
version bump 2.0.12 for patch and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckreynolds committed Jun 19, 2015
1 parent cd983c7 commit 08dc244
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
19 changes: 14 additions & 5 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: ryno267, andrewryno
Donate link: http://goo.gl/8lGv3
Tags: open graph, ogp, facebook open graph, google +1, +1, google plus one, plus one, linkedin share, facebook meta, open graph meta, facebook share, facebook like, linkedin
Requires at least: 3.0
Tested up to: 3.9.1
Stable tag: 2.0.11
Tested up to: 4.2
Stable tag: 2.0.12
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -41,13 +41,16 @@ If you have feature requests or bugs? Use the support links on <a href="http://r
No. Either your Facebook User ID or or an Application ID is a requirement. You're not required to register an app, instead just use your User ID (plugin admin settings page helps you find that). You can use both an App ID and User ID if you'd like. More details on how Facebook verifies admins is located here: https://developers.facebook.com/docs/insights/

= Why doesn't this plugin have a Like/Send button? =
Honestly it's not hard to add one once you have the proper meta content in the header. Look at <a href="https://developers.facebook.com/docs/reference/plugins/like/">how to add a Like button</a> using fb:like. There are a lot of 'like' button plugins but this one focuses on solid and accurate Open Graph meta data.
Honestly it's not hard to add one once you have the proper meta content in the header. Look at <a href="https://developers.facebook.com/docs/reference/plugins/like/">how to add a Like button</a> using fb:like. There are a lot of 'like' button plugins but this one focuses on solid and accurate Open Graph meta data.

== Screenshots ==

1. The Open Graph admin options panel has all options laid out in one easy place. The rest is all behind the scenes.

== Upgrade Notice ==
= 2.0.12 =
Quick Patch - Changes how trailing slashes are handled. Big update coming soon too!

= 2.0.11 =
Fixes an issue some had with thumbnail image paths & fixes php notice some were getting. Cheers.

Expand All @@ -69,7 +72,7 @@ Fixes issues with dollar signs and special characters in titles and descriptions
= 2.0.3 =
This update should fix the "Parser Mismatched Metadata" warnings Facebook started throwing.

= 2.0.2 =
= 2.0.2 =
Fixes bug that caused a PHP warning to display and also fixes bugs with plugins not functioning properly when using content filters.

= 2.0.1 =
Expand All @@ -85,7 +88,13 @@ Bug fix with 1.6 initial release. Titles broke for some running 'naked sites' w/
Because we're getting more accurate titles you may see a change in how they're pulled. If you're using an SEO plugin it should now pull that title

== Changelog ==
= 2.0.12 =
*Release Date - 2015-06-19*
* Changed how og:url is called and handle trailing slashes better all around
* Fixed issue when using the blog as a page had root url

= 2.0.11 =
*Release Date - 2014-07-31*
* Check for relative URLs in post thumbnails images - props -> github.com/jjeaton
* fixes problem w/ strings in image array
* flip image array. this will move your default image (if you have one) to the top of the array but Facebook pulls it the way they want anyways.
Expand Down Expand Up @@ -153,7 +162,7 @@ Because we're getting more accurate titles you may see a change in how they're p
* bug fix in urlpath again & check for https. Props goes to Seb Francis at burnit.co.uk for better fix.

= 1.5.1 =
* bug fix in image basepath thing I fixed in 1.5... false checking. make sure to update this or your images could not display on facebook
* bug fix in image basepath thing I fixed in 1.5... false checking. make sure to update this or your images could not display on facebook

= 1.5 =
* simple cleanup and couple bug fixes
Expand Down
18 changes: 9 additions & 9 deletions wp-facebook-ogp.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/*
Plugin Name: WP Facebook Open Graph protocol
Plugin URI: http://wordpress.org/plugins/wp-facebook-open-graph-protocol/
Description: Adds proper Facebook Open Graph Meta tags and values to your site so when links are shared it looks awesome! Works on Google + and Linkedin too!
Version: 2.0.11
Author: Chuck Reynolds
Author URI: http://chuckreynolds.us
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Plugin Name: WP Facebook Open Graph protocol
Plugin URI: http://wordpress.org/plugins/wp-facebook-open-graph-protocol/
Description: Adds proper Facebook Open Graph Meta tags and values to your site so when links are shared it looks awesome! Works on Google + and Linkedin too!
Version: 2.0.12
Author: Chuck Reynolds
Author URI: http://chuckreynolds.us
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Copyright 2014 Chuck Reynolds (email : chuck@rynoweb.com)
Expand All @@ -25,7 +25,7 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

define('WPFBOGP_VERSION', '2.0.11');
define( 'WPFBOGP_VERSION', '2.0.12' );
wpfbogp_admin_warnings();

// add OGP namespace per ogp.me schema
Expand Down

0 comments on commit 08dc244

Please sign in to comment.