mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
Added mixed-line-ending to .pre-commit-config.yaml (#1294)
* added mixed-line-ending to .pre-commit-config.yaml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
a0f29c581a
commit
3e8615dfa5
4 changed files with 131 additions and 126 deletions
58
.github/manimdependency.json
vendored
58
.github/manimdependency.json
vendored
|
|
@ -1,29 +1,29 @@
|
|||
{
|
||||
"windows": {
|
||||
"ffmpeg": "https://github.com/GyanD/codexffmpeg/releases/download/4.3.1-2020-11-19/ffmpeg-4.3.1-2020-11-19-full_build.zip",
|
||||
"pango": "v0.1.0",
|
||||
"tinytex": [
|
||||
"standalone",
|
||||
"preview",
|
||||
"doublestroke",
|
||||
"ms",
|
||||
"everysel",
|
||||
"setspace",
|
||||
"rsfs",
|
||||
"relsize",
|
||||
"ragged2e",
|
||||
"fundus-calligra",
|
||||
"microtype",
|
||||
"wasysym",
|
||||
"physics",
|
||||
"dvisvgm",
|
||||
"jknapltx",
|
||||
"wasy",
|
||||
"cm-super",
|
||||
"babel-english",
|
||||
"gnu-freefont",
|
||||
"mathastext",
|
||||
"cbfonts-fd"
|
||||
]
|
||||
}
|
||||
}
|
||||
{
|
||||
"windows": {
|
||||
"ffmpeg": "https://github.com/GyanD/codexffmpeg/releases/download/4.3.1-2020-11-19/ffmpeg-4.3.1-2020-11-19-full_build.zip",
|
||||
"pango": "v0.1.0",
|
||||
"tinytex": [
|
||||
"standalone",
|
||||
"preview",
|
||||
"doublestroke",
|
||||
"ms",
|
||||
"everysel",
|
||||
"setspace",
|
||||
"rsfs",
|
||||
"relsize",
|
||||
"ragged2e",
|
||||
"fundus-calligra",
|
||||
"microtype",
|
||||
"wasysym",
|
||||
"physics",
|
||||
"dvisvgm",
|
||||
"jknapltx",
|
||||
"wasy",
|
||||
"cm-super",
|
||||
"babel-english",
|
||||
"gnu-freefont",
|
||||
"mathastext",
|
||||
"cbfonts-fd"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@ default_language_version:
|
|||
default_stages: [commit, push]
|
||||
fail_fast: false
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v3.4.0
|
||||
hooks:
|
||||
- id: mixed-line-ending
|
||||
args: ['--fix=lf']
|
||||
- repo: https://github.com/psf/black
|
||||
rev: 20.8b1
|
||||
hooks:
|
||||
|
|
|
|||
|
|
@ -1,37 +1,37 @@
|
|||
@ECHO OFF
|
||||
|
||||
pushd %~dp0\source
|
||||
|
||||
REM Command file for Sphinx documentation
|
||||
|
||||
if "%SPHINXBUILD%" == "" (
|
||||
set SPHINXBUILD=sphinx-build
|
||||
)
|
||||
|
||||
REM The paths are taken from the source directory
|
||||
set SOURCEDIR=.
|
||||
set BUILDDIR=..\build
|
||||
|
||||
if "%1" == "" goto help
|
||||
|
||||
%SPHINXBUILD% >NUL 2>NUL
|
||||
if errorlevel 9009 (
|
||||
echo.
|
||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
||||
echo.may add the Sphinx directory to PATH.
|
||||
echo.
|
||||
echo.If you don't have Sphinx installed, grab it from
|
||||
echo.http://sphinx-doc.org/
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
||||
goto end
|
||||
|
||||
:help
|
||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
||||
|
||||
:end
|
||||
popd
|
||||
@ECHO OFF
|
||||
|
||||
pushd %~dp0\source
|
||||
|
||||
REM Command file for Sphinx documentation
|
||||
|
||||
if "%SPHINXBUILD%" == "" (
|
||||
set SPHINXBUILD=sphinx-build
|
||||
)
|
||||
|
||||
REM The paths are taken from the source directory
|
||||
set SOURCEDIR=.
|
||||
set BUILDDIR=..\build
|
||||
|
||||
if "%1" == "" goto help
|
||||
|
||||
%SPHINXBUILD% >NUL 2>NUL
|
||||
if errorlevel 9009 (
|
||||
echo.
|
||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
||||
echo.may add the Sphinx directory to PATH.
|
||||
echo.
|
||||
echo.If you don't have Sphinx installed, grab it from
|
||||
echo.http://sphinx-doc.org/
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
||||
goto end
|
||||
|
||||
:help
|
||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
|
||||
|
||||
:end
|
||||
popd
|
||||
|
|
|
|||
|
|
@ -1,60 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920px"
|
||||
height="1080px"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
id="SVGRoot"
|
||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
|
||||
sodipodi:docname="video_icon.svg">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.24748737"
|
||||
inkscape:cx="1216.0434"
|
||||
inkscape:cy="480.932"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1227"
|
||||
inkscape:window-height="762"
|
||||
inkscape:window-x="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0" />
|
||||
<defs
|
||||
id="defs5935" />
|
||||
<metadata
|
||||
id="metadata5938">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
style="fill:#ff00ff;fill-opacity:1"
|
||||
d="M 94.955078 0 C 42.350388 0 -9.4739031e-15 42.350388 0 94.955078 L 0 985.04492 C 0 1037.6496 42.350388 1080 94.955078 1080 L 1825.0449 1080 C 1877.6496 1080 1920 1037.6496 1920 985.04492 L 1920 94.955078 C 1920 42.350388 1877.6496 -9.4739031e-15 1825.0449 0 L 94.955078 0 z M 181.45898 54 L 1738.541 54 C 1785.8852 54 1824 92.114766 1824 139.45898 L 1824 940.54102 C 1824 987.88524 1785.8852 1026 1738.541 1026 L 181.45898 1026 C 134.11476 1026 96 987.88524 96 940.54102 L 96 139.45898 C 96 92.114766 134.11476 54 181.45898 54 z M 810 280.19141 L 810.16797 547.07617 L 810 799.80859 L 1041.0449 666.2207 L 1260 540 L 1028.7871 406.70312 L 810 280.19141 z "
|
||||
id="rect7988" />
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1920px"
|
||||
height="1080px"
|
||||
viewBox="0 0 1920 1080"
|
||||
version="1.1"
|
||||
id="SVGRoot"
|
||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
|
||||
sodipodi:docname="video_icon.svg">
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.24748737"
|
||||
inkscape:cx="1216.0434"
|
||||
inkscape:cy="480.932"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1227"
|
||||
inkscape:window-height="762"
|
||||
inkscape:window-x="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0" />
|
||||
<defs
|
||||
id="defs5935" />
|
||||
<metadata
|
||||
id="metadata5938">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
style="fill:#ff00ff;fill-opacity:1"
|
||||
d="M 94.955078 0 C 42.350388 0 -9.4739031e-15 42.350388 0 94.955078 L 0 985.04492 C 0 1037.6496 42.350388 1080 94.955078 1080 L 1825.0449 1080 C 1877.6496 1080 1920 1037.6496 1920 985.04492 L 1920 94.955078 C 1920 42.350388 1877.6496 -9.4739031e-15 1825.0449 0 L 94.955078 0 z M 181.45898 54 L 1738.541 54 C 1785.8852 54 1824 92.114766 1824 139.45898 L 1824 940.54102 C 1824 987.88524 1785.8852 1026 1738.541 1026 L 181.45898 1026 C 134.11476 1026 96 987.88524 96 940.54102 L 96 139.45898 C 96 92.114766 134.11476 54 181.45898 54 z M 810 280.19141 L 810.16797 547.07617 L 810 799.80859 L 1041.0449 666.2207 L 1260 540 L 1028.7871 406.70312 L 810 280.19141 z "
|
||||
id="rect7988" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.3 KiB |
Loading…
Add table
Add a link
Reference in a new issue