From 2d473f3b7b142f66534e28b71cbacf10e2ba9fb5 Mon Sep 17 00:00:00 2001 From: Ni_Yiyu Date: Sun, 17 Mar 2019 01:18:41 +0800 Subject: [PATCH 1/6] Update README.md Adding new documentation instruction link --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8b871418..672ce0f2 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,8 @@ While developing a scene, the `-sp` flags are helpful to just see what things lo ### Documentation Documentation is in progress at [manim.readthedocs.io](https://manim.readthedocs.io). +Documentation Yiyu Version is also in progress at [niyiyu2316.github.io/manim/](https://niyiyu2316.github.io/manim/) + ### Walkthrough Todd Zimmerman put together a [tutorial](https://talkingphysics.wordpress.com/2019/01/08/getting-started-animating-with-manim-and-python-3-7/) on getting started with manim, which has been updated to run on python 3.7. From 4d3c511895afce9935f44ea5736d12ac2f44647a Mon Sep 17 00:00:00 2001 From: Ni_Yiyu Date: Sun, 17 Mar 2019 03:05:52 +0800 Subject: [PATCH 2/6] Fix Matrix --- manimlib/mobject/svg/tex_mobject.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manimlib/mobject/svg/tex_mobject.py b/manimlib/mobject/svg/tex_mobject.py index 3afd362e..fdf39845 100644 --- a/manimlib/mobject/svg/tex_mobject.py +++ b/manimlib/mobject/svg/tex_mobject.py @@ -156,7 +156,8 @@ class TexMobject(SingleStringTexMobject): split_list = split_string_list_to_isolate_substrings( tex_strings, *substrings_to_isolate ) - split_list = list(map(str.strip, split_list)) + split_list = [str(x).strip() for x in split_list] + #split_list = list(map(str.strip, split_list)) split_list = [s for s in split_list if s != ''] return split_list From 2ab2c7b20458661b4d60cb50f89667e64587f509 Mon Sep 17 00:00:00 2001 From: Ni_Yiyu Date: Sun, 17 Mar 2019 03:09:11 +0800 Subject: [PATCH 3/6] Remove Something... --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 672ce0f2..8b871418 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,6 @@ While developing a scene, the `-sp` flags are helpful to just see what things lo ### Documentation Documentation is in progress at [manim.readthedocs.io](https://manim.readthedocs.io). -Documentation Yiyu Version is also in progress at [niyiyu2316.github.io/manim/](https://niyiyu2316.github.io/manim/) - ### Walkthrough Todd Zimmerman put together a [tutorial](https://talkingphysics.wordpress.com/2019/01/08/getting-started-animating-with-manim-and-python-3-7/) on getting started with manim, which has been updated to run on python 3.7. From 1ce67278845a35ebf573598fac563f7ac05756d6 Mon Sep 17 00:00:00 2001 From: Ni_Yiyu Date: Sun, 17 Mar 2019 03:12:45 +0800 Subject: [PATCH 4/6] Revert "Remove Something..." This reverts commit 2ab2c7b20458661b4d60cb50f89667e64587f509. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8b871418..672ce0f2 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,8 @@ While developing a scene, the `-sp` flags are helpful to just see what things lo ### Documentation Documentation is in progress at [manim.readthedocs.io](https://manim.readthedocs.io). +Documentation Yiyu Version is also in progress at [niyiyu2316.github.io/manim/](https://niyiyu2316.github.io/manim/) + ### Walkthrough Todd Zimmerman put together a [tutorial](https://talkingphysics.wordpress.com/2019/01/08/getting-started-animating-with-manim-and-python-3-7/) on getting started with manim, which has been updated to run on python 3.7. From 2db1dff1cf8af0cab48dbee41fac57178f1e1283 Mon Sep 17 00:00:00 2001 From: Ni_Yiyu Date: Sun, 17 Mar 2019 03:13:07 +0800 Subject: [PATCH 5/6] Revert "Update README.md" This reverts commit 2d473f3b7b142f66534e28b71cbacf10e2ba9fb5. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 672ce0f2..8b871418 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,6 @@ While developing a scene, the `-sp` flags are helpful to just see what things lo ### Documentation Documentation is in progress at [manim.readthedocs.io](https://manim.readthedocs.io). -Documentation Yiyu Version is also in progress at [niyiyu2316.github.io/manim/](https://niyiyu2316.github.io/manim/) - ### Walkthrough Todd Zimmerman put together a [tutorial](https://talkingphysics.wordpress.com/2019/01/08/getting-started-animating-with-manim-and-python-3-7/) on getting started with manim, which has been updated to run on python 3.7. From 3393bf616b91e8a1bb6c0d006196ff0198ebe438 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 3 Apr 2019 21:10:20 -0700 Subject: [PATCH 6/6] Fix --preview on cygwin --- manimlib/extract_scene.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manimlib/extract_scene.py b/manimlib/extract_scene.py index 00acc778..143e338c 100644 --- a/manimlib/extract_scene.py +++ b/manimlib/extract_scene.py @@ -35,8 +35,10 @@ def open_file_if_needed(file_writer, **config): os.startfile(file_path) else: commands = [] - if (current_os == "Linux"): + if current_os == "Linux": commands.append("xdg-open") + elif current_os.startswith("CYGWIN"): + commands.append("cygstart") else: # Assume macOS commands.append("open")