icns

Easily create .icns files (Mac Icons) with this Go library or the included CLI.
Log | Files | Refs | LICENSE

commit 14a023c8dac08b8b8955b927c68b96047f8c65e0
parent 1059a2eee8cc33bb07c7ad1b0d6e1c0cc941e468
Author: Jack Mordaunt <jackmordaunt.dev@gmail.com>
Date:   Thu, 17 Sep 2026 07:30:03 -0400

build: ignore compiled binaries

A stray icnsify.exe from a local build was nearly committed alongside a
module change. Executables, DLLs and test binaries are never source, so
ignore them at the root rather than relying on each directory to remember.

Diffstat:
M.gitignore | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,3 +1,6 @@ *.DS_Store *vendor -*dist -\ No newline at end of file +*dist +*.exe +*.dll +*.test