Skip to content

Commit

Permalink
Readying for 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bfintal committed Dec 22, 2014
1 parent 92640f9 commit c083fa4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Titan Framework allows theme and plugin developers to create a admin pages, opti

## Recent Changelog

#### Version 1.7.3
* Fixed bug introduced in 1.7.2 where admin options sometimes were not being saved

#### 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`
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: bfintal
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=D2MK28E7BDLHC
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.2
Tested up to: 4.1
Stable tag: 1.7.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -216,6 +216,9 @@ $myValue = $titan->getOption( 'option_name', $post_id );`

== Changelog ==

= 1.7.3 =
* Fixed bug introduced in 1.7.2 where admin options sometimes were not being saved

= 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`
Expand Down
4 changes: 2 additions & 2 deletions titan-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
Version: 1.7.3
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.2' );
defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.7.3' );
// Used for text domains
defined( 'TF_I18NDOMAIN' ) or define( 'TF_I18NDOMAIN', 'titan-framework' );
// Used for general naming, e.g. nonces
Expand Down

0 comments on commit c083fa4

Please sign in to comment.