Skip to content

Commit

Permalink
Updated information for 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bfintal committed Dec 11, 2014
1 parent 5f08c03 commit 89f24c9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ Titan Framework allows theme and plugin developers to create a admin pages, opti

## Recent Changelog

#### Version 1.7
* New Easy Digital Download License option (thank you julien731)
* New date option (thank you ardalann)
* Added new action tf_save_options_{namespace} which is called after saving options
* Fixed display issue with the font option in the theme customizer
* Fixed bug where empty multicheck returned an array
* Fix: customizer show_font_size & show_color

#### Version 1.6.1
* Added missing files in the SVN

Expand Down
17 changes: 14 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
=== Plugin Name ===
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
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
Stable tag: 1.6.1
Tested up to: 4.0.1
Stable tag: 1.7
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -36,6 +36,7 @@ Want to see what Titan Framework can do? [Check out our live demo, no need to in
* Supports child themes
* Automatic CSS generation with SCSS support
* Full font style fields
* Easy Digital Download activation integration

= Easy creation of: =

Expand All @@ -51,6 +52,8 @@ Want to see what Titan Framework can do? [Check out our live demo, no need to in
* Checkbox
* Code (using [Ace](http://ace.c9.io/#nav=about))
* Color picker
* Date
* EDD License (Easy Digital Downloads license)
* Editor (WYSIWYG)
* Enable
* Font Style (Web safe fonts and Google WebFonts)
Expand Down Expand Up @@ -213,6 +216,14 @@ $myValue = $titan->getOption( 'option_name', $post_id );`

== Changelog ==

= 1.7 =
* New Easy Digital Download License option (thank you julien731)
* New date option (thank you ardalann)
* Added new action tf_save_options_{namespace} which is called after saving options
* Fixed display issue with the font option in the theme customizer
* Fixed bug where empty multicheck returned an array
* Fix: customizer show_font_size & show_color

= 1.6.1 =
* Added missing files in the SVN

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.6.1
Version: 1.7
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.6.1' );
defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.7' );
// 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 89f24c9

Please sign in to comment.