From 89f24c9fc7131791630edc60a4e0efe6934b8883 Mon Sep 17 00:00:00 2001 From: Benjamin Intal Date: Thu, 11 Dec 2014 13:11:34 +0800 Subject: [PATCH] Updated information for 1.7 --- README.md | 8 ++++++++ readme.txt | 17 ++++++++++++++--- titan-framework.php | 4 ++-- 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4e653a37..d198dcdf 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/readme.txt b/readme.txt index fb1be621..8ee0c5d9 100644 --- a/readme.txt +++ b/readme.txt @@ -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 @@ -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: = @@ -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) @@ -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 diff --git a/titan-framework.php b/titan-framework.php index 0cbdc4dd..fc3b9af2 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.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