From f825d5211d33d36eafc642e7399c22bd1618110d Mon Sep 17 00:00:00 2001 From: Idrees Date: Fri, 9 Feb 2024 17:04:01 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1881977..d0b9da5 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ The monospaced font for developers who like Minecraft a bit _too_ much. +If you'd like to see a vectorized version of this font, try [Miracode](https://github.com/IdreesInc/Miracode) + *Notice: This project is not affiliated with Minecraft or Mojang in any way and is exclusively a fan project. This font emulates the typeface of the font used in the Minecraft UI, but it does not include any assets or font files from the original game.* ## Features From 74d9255a801bcc72f0895561a16e46bc43142f6d Mon Sep 17 00:00:00 2001 From: Idrees Date: Fri, 9 Feb 2024 17:04:13 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0b9da5..a4be82c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The monospaced font for developers who like Minecraft a bit _too_ much. -If you'd like to see a vectorized version of this font, try [Miracode](https://github.com/IdreesInc/Miracode) +If you'd like to see a vectorized version of this font, try [Miracode](https://github.com/IdreesInc/Miracode)! *Notice: This project is not affiliated with Minecraft or Mojang in any way and is exclusively a fan project. This font emulates the typeface of the font used in the Minecraft UI, but it does not include any assets or font files from the original game.* From dfccf446e5b8742bb4067b464fe24a794d023026 Mon Sep 17 00:00:00 2001 From: Hongbo <12580159+ya0guang@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:43:11 -0400 Subject: [PATCH 3/3] enhance the variable naming to avoid confusion --- src/monocraft.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monocraft.py b/src/monocraft.py index a193995..7d79132 100644 --- a/src/monocraft.py +++ b/src/monocraft.py @@ -116,7 +116,7 @@ def imageFromArray(arr, x=0, y=0): y=y, width=len(arr[0]), height=len(arr), - data=bytes(x for a in reversed(arr) for x in a), + data=bytes(v for a in reversed(arr) for v in a), ) def drawImage(image, pen, *, dx=0, dy=0):