set disabled icon to black

- set version to 0.1.0
This commit is contained in:
Aaron Bieber 2024-10-29 12:54:58 -06:00
parent 52c5b782d8
commit e99ff27549
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,7 @@
{ {
fynado = with pkgs; pkgs.buildGoModule rec { fynado = with pkgs; pkgs.buildGoModule rec {
pname = "fynado"; pname = "fynado";
version = "v0.0.0"; version = "v0.1.0";
src = ./.; src = ./.;
vendorHash = "sha256-orfRl0pOiHMwleZci8riKrksbXGzOUmIk+JmP2sf7PA="; vendorHash = "sha256-orfRl0pOiHMwleZci8riKrksbXGzOUmIk+JmP2sf7PA=";

View File

@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"fmt" "fmt"
"image" "image"
"image/color"
"image/png" "image/png"
"math" "math"
) )
@ -57,7 +58,7 @@ func (m CountIcon) Draw(percentage float64) CountIcon {
m.data.Set(x, y, sixes) m.data.Set(x, y, sixes)
} }
} else { } else {
m.data.Set(x, y, sixes) m.data.Set(x, y, color.Black)
} }
} }
} }