From: Ian Jackson Date: Fri, 5 Feb 2016 19:13:45 +0000 (+0000) Subject: commitid.scad.pl: Provide more Full*T X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=f34de25baf21c2c7ea89a2404f8a3da497ea28bb commitid.scad.pl: Provide more Full*T --- diff --git a/commitid.scad.pl b/commitid.scad.pl index de57166..9b344e2 100755 --- a/commitid.scad.pl +++ b/commitid.scad.pl @@ -105,10 +105,7 @@ $SIG{__WARN__} = sub { die @_; }; # Full6 abcdef Full8 abcdef01 # 23456* _123456* # -# Full6T -# Full9T -# Full12T -# Full15T +# Full6T Full9T Full12T ... Full30T # as Full but commit is split over two lines # for a 3-line message; eg # Full9T abc @@ -372,13 +369,11 @@ sub do_git () { ljustt($sz, $git_object), rjustt($sz, $git_count, $git_dirty)); - if (!($sz % 2)) { - my $e = $sz/2; - gentextmodule("Full".($e*3)."T", - ljustt($e*2, $git_object, $git_dirty) - =~ m/.{$e}/g, - rjustt($e, $git_count)); - } + my $e = $sz; + gentextmodule("Full".($e*3)."T", + ljustt($e*2, $git_object, $git_dirty) + =~ m/.{$e}/g, + rjustt($e, $git_count)); } } }