diff --git a/index.html b/index.html index 9220d9513..27e5fe9af 100644 --- a/index.html +++ b/index.html @@ -96,7 +96,7 @@ root: . - + @@ -219,5 +219,17 @@ $(document).ready(function() { } } }); + + $.get('http://api.github.com/repos/GarageGames/Torque3D/releases') + .done(function(releases) { + var latest = releases[0]; + $('#current-version').html($('') + .attr('href', latest.html_url) + .html(latest.name) + ); + }) + .fail(function() { + $('#curent-version').html('error'); + }); });
Current version3.6.2...
Continuous integration