Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Benjamin Hoover & Contributors
Copyright (c) 2024 Manim Notebook Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
27 changes: 19 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
{
"name": "manim-notebook",
"displayName": "Manim Notebook",
"description": "Replicates Grant Sanderson's interactive workflow for manim in VSCode",
"description": "ManimGL with interactive previewing to easily visualize and share the beauty of mathematics and related fields.",
"version": "0.0.4",
"publisher": "bhoov",
"publisher": "Manim-Notebook",
"author": {
"name": "Ben Hoover",
"email": "[email protected]",
"url": "https://bhoov.com"
"name": "Manim Notebook Contributors"
},
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/Manim-Notebook/manim-notebook",
"bugs": "https://github.com/Manim-Notebook/manim-notebook/issues",
"keywords": [
"Manim",
"ManimGL",
"3Blue1Brown",
"notebook",
"animation"
],
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
"Visualization",
"Notebooks",
"Education"
],
"qna": false,
"activationEvents": [
"*"
"onLanguage:python"
],
"main": "./out/extension.js",
"contributes": {
Expand Down Expand Up @@ -156,7 +167,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/bhoov/manim-notebook"
"url": "https://github.com/Manim-Notebook/manim-notebook.git"
},
"icon": "assets/logo.png"
}
2 changes: 1 addition & 1 deletion src/manimShell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class ManimShell {
* Whether to lock the execution of a new command while another command is
* currently running. On MacOS, we do lock since the IPython terminal *exits*
* when sending Ctrl+C instead of just interrupting the current command.
* See issue #16: https://github.com/bhoov/manim-notebook/issues/16
* See issue #16: https://github.com/Manim-Notebook/manim-notebook/issues/16
*/
private shouldLockDuringCommandExecution = false;
private isExecutingCommand = false;
Expand Down