summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-09-29 21:25:10 +0000
committerKarl Berry <karl@freefriends.org>2020-09-29 21:25:10 +0000
commit8b3d80e99d743a36b0b3cc84105087914c01bb02 (patch)
tree86ce4463a80ce10007eca7ddb4929d204381cc77 /Master/texmf-dist
parentfe206fb3eb0df9a1cb538e9dea93dcffae9c034b (diff)
animate (29sep20)
git-svn-id: svn://tug.org/texlive/trunk@56477 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/doc/latex/animate/ChangeLog3
-rw-r--r--Master/texmf-dist/doc/latex/animate/animate.pdfbin3883925 -> 3900656 bytes
-rw-r--r--Master/texmf-dist/tex/latex/animate/animate.sty23
3 files changed, 10 insertions, 16 deletions
diff --git a/Master/texmf-dist/doc/latex/animate/ChangeLog b/Master/texmf-dist/doc/latex/animate/ChangeLog
index 2c474b2b605..fcbc863bd1c 100644
--- a/Master/texmf-dist/doc/latex/animate/ChangeLog
+++ b/Master/texmf-dist/doc/latex/animate/ChangeLog
@@ -1,3 +1,6 @@
+2020-09-29
+ * fix: pausing at the 0th frame
+
2020-08-29
* new: \multiframebreak for terminating \multiframe loop
diff --git a/Master/texmf-dist/doc/latex/animate/animate.pdf b/Master/texmf-dist/doc/latex/animate/animate.pdf
index 6e7de8842dd..ef8589938e5 100644
--- a/Master/texmf-dist/doc/latex/animate/animate.pdf
+++ b/Master/texmf-dist/doc/latex/animate/animate.pdf
Binary files differ
diff --git a/Master/texmf-dist/tex/latex/animate/animate.sty b/Master/texmf-dist/tex/latex/animate/animate.sty
index dd4fe8959c1..ee1f166b735 100644
--- a/Master/texmf-dist/tex/latex/animate/animate.sty
+++ b/Master/texmf-dist/tex/latex/animate/animate.sty
@@ -13,7 +13,7 @@
\NeedsTeXFormat{LaTeX2e}
-\def\@anim@version{2020/08/29}
+\def\@anim@version{2020/09/29}
\ProvidesPackage{animate}
[\@anim@version\space PDF & SVG animations from files and inline graphics]
@@ -3842,14 +3842,15 @@
a#1_on=f;$%
\fi%
\if@anim@step\else%
- \if@anim@chfps
- if(a#1_nFpsAt[f]!=a#1_fps){%
- a#1_setFps(a#1_nFpsAt[f]);%
- }$%
- \fi%
\if@anim@meas
a#1_frcnt++;$%
\fi%
+ \if@anim@pauseframes
+ if(a#1_playing&&a#1_pauseAt[f]){a#1_pause();}$%
+ \fi%
+ \if@anim@chfps
+ if(a#1_nFpsAt[f]!=a#1_fps){a#1_setFps(a#1_nFpsAt[f]);}$%
+ \fi%
\fi%
return 0;$%
};$%
@@ -3900,11 +3901,6 @@
\fi
return;$%
}$%
- \if@anim@step\else%
- \if@anim@pauseframes
- if(a#1_playing&&a#1_pauseAt[a#1_idx]){a#1_pause();}$%
- \fi%
- \fi%
};$%
a#1_gotoPrev=function(){$%
if(a#1_seekFrame(a#1_idx-1)<0){$%
@@ -3936,11 +3932,6 @@
\fi
return;$%
}$%
- \if@anim@step\else%
- \if@anim@pauseframes
- if(a#1_playing&&a#1_pauseAt[a#1_idx]){a#1_pause();}$%
- \fi%
- \fi%
};$%
\if@anim@step\else
a#1_pause=function(stop){$%