show FW date

This commit is contained in:
Christian Herzog
2019-09-27 20:24:41 +02:00
parent c7fac759bb
commit afe5f867c8
2 changed files with 4 additions and 0 deletions

View File

@@ -259,10 +259,13 @@ $(document).ready(function(){
});
var [ver, idf, cfg, branch] = release.name.split('#');
var body = release.body.replace(/\\n/ig, "<br />").replace(/\'/ig, "\"");
var [date, time] = release.created_at.split('T');
if (ver.match(/esp-idf/)) next; //TODO delete
$("#releaseTable").append(
"<tr>"+
"<td data-toggle='tooltip' title='"+body+"'>"+ver+"</td>"+
"<td>"+idf+"</td>"+
"<td>"+date+"</td>"+
"<td>"+cfg+"</td>"+
"<td>"+branch+"</td>"+
"<td><input id='generate-command' type='button' class='btn btn-success' value='Select' data-url='"+url+"' onclick='setURL(this);' /></td>"+

View File

@@ -209,6 +209,7 @@
<tr>
<th scope="col">Firmware version</th>
<th scope="col">IDF version</th>
<th scope="col">Release date</th>
<th scope="col">HW platform</th>
<th scope="col">Branch</th>
<th scope="col">Flash this FW</th>