diff --git a/docs/index.html b/docs/index.html
index 616cdfca..48c84c6c 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -233,8 +233,11 @@
// count the total of downloads
var count = 0;
for (var i = 0, n = data.length; i < n; i++) {
- count += data[i].assets[0].download_count;
+ for (var j=0; i < data[i].assets.length; j++) {
+ count += data[i].assets[j].download_count;
+ }
}
+
$('#totaldl_text').html(count);
}
diff --git a/docs/md/home.md b/docs/md/home.md
index 57007491..571926bc 100644
--- a/docs/md/home.md
+++ b/docs/md/home.md
@@ -1,6 +1,6 @@
# About this project #
-*Last update of this page : 25/02/2018*
+*Last update of this page : 03/02/2019*
The **OpenEdge** **A**dvanced **B**usiness **L**anguage, or [OpenEdge ABL](https://www.progress.com/openedge) (formerly known as **Progress 4GL**) is a fourth-generation programming language which uses an English-like syntax. Applications developed with this language are portable across computing systems, it uses its own integrated relational database and programming tool which is called the "appbuilder".