fix/add tests, update heatmap range, finish android release, add readme

Stop tracking gradle.properties
This commit is contained in:
Rene Kievits
2025-12-24 06:50:04 +01:00
parent eaed23a678
commit c140bb8292
66 changed files with 350 additions and 89 deletions
@@ -69,9 +69,9 @@ const weeks = computed(() => {
const getHeatmapClass = (count) => {
if (count === 0) return 'level-0';
if (count <= 5) return 'level-1';
if (count <= 10) return 'level-2';
if (count <= 20) return 'level-3';
if (count <= 20) return 'level-1';
if (count <= 50) return 'level-2';
if (count <= 100) return 'level-3';
return 'level-4';
};