diff options
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/pixelart/CHANGELOG.md | 13 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/pixelart/README.md | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/pixelart/pixelart.pdf | bin | 231203 -> 232668 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/pixelart/pixelart.tex | 6 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/pixelart/pixelart0.pdf | bin | 152390 -> 152529 bytes | |||
-rw-r--r-- | Master/texmf-dist/tex/latex/pixelart/pixelart.lua | 26 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/pixelart/pixelart.sty | 18 |
7 files changed, 60 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/latex/pixelart/CHANGELOG.md b/Master/texmf-dist/doc/latex/pixelart/CHANGELOG.md index daf7e7e7264..ee5be079ddf 100644 --- a/Master/texmf-dist/doc/latex/pixelart/CHANGELOG.md +++ b/Master/texmf-dist/doc/latex/pixelart/CHANGELOG.md @@ -1,3 +1,16 @@ +* pixelart 1.0.1 (2023-02-18) + + * Bugs + + * Minor change to take into account backward-incompatible change in `luakeys` v0.13.0 (thanks Jonathan P. Spratte). + * Pixelart (with option `square`) no longer fails when asked to draw an empty pixelart. + + * Documentation + + * Minor changes and improvements. + + -- Louis Paternault <spalax@gresille.org> + * pixelart 1.0.0 (2022-11-16) * Full, backward incompatible, rewrite of `pixelart`, in Lua. diff --git a/Master/texmf-dist/doc/latex/pixelart/README.md b/Master/texmf-dist/doc/latex/pixelart/README.md index 47eb31b3b65..fa717d9015e 100644 --- a/Master/texmf-dist/doc/latex/pixelart/README.md +++ b/Master/texmf-dist/doc/latex/pixelart/README.md @@ -1,7 +1,7 @@ pixelart 🎨 A LaTeX package to draw pixel-art pictures ====================================================== -![Example](https://framagit.org/spalax/pixelart/-/raw/v1.0.0/pixelart.png) +![Example](https://framagit.org/spalax/pixelart/-/raw/v1.0.1/pixelart.png) - [Usage and installation instruction](http://mirrors.ctan.org/graphics/pgf/contrib/pixelart/pixelart.pdf). - Example: The heart of the picture above was produced using the following code. @@ -30,7 +30,7 @@ pixelart 🎨 A LaTeX package to draw pixel-art pictures License ------- -*Copyright 2018-2022 Louis Paternault* +*Copyright 2017-2023 Louis Paternault* This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 of this license or (at your option) diff --git a/Master/texmf-dist/doc/latex/pixelart/pixelart.pdf b/Master/texmf-dist/doc/latex/pixelart/pixelart.pdf Binary files differindex 2a66d842aa7..615676f0831 100644 --- a/Master/texmf-dist/doc/latex/pixelart/pixelart.pdf +++ b/Master/texmf-dist/doc/latex/pixelart/pixelart.pdf diff --git a/Master/texmf-dist/doc/latex/pixelart/pixelart.tex b/Master/texmf-dist/doc/latex/pixelart/pixelart.tex index 1ab064ce564..bfcf1e5863c 100644 --- a/Master/texmf-dist/doc/latex/pixelart/pixelart.tex +++ b/Master/texmf-dist/doc/latex/pixelart/pixelart.tex @@ -9,8 +9,8 @@ \setcnltx{ name = pixelart, title = \pixelartlogo, - version = v1.0.0, - date = 2022-11-16, + version = v1.0.1, + date = 2023-02-18, info = A \LaTeX{} package to draw pixel-art pictures , authors = Louis Paternault , email = spalax(at)gresille(dot)org , @@ -446,6 +446,8 @@ If you want to credit \pkg*{pixelart} in a fancy way, you can use one of those l \end{commands} \end{multicols} +Note that those logos are affected by \cs{setpixelartdefault}, so, if you have used this command in your document, you might want to call \cs*{setpixelartdefault}\marg{} to reset the default options before drawing any logo. + \section{Debugging} What if drawing your pixel art throws an error? diff --git a/Master/texmf-dist/doc/latex/pixelart/pixelart0.pdf b/Master/texmf-dist/doc/latex/pixelart/pixelart0.pdf Binary files differindex ec118f46fb1..abd374878ae 100644 --- a/Master/texmf-dist/doc/latex/pixelart/pixelart0.pdf +++ b/Master/texmf-dist/doc/latex/pixelart/pixelart0.pdf diff --git a/Master/texmf-dist/tex/latex/pixelart/pixelart.lua b/Master/texmf-dist/tex/latex/pixelart/pixelart.lua index 97a76d8f769..d5c98e3898c 100644 --- a/Master/texmf-dist/tex/latex/pixelart/pixelart.lua +++ b/Master/texmf-dist/tex/latex/pixelart/pixelart.lua @@ -1,5 +1,23 @@ +--[[ + Copyright 2017-2023 Louis Paternault + + This work may be distributed and/or modified under the + conditions of the LaTeX Project Public License, either version 1.3 + of this license or (at your option) any later version. + The latest version of this license is in + http://www.latex-project.org/lppl.txt + and version 1.3 or later is part of all distributions of LaTeX + version 2005/12/01 or later. + + This work has the LPPL maintenance status `maintained'. + + The Current Maintainer of this work is Louis Paternault + + This work consists of the files pixelart.sty, pixelart.lua, pixelart.tex. +--]] + require("lualibs-lpeg") -local luakeys = require("luakeys") +local luakeys = require("luakeys")() pixelart = { _debug = false, @@ -16,7 +34,6 @@ local function pixelart_setpixelartdebug(flag) end pixelart.setpixelartdebug = pixelart_setpixelartdebug -pixelart.setpixelartdebug = pixelart_setpixelartdebug -------------------------------------------------------------------------------- --[[ Print @@ -269,6 +286,11 @@ end local function pixelart_body_squares(array, colors, options) -- Draw the tikz pixels, as a set of squares. + if #array == 0 then + -- Empty array + return + end + tex_print(string.format( [[\clip ({0-%s}, {0-%s}) rectangle (%s, %s); ]], options.margin, diff --git a/Master/texmf-dist/tex/latex/pixelart/pixelart.sty b/Master/texmf-dist/tex/latex/pixelart/pixelart.sty index 52b90e4afc4..4fa15d8101b 100644 --- a/Master/texmf-dist/tex/latex/pixelart/pixelart.sty +++ b/Master/texmf-dist/tex/latex/pixelart/pixelart.sty @@ -1,5 +1,21 @@ +%% Copyright 2017-2023 Louis Paternault +%% +%% This work may be distributed and/or modified under the +%% conditions of the LaTeX Project Public License, either version 1.3 +%% of this license or (at your option) any later version. +%% The latest version of this license is in +%% http://www.latex-project.org/lppl.txt +%% and version 1.3 or later is part of all distributions of LaTeX +%% version 2005/12/01 or later. +%% +%% This work has the LPPL maintenance status `maintained'. +%% +%% The Current Maintainer of this work is Louis Paternault +%% +%% This work consists of the files pixelart.sty, pixelart.lua, pixelart.tex. + \NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{pixelart} +\ProvidesPackage{pixelart}[2023/02/18 v1.0.1 A package to draw pixel-art pictures] \RequirePackage{iftex} \ifluatex |