Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.02h'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpiggi committed Jun 22, 2020
2 parents 41cc0db + f712cdc commit 3730459
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 7 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Copyright (C) Philip Ilten <[email protected]>, 2012-2016<br>
Copyright (C) Falk Hanisch <[email protected]>, 2017-2020

**svg 2020/06/12 v2.02g**
**svg 2020/06/23 v2.02h**

----------------------------------------------------------------------------

Expand Down Expand Up @@ -39,6 +39,10 @@ can be invoked.
Versions
--------

**v2.02h** (2020/06/23)
+ hot fix for package **transparent**,
see https://github.com/mrpiggi/svg/issues/28

**v2.02g** (2020/06/12)
+ hot fix for including files with mutliple dots in it's names,
see https://github.com/mrpiggi/svg/issues/27
Expand Down
15 changes: 9 additions & 6 deletions source/svg.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ svg-extract -- Extract independent graphic files from SVG pictures
%</dtx>
%<package&identify&main> {svg}{include SVG pictures}%
%<package&identify&extract> {svg-extract}{extract graphics from SVG pictures}%
[2020/06/12 v2.02g]%
[2020/06/23 v2.02h]%
\@tempb
%</dtx|package&identify>
% \fi
Expand Down Expand Up @@ -268,6 +268,7 @@ svg-extract -- Extract independent graphic files from SVG pictures
% \changes{v2.02f}{2020/05/06}{command~line~interface of \app{Inkscape~1.0}
% is supported}^^A
% \changes{v2.02g}{2020/06/12}{fix for mutliple dots in file names (\#27)}^^A
% \changes{v2.02h}{2020/06/23}{fix for package \pkg{transparent} (\#28)}^^A
%
%
%
Expand Down Expand Up @@ -1983,13 +1984,15 @@ svg-extract -- Extract independent graphic files from SVG pictures
}%
\fi%
% \end{macrocode}
% There is an issue\footnote{\url{https://github.com/ho-tex/oberdiek/issues/62}}
% with package \pkg{transparent}, which currently implements an \emph{invalid}
% check relying on internal commands of package \pkg{pgfsys}, whereas these
% have changed in the latest version.
% There is an issue with package \pkg{transparent}, which currently implements
% an \emph{invalid} check relying on internal commands of package \pkg{pgfsys},
% whereas these have changed in the latest version.^^A
% \footnote{\url{https://github.com/ho-tex/transparent/issues/3}}
% \begin{macrocode}
\AfterPackage*{transparent}{%
\@ifpackagelater{transparent}{2018/11/19}{}{\RequirePackage{pgfsys}}%
\ifcsname Gin@driver\endcsname%
\RequirePackage{pgfsys}%
\fi%
}%
}
% \end{macrocode}
Expand Down
25 changes: 25 additions & 0 deletions test/issue28/issue20.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
\documentclass{article}

\usepackage{markdown}
\usepackage{svg}

\begin{document}
a
\end{document}

\documentclass{article}
\usepackage{transparent}
\usepackage{pgffor}
%\usepackage{pgfcalendar}
%\usepackage{pgfmath}
%\usepackage{datatool-pgfmath}
%\usepackage{csvsimple}
%\usepackage{pgfrcs}
\begin{document}
\makeatletter

\meaning\pgfutil@addpdfresource@extgs

\meaning\pgf@sys@addpdfresource@extgs@plain

\end{document}

0 comments on commit 3730459

Please sign in to comment.