From 072b9018a4898fce08e4622e09c1110991008529 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Sat, 20 Jan 2018 23:25:20 +0100 Subject: [PATCH 1/2] added heart as an image option --- gitfiti.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gitfiti.py b/gitfiti.py index 7981d5cdd..dc3cf568d 100755 --- a/gitfiti.py +++ b/gitfiti.py @@ -164,6 +164,16 @@ GLIDERS = [ [0,0,4,0,0,0,4,4,0,0,0,0,0,0], ] +HEART = [ + [0,4,4,0,4,4,0], + [4,2,2,4,2,2,4], + [4,2,2,2,2,2,4], + [4,0,2,2,2,2,4], + [0,4,2,2,2,4,0], + [0,0,4,2,4,0,0], + [0,0,0,4,0,0,0], +] + ASCII_TO_NUMBER = { '_': 0, '_': 1, @@ -217,6 +227,7 @@ IMAGES = { 'oneup_str': ONEUP_STR, 'beer': BEER, 'gliders': GLIDERS, + 'heart' : HEART, } SHELLS = { From dbfdb5cd88ba7730cbdd44bee40fdcce690d51f2 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Sun, 25 Feb 2018 21:04:50 +0100 Subject: [PATCH 2/2] udpated heart image made it a full heart --- gitfiti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitfiti.py b/gitfiti.py index dc3cf568d..2f76767c7 100755 --- a/gitfiti.py +++ b/gitfiti.py @@ -168,7 +168,7 @@ HEART = [ [0,4,4,0,4,4,0], [4,2,2,4,2,2,4], [4,2,2,2,2,2,4], - [4,0,2,2,2,2,4], + [4,2,2,2,2,2,4], [0,4,2,2,2,4,0], [0,0,4,2,4,0,0], [0,0,0,4,0,0,0],