From 1dceb1a233160fa0f88882aac96e9a438c7b5d0b Mon Sep 17 00:00:00 2001 From: Splines Date: Tue, 3 Dec 2024 13:21:22 +0100 Subject: [PATCH] Use person-independent branding & update manifest (according to https://code.visualstudio.com/api/references/extension-manifest) --- LICENSE.txt | 2 +- package.json | 27 +++++++++++++++++++-------- src/manimShell.ts | 2 +- 3 files changed, 21 insertions(+), 10 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 7e335f86..3818ebaa 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -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 diff --git a/package.json b/package.json index 850c8a8f..2175e7df 100644 --- a/package.json +++ b/package.json @@ -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": "benhoover34@gmail.com", - "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": { @@ -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" } \ No newline at end of file diff --git a/src/manimShell.ts b/src/manimShell.ts index 5ea38886..6bcd8d44 100644 --- a/src/manimShell.ts +++ b/src/manimShell.ts @@ -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;