diff options
-rw-r--r-- | UPGRADE | 2 | ||||
-rw-r--r-- | buildscripts/texbuilder/quickstart/quickstart.tex | 4 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page | 4 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/GettingStarted/NewFeatures.page | 6 | ||||
-rw-r--r-- | framework/PradoBase.php | 2 | ||||
-rw-r--r-- | framework/Util/TDateTimeStamp.php | 1 | ||||
-rw-r--r-- | framework/Web/Javascripts/source/prado/prado.js | 2 | ||||
-rw-r--r-- | index.html | 2 |
8 files changed, 15 insertions, 8 deletions
@@ -1,5 +1,5 @@ - Upgrading Instructions for PRADO Framework v3.2 + Upgrading Instructions for PRADO Framework v3.2.1 ================================================= !!!IMPORTANT!!! diff --git a/buildscripts/texbuilder/quickstart/quickstart.tex b/buildscripts/texbuilder/quickstart/quickstart.tex index dbb30179..b142b132 100644 --- a/buildscripts/texbuilder/quickstart/quickstart.tex +++ b/buildscripts/texbuilder/quickstart/quickstart.tex @@ -52,8 +52,8 @@ %----------------- TITLE -------------- -\title{\Huge \bfseries PRADO v3.2 Quickstart Tutorial - \thanks{Copyright 2004-2009. All Rights Reserved.} +\title{\Huge \bfseries PRADO v3.2.1 Quickstart Tutorial + \thanks{Copyright 2004-2013. All Rights Reserved.} } \author{Qiang Xue and Wei Zhuo} \date{\today} diff --git a/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page index 50f7bbb4..7baa16d6 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page @@ -1,9 +1,9 @@ <com:TContent ID="body">
<h1>TConditional Samples</h1>
-<com:TConditional Condition="Prado::getVersion()==='3.2.0'">
+<com:TConditional Condition="Prado::getVersion()==='3.2.1'">
<prop:TrueTemplate>
- <com:TLabel Text="You are using PRADO 3.2.0" />
+ <com:TLabel Text="You are using PRADO 3.2.1" />
</prop:TrueTemplate>
<prop:FalseTemplate>
<com:TLabel Text="You are using PRADO <%= Prado::getVersion() %>" />
diff --git a/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page b/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page index 25ce6427..003790a4 100644 --- a/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page +++ b/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page @@ -6,6 +6,12 @@ This page summarizes the main new features that are introduced in each PRADO release. </p> +<h2>Version 3.2.1</h2> +<ul> +<li>TSecurityManager has been enhanced to support all the ciphers available in php</a></li> +<li>Updated external packages</a></li> +</ul> + <h2 id="8001">Version 3.2.0</h2> <ul> <li>Added methods quoteTableName, quoteColumnName, quoteColumnAlias to TDbMetaData & TDbConnection and added TDbConnection:getDbMetaData</li> diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 403fdb80..80bd7378 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -71,7 +71,7 @@ class PradoBase */ public static function getVersion() { - return '3.2.0'; + return '3.2.1'; } /** diff --git a/framework/Util/TDateTimeStamp.php b/framework/Util/TDateTimeStamp.php index 26355bec..65979fbb 100644 --- a/framework/Util/TDateTimeStamp.php +++ b/framework/Util/TDateTimeStamp.php @@ -23,6 +23,7 @@ * @version $Id$ * @package System.Util * @since 3.0.4 + * @deprecated since 3.2.1 */ class TDateTimeStamp { diff --git a/framework/Web/Javascripts/source/prado/prado.js b/framework/Web/Javascripts/source/prado/prado.js index 2fcb2c1e..36a08426 100644 --- a/framework/Web/Javascripts/source/prado/prado.js +++ b/framework/Web/Javascripts/source/prado/prado.js @@ -8,7 +8,7 @@ var Prado = * Version of Prado clientscripts * @var Version */ - Version: '3.2', + Version: '3.2.1', /** * Registry for Prado components @@ -8,7 +8,7 @@ <body> <h1>PRADO Framework for PHP 5 </h1> -<p>Version 3.2.0<br> +<p>Version 3.2.1<br> Copyright© 2004-2013 by <a href="http://www.pradosoft.com/">Prado Software</a><br> All Rights Reserved. </p> |