From 457c2bc7dbb91a0a56b7fef2f376e7957ea1ff55 Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Wed, 11 Oct 2023 16:55:51 -0400 Subject: [PATCH] Adjusted live installation counter (#627) --- docs/theme/overrides/home.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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" } })

- With more than 10,000 installations to date, Tart has been adopted for various scenarios. + With more than 25,000 installations to date, Tart has been adopted for various scenarios. Its applications range from powering CI/CD pipelines and reproducible local development environments, to helping in the testing of device management systems without actual physical devices.