!NuxCISwYQJuyWwNsEI:matrix.org

PGF/TikZ

56 Members
https://github.com/pgf-tikz13 Servers

Load older messages


SenderMessageTime
10 Dec 2021
@_neb_github:matrix.org@_neb_github:matrix.orghttps://github.com/pgf-tikz/pgf/pull/1094 : Set up l3build infrastructure17:08:26
@hmenke:matrix.orghmenke muzimuzhi: Please go ahead with the "Missing character" PRs. 17:09:44
@hmenke:matrix.orghmenkeIt'll take some more time before I can merge #109417:09:56
@_neb_github:matrix.org@_neb_github:matrix.orghttps://github.com/pgf-tikz/pgf/pull/1094 : Set up l3build infrastructure17:09:56
@hmenke:matrix.orghmenke I have to split up the workflows into doc, check, and ctan and configure ctan to only run for tagged releases. 17:10:33
@muzzi:matrix.orgmuzimuzhi btw, I find GitHub Actions already support Skipping workflow runs, which according to its blog was added in Feb 2021. Maybe the split workflows can save a line like the one currently in main.yml. 17:14:24
11 Dec 2021
@gusbrs:matrix.org@gusbrs:matrix.org left the room.10:59:10
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] web-flow pushed 3 commits to master: https://github.com/pgf-tikz/pgf/commit/1dfaf21c4c9ab8cacb5268effded46c862c27e25
muzimuzhi: fix(tikz): rewrite `dash expand off` - Fix use of `\pgfmathmax@`. It accepts a clist but was given two mandatory args, hence thrown `Missing Character` errors. - In error message, do `s/dash offexpand/dash expand off/`. - It now works when `dash pattern` and/or `dash phase` values are math expressions. This option was added by commit d640cd539f9e2735e25709d88ecdd3e6106346c1. Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: refactor: drop `\expandafter` before `\pgf@sys@tonumber` Expansion of `\pgf@sys@tonumber` starts with `\expandafter\the`, and since `\the` is expandable, no need to prefix another `\expandafter`. Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
hmenke: Merge pull request #1097 from muzimuzhi/dash-expand-off fix(tikz): rewrite `dash expand off`
19:58:07
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] PGF/TikZ CI pushed to gh-pages: Deployment for 1dfaf21c4c9ab8cacb5268effded46c862c27e25 - https://github.com/pgf-tikz/pgf/commit/7fd86b15b418caa8b24ff2a3157abb464ee32b86 20:13:09
12 Dec 2021
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] web-flow pushed 2 commits to master: https://github.com/pgf-tikz/pgf/commit/c8ee2d93616d4e16f4ed03b648b0cbab01a86c4b
josephwright: refactor(ci): Set up l3build infrastructure Signed-off-by: Joseph Wright <joseph.wright@morningstar2.co.uk>
hmenke: Merge pull request #1094 from josephwright/l3build Set up l3build infrastructure
14:31:19
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] PGF/TikZ CI pushed to gh-pages: Deployment for c8ee2d93616d4e16f4ed03b648b0cbab01a86c4b - https://github.com/pgf-tikz/pgf/commit/6149338108e9a7d852145b1955610daf139ac925 14:45:20
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] gabor-braun opened issue #1101: Wrong colors with XeLaTeX and dvipdfmx [open] - https://github.com/pgf-tikz/pgf/issues/1101 19:11:51
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] gabor-braun opened issue #1102: Matrix library sometimes puts delimiter to the wrong place [open] - https://github.com/pgf-tikz/pgf/issues/1102 19:25:33
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] gabor-braun opened issue #1103: No animation in example for "Animation attribute :text" [open] - https://github.com/pgf-tikz/pgf/issues/1103 19:44:07
13 Dec 2021
@mgttlinger:matrix.orgMerlin Göttlinger left the room.16:31:18
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgfplots] adityam opened issue #413: Wrong permissions in TDS file on CTAN [open] - https://github.com/pgf-tikz/pgfplots/issues/413 19:45:26
14 Dec 2021
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] web-flow pushed 10 commits to master: https://github.com/pgf-tikz/pgf/commit/e6a9a781a1de8e603e55d285c9b476bceb52f073
muzimuzhi: fix(animations): Add missing `\pgf@sys@tonumber` before `<dimen>` "Private" implementations of `pgfmath` functions only accept unit-less numbers as their arguments, e.g., \pgfmathadd@{1.0}{1.0} So every dimension used as their argument must be prefixed by a `\pgf@sys@tonumber`, e.g., \pgfmathadd@{\pgf@sys@tonumber\pgf@x}{\pgf@sys@tonumber\pgf@y} This eliminates "Missing character" reports for `p` and `t`. Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: fix(sys): Add missing `\pgf@sys@tonumber` before `<dimen>` Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: fix(animations): Gobble `\pgf@stop` when parsing finishes This eliminates "Missing character" reports for `pgf@stop`, char by char. Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: fix(animations): Remove superfluous `/utils/exec` This eliminates "Missing character" reports for `/utils/exec`, char by char. Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: fix(shapes): Remove superfluous `;` for shape `arrow box` Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: fix(shapes): Wrap box content in `\pgfinterruptpicture` This eliminates "Missing character" reports for `logicgates` shapes when their gate symbols are typeset in text mode, e.g., nand gate IEC symbol=\color{black!30}\char`\& in engines other than LuaTeX. Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: docs: Remove superfluous `;` and `]` Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: docs: Promote `Missing character` to errors Signed-off-by: muzimuzhi <muzimuzhi@gmail.com>
muzimuzhi: style: Comment has to go after the correct set of braces Co-authored-by: Henri Menke <henri@henrimenke.de>
hmenke: Merge pull request #1099 from muzimuzhi/no-missing-char Resolve all `Missing character` reports in manual
09:07:06
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] hmenke pushed 3 commits to master: https://github.com/pgf-tikz/pgf/commit/28b9756fef06fc59ebee7241261ebd0e51d83c21
gabor-braun: fix(docs): Emacs local variables in manual. Specify main file with no path (meaning in the same directory), which is independent of developer's environment. Remove wrong encoding specification. Signed-off-by: Gábor Braun <gabor.braun@uni-duisburg-essen.de>
gabor-braun: fix(docs): Update Debian installation instructions. Signed-off-by: Gábor Braun <gabor.braun@uni-duisburg-essen.de>
gabor-braun: fix(docs): some extra, missing or misspelled words in documentation. Signed-off-by: Gábor Braun <gabor.braun@uni-duisburg-essen.de>
09:14:21
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] brucejuz opened issue #1107: About "6 Tutorial: A Lecture Map for Johannes" [open] - https://github.com/pgf-tikz/pgf/issues/1107 09:23:13
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] PGF/TikZ CI pushed to gh-pages: Deployment for e6a9a781a1de8e603e55d285c9b476bceb52f073 - https://github.com/pgf-tikz/pgf/commit/5714f8d23de9b2d92cdc591320b16b49c889fe7e 09:25:17
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] brucejuz edited issue #1107: About "6 Tutorial: A Lecture Map for Johannes" [open] - https://github.com/pgf-tikz/pgf/issues/1107 09:25:37
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] PGF/TikZ CI pushed to gh-pages: Deployment for 28b9756fef06fc59ebee7241261ebd0e51d83c21 - https://github.com/pgf-tikz/pgf/commit/ed65273261e0d0279aeef6e87df6374c41ef3072 09:29:55
@_neb_github_=40hmenke=3amatrix.org:matrix.org@_neb_github_=40hmenke=3amatrix.org:matrix.org [pgf-tikz/pgf] hmenke closed issue #1107: About "6 Tutorial: A Lecture Map for Johannes" [closed] - https://github.com/pgf-tikz/pgf/issues/1107 11:36:13
@josephwright:matrix.orgjosephwright hmenke: A first draft of an l3build article: https://www.icloud.com/iclouddrive/0UWtitNUZINotRYEgUntXC-xw#l3build 21:45:17
15 Dec 2021
@josephwright:matrix.orgjosephwrightCould someone confirm the link works?07:19:14
@marei:im.f3l.demareiit does07:36:00
@josephwright:matrix.orgjosephwrightCool07:42:05
@josephwright:matrix.orgjosephwrightFeedback welcome :)07:42:28
@northface:matrix.orgNorbert Preining
In reply to @josephwright:matrix.org
Could someone confirm the link works?
Works for a non-iCloud user like me ;-) Document read, maybe you want to add a list of "keywords" (variables) that can be set in the conf file with short explanations. Or at least the most common/most useful ones, adding a table at the end of the article?
07:58:55
@josephwright:matrix.orgjosephwright Norbert Preining: OK, I'll think about that: the full docs have a table of all of the variables, but there are a lot of rather specialist ones I've not included. I can certainly sum up the ones I have included in the beginner's guide 08:03:13

Show newer messages


Back to Room ListRoom Version: 6