diff --git a/docs/theme/overrides/home.html b/docs/theme/overrides/home.html index 4f69647..f0d6053 100644 --- a/docs/theme/overrides/home.html +++ b/docs/theme/overrides/home.html @@ -242,12 +242,15 @@ } let counterElement = document.getElementById('installation-counter'); if (counterElement) { - counterElement.textContent = Math.round(allDownloads / 1000) + ",000" + // Live installation count is available starting version 1.0.0 + // Prior Tart was installed a little over 14,000 times, let's count them too + let installationPriorV1 = 14 + counterElement.textContent = (installationPriorV1 + Math.round(allDownloads / 1000)) + ",000" } })