diff --git a/README.md b/README.md index ee4f3a0..26c1672 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ Manga+Press is a webcomic managment system for WordPress. Manga+Press uses WordP ## Changelog ### 2.9 +#### 2.9.2 + * Added support for Jetpack Publicize feature. + #### 2.9.1 * Corrects an issue where Comic posts were not getting assigned to a default Series taxonomy on save. * Corrects Comic post 404 error/Missing Comic post issue. diff --git a/mangapress-posts.php b/mangapress-posts.php index 8310387..c630d40 100755 --- a/mangapress-posts.php +++ b/mangapress-posts.php @@ -135,6 +135,7 @@ private function _register_post_type() 'title', 'comments', 'thumbnails', + 'publicize', ), 'register_meta_box_cb' => array($this, 'meta_box_cb'), 'menu_icon' => null, diff --git a/mangapress.php b/mangapress.php index 668942d..cab38c7 100755 --- a/mangapress.php +++ b/mangapress.php @@ -9,7 +9,7 @@ Plugin Name: Manga+Press Comic Manager Plugin URI: http://www.manga-press.com/ Description: Turns WordPress into a full-featured Webcomic Manager. Be sure to visit Manga+Press for more info. - Version: 2.9.1 + Version: 2.9.2 Author: Jess Green Author URI: http://www.jes.gs Text Domain: mangapress @@ -38,7 +38,7 @@ $plugin_folder = plugin_basename(dirname(__FILE__)); if (!defined('MP_VERSION')) - define('MP_VERSION', '2.9.0'); + define('MP_VERSION', '2.9.2'); if (!defined('MP_FOLDER')) define('MP_FOLDER', $plugin_folder); diff --git a/readme.txt b/readme.txt index 509745a..9da8611 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: http://www.manga-press.com/ Tags: webcomics, online comics Requires at least: 3.8 Tested up to: 4.2 -Stable tag: 2.9.0 +Stable tag: 2.9.2 License: GPLv2 Manga+Press is a webcomic management system for WordPress. @@ -14,12 +14,14 @@ Manga+Press is a webcomic management system for WordPress. Manga+Press is a webcomic managment system for WordPress. Manga+Press uses WordPress posts, pages and categories to help you keep track of your comic posts. Manga+Press also includes its own custom template tags to help make creating themes easier. == Upgrade Notice == -= 2.9.1 = -This release fixes an issue where Comics were not getting assigned a default Series taxonomy when saved/published. This would cause the comic page to 404 when viewed. += 2.9.2 = +Adds support for Jetpack Publicize feature. == Changelog == = 2.9 = + * 2.9.2 + * Added support for Jetpack Publicize feature. * 2.9.1 * Corrects an issue where Comic posts were not getting assigned to a default Series taxonomy on save. * Corrects Comic post 404 error/Missing Comic post issue.