diff --git a/README.md b/README.md index fb0046ba..3dd5232b 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,11 @@ Titan Framework allows theme and plugin developers to create a admin pages, opti ## Recent Changelog +#### Version 1.7.2 +* EDD option can now check for updates all by itself (thank you julien731) +* `get_post_types` function now callable from `tf_create_options` +* Now passes theme-check (ignored `add_menu_page` error) + #### Version 1.7.1 * Bug fixes for the Easy Digital Download License option * Enhanced date option parameters @@ -77,7 +82,7 @@ Let us know so we can showcase it in the site! Send me an email at bf.intal@gamb ## Contributing, Pull Requests Are Very Welcome -Have an idea for a cool option, or do you have a bug fix you want to implement? Please don't hessitate to place a *PR* (Pull Request). +Have an idea for a cool option, or do you have a bug fix you want to implement? Please don't hessitate to place a *PR* (Pull Request). PRs on these are welcome: * Bug fixes diff --git a/readme.txt b/readme.txt index 45952fc0..24a98e9d 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i Tags: framework, options, admin, admin panel, meta box, theme customizer, option framework, library, sdk, edd, settings, api, theme creator, theme framework Requires at least: 3.8 Tested up to: 4.0.1 -Stable tag: 1.7.1 +Stable tag: 1.7.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -216,6 +216,11 @@ $myValue = $titan->getOption( 'option_name', $post_id );` == Changelog == += 1.7.2 = +* EDD option can now check for updates all by itself (thank you julien731) +* `get_post_types` function now callable from `tf_create_options` +* Now passes theme-check (ignored `add_menu_page` error) + = 1.7.1 = * Bug fixes for the Easy Digital Download License option * Enhanced date option parameters diff --git a/titan-framework.php b/titan-framework.php index 548ccce3..40c7e581 100644 --- a/titan-framework.php +++ b/titan-framework.php @@ -4,14 +4,14 @@ Plugin URI: http://www.titanframework.net/ Description: Titan Framework allows theme and plugin developers to create a admin pages, options, meta boxes, and theme customizer options with just a few simple lines of code. Author: Benjamin Intal, Gambit -Version: 1.7.1 +Version: 1.7.2 Author URI: http://gambit.ph */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly // Used for tracking the version used -defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.7.1' ); +defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.7.2' ); // Used for text domains defined( 'TF_I18NDOMAIN' ) or define( 'TF_I18NDOMAIN', 'titan-framework' ); // Used for general naming, e.g. nonces