diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5c877..deb2de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 1.2.0 + +- Added feature that adds the directory of the markdown file to Python's sys.path, allowing you to import modules from the same directory. +- Extension settings now apply without restarting VS Code. + ## 1.1.0 - Enhanced user-friendliness of "Compiler Configuration" settings by integrating them into the VS Code Extension Settings UI. Users can now directly edit, add, or reset configurations for each language without the need to modify a .json file. diff --git a/README.md b/README.md index ac60121..4ccdccb 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ On Arch Linux, you can install all supported languages with 1 command! sudo pacman --needed -S php perl r dart groovy go rustup ghc julia lua ruby nodejs npm python bash ``` -On other less excellent operating systems, please research the installation process. Consider using the [Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/install) on Windows. +Please research the language installation process on other operating systems. Consider using the [Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/install) on Windows. ## Demo @@ -35,7 +35,7 @@ Download or copy [DEMO.md](DEMO.md) into VS Code after installing this extension ### Compiler Configuration -- Add or modify the entries representing compiler configurations and restart VS Code afterwards. Each entry consists of an array defining the properties for a specific programming language. The array elements represent: [Language Name, File Extension, Compiler Command/Path, Compiled (true/false)]. You can only add non-compiled languages here. +- Add or modify the entries representing compiler configurations. Each entry consists of an array defining the properties for a specific programming language. The array elements represent: [Language Name, File Extension, Compiler Command/Path, Compiled (true/false)]. You can only add non-compiled languages here. ```json // Example @@ -50,6 +50,10 @@ Download or copy [DEMO.md](DEMO.md) into VS Code after installing this extension } ``` +### Python Path + +Enabling this setting adds the directory of the markdown file to Python's sys.path, allowing you to import modules from the same directory. + ## Future Development Please note that the following features are desired for future development, but their implementation is not guaranteed: diff --git a/package-lock.json b/package-lock.json index fdbffcc..62a424d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "markdown-runner", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "markdown-runner", - "version": "1.1.0", + "version": "1.2.0", "devDependencies": { "@types/mocha": "^10.0.6", "@types/node": "18.x", diff --git a/package.json b/package.json index 773a08b..6d9fb31 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Enables the seamless execution of code blocks in any language within Markdown files in VS Code", "publisher": "renathossain", "icon": "Icon.png", - "version": "1.1.0", + "version": "1.2.0", "engines": { "vscode": "^1.87.0" },