mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-12 00:23:08 +00:00
Add --disable-hashing flag.
This commit is contained in:
parent
e9f893b6e3
commit
4481f10ebf
1 changed files with 5 additions and 0 deletions
|
|
@ -44,6 +44,7 @@ data Command
|
|||
, renderPreset :: Maybe Preset
|
||||
, renderRaster :: Raster
|
||||
, renderPartial :: Bool
|
||||
, renderHash :: Bool
|
||||
}
|
||||
deriving (Show)
|
||||
|
||||
|
|
@ -211,6 +212,10 @@ renderCommand = info parse
|
|||
(long "partial"
|
||||
<> help "Produce partial animation even if frame generation was \
|
||||
\interrupted by ctrl-c")
|
||||
<*> flag True False
|
||||
(long "disable-hashing"
|
||||
<> help "Disable SVG dedup via hashing. This might improve performance \
|
||||
\if all your frames are unique.")
|
||||
|
||||
opts :: ParserInfo Options
|
||||
opts = info (options <**> helper )
|
||||
|
|
|
|||
Loading…
Reference in a new issue