We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed76ff commit 94265f6Copy full SHA for 94265f6
manim_slides/present.py
@@ -1046,6 +1046,15 @@ def present(
1046
for presentation_config in presentation_configs
1047
]
1048
1049
+ # TODO: remove me in v5
1050
+ if config_path.suffix == ".json" or Path(".manim-slides.json").exists():
1051
+ logger.warn(
1052
+ "Manim Slides now uses a TOML file for configuration. "
1053
+ "Please create a new configuration file with `manim-slides init` "
1054
+ "and move all the keys from your old config, if needed. "
1055
+ "Then, delete your old JSON config file."
1056
+ )
1057
+
1058
if config_path.exists():
1059
try:
1060
config = Config.from_file(config_path)
0 commit comments