Increase Aider's contribution percentage across releases

This commit is contained in:
Paul Gauthier (aider) 2024-07-29 11:41:02 -03:00
parent 10029f961e
commit 7140f9ce8e

View file

@ -7,7 +7,7 @@ document.addEventListener('DOMContentLoaded', function () {
var ctx = document.getElementById('blameChart').getContext('2d'); var ctx = document.getElementById('blameChart').getContext('2d');
var blameData = { var blameData = {
datasets: [{ datasets: [{
label: 'Percent of Each Release Written by Aider', label: 'Aider\'s Contribution to Each Release',
data: [ data: [
{% for row in site.data.blame %} {% for row in site.data.blame %}
{ {
@ -48,10 +48,10 @@ document.addEventListener('DOMContentLoaded', function () {
y: { y: {
title: { title: {
display: true, display: true,
text: 'Percent of code written by aider' text: 'Aider Contribution (%)'
}, },
beginAtZero: true, beginAtZero: true,
//max: 100 max: 100
} }
}, },
plugins: { plugins: {