You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
summary+=`Updated in MS marketplace in month-to-date: ${updatedInMTD}\r\n`;
74
-
summary+=`Of which updated in Open VSX within 2 days: ${updatedInOpen} (${(updatedInOpen/updatedInMTD*100).toFixed(0)}%)\r\n`;
85
+
summary+=`Of which updated in Open VSX within 2 days: ${updatedInOpenIn2Days.size} (${(updatedInOpenIn2Days.size/updatedInMTD*100).toFixed(0)}%)\r\n`;
86
+
summary+=`Of which updated in Open VSX within 2 weeks: ${updatedInOpenIn2Weeks.size} (${(updatedInOpenIn2Weeks.size/updatedInMTD*100).toFixed(0)}%)\r\n`;
87
+
summary+=`Of which updated in Open VSX within a month: ${updatedInOpenInMonth.size} (${(updatedInOpenInMonth.size/updatedInMTD*100).toFixed(0)}%)\r\n`;
75
88
summary+='-------------------\r\n';
76
89
console.log(summary);
77
90
@@ -139,7 +152,10 @@ function sortedKeys(s) {
139
152
content+='\r\n----- Updated in Open VSX within 2 days after in MS marketplace in MTD -----\r\n';
140
153
for(constidofsortedKeys(stat.hitMiss)){
141
154
constr=stat.hitMiss[id];
142
-
content+=`${r.hit ? '+' : '-'}${id}: installs: ${r.msInstalls}; daysInBetween: ${r.daysInBetween?.toFixed(0)}; MS marketplace: ${r.msVersion}; Open VSX: ${r.openVersion}\r\n`;
0 commit comments