natural order of download dirs: 2.10 > as 2.9.2 case
diff --git a/includes/downloads-scripts.php b/includes/downloads-scripts.php
index 6d970ab..357dd70 100755
--- a/includes/downloads-scripts.php
+++ b/includes/downloads-scripts.php
@@ -60,6 +60,9 @@
 	global $PWD, $sortBy;
 
 	$branchDirs = loadDirSimple($PWD, ".*", "d");
+    // Sort branch dirs by version i.e. 2.10.0 > 2.9.2
+    natsort($branchDirs);
+    
 	$buildDirs = array();
 
 	foreach ($branchDirs as $branch)