From 151b2f7d102a5988b63255d27c9ad78202c16355 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Mon, 9 Nov 2015 00:33:08 +0100 Subject: Added (partial) website + misc updates for release * recreated the prado website in demos/ * updated some docs to reflect the usage of jquery; removed guide to prototype * updated composer * added task for apigen4 (theme still missing) --- demos/site/protected/Pages/Download.page | 116 +++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 demos/site/protected/Pages/Download.page (limited to 'demos/site/protected/Pages/Download.page') diff --git a/demos/site/protected/Pages/Download.page b/demos/site/protected/Pages/Download.page new file mode 100644 index 00000000..bdc21221 --- /dev/null +++ b/demos/site/protected/Pages/Download.page @@ -0,0 +1,116 @@ + + +
+ +

Download

+

PRADO is an open source project hosted on GitHub. It is released under the terms of +.

+

The latest stable version of PRADO is <%= Prado::getVersion() %>.

+
Download
+ + + + +$(document).ready(function () { + $.getJSON("https://api.github.com/repos/pradosoft/prado/releases").done(function (json) { + var release = json[0]; + + var releaseVer = release.tag_name; + var releaseDate = new Date(release.published_at); + var downloadURL = release.assets[0].browser_download_url; + + var monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; + var day = releaseDate.getDate(); + var monthIndex = releaseDate.getMonth(); + var year = releaseDate.getFullYear(); + + $("#lastVersion").text(releaseVer); + $("#lastVersionDate").text(' (' + day + ' ' + monthNames[monthIndex] + ' ' + year + ')'); + $("#downloadLink").attr("href", downloadURL); + }); + + $.get("https://raw.githubusercontent.com/pradosoft/prado/master/HISTORY", function(data) { + $("#changeLog").text(data); + }); +}); + + +
+

Latest changelog entries

+
loading...
+ +
+

Previous PRADO v3.x releases

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
VersionDate Files
3.2.4Aug 26, 2014Source code and documentation
3.2.3Nov 26, 2013Source code and documentation
3.2.2July 20, 2013Source code, documentation
3.2.1January 19, 2013Source code, documentation
3.2.0June 25, 2012Source code, documentation
3.1.10July 27, 2011Source code, documentation
3.1.9June 3, 2011Source code, documentation
3.1.8May 29, 2011Source code, documentation
3.1.7February 22, 2010Source code, documentation
3.1.6July 22, 2009Source code, documentation
3.1.5May 24, 2009Source code, documentation
3.1.4January 11, 2009Source code, documentation
3.1.3November 1, 2008Source code, documentation
3.1.2April 21, 2008Source code
3.1.1October 1, 2007Source code
3.1.0July 2, 2007Source code
3.0.7April 2, 2007Source code
3.0.6December 4, 2006Source code
3.0.5October 23, 2006Source code
3.0.4September 4, 2006Source code
3.0.3August 6, 2006Source code
3.0.2July 2, 2006Source code
3.0.1June 4, 2006Source code
3.0.0May 1, 2006Source code
+
+
+

PRADO Tools

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
FileDescriptionRelease date
Dreamweaver ExtensionPRADO Dreamweaver Extension (r2764)February 14, 2010
InType BundlePRADO InType Bundle (r2854)June 23, 2010
Notepad++ PluginPRADO Notepad++ Plugin (r2793)April 6, 2010
Textmate BundlePRADO TextMate Bundle, suitable also for Sublime Text 2 (r3193)July 24, 2012
+
+
+

Git Access

+

You can obtain the latest development version of PRADO from our Git repository.

+
WARNING: Unreleased Source code in Git may contain known bugs and are subject to changes without prior notice.
+

The Source code repository can be accessed anonymously using the following command,

+
git clone https://github.com/pradosoft/prado.git
+ +
+ +
\ No newline at end of file -- cgit v1.2.3