diff --git a/CHANGELOG.md b/CHANGELOG.md index f3d9e81..d7a6bf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to the "gnuradio-integration" extension will be documented i Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. ## [Unreleased] + +## [0.3.2] - 2023-12-26 ### Added - Initial module info query now detects if Python modules for GNURadio are not installed (ImportError) - Added Python interpreter, PYTHONPATH and GNURadio Prefix settings to extension config @@ -129,7 +131,8 @@ a workaround to activate the extension when the module has no blocks yet ### Added - This is the initial release of gnuradio-integration VS Code extension -[Unreleased]: https://github.com/AsriFox/gnuradio-integration/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/AsriFox/gnuradio-integration/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/AsriFox/gnuradio-integration/compare/v0.3.2...v0.3.2 [0.3.1]: https://github.com/AsriFox/gnuradio-integration/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/AsriFox/gnuradio-integration/compare/v0.2.2...v0.3.0 [0.2.2]: https://github.com/AsriFox/gnuradio-integration/compare/v0.2.1...v0.2.2 diff --git a/README.md b/README.md index 6c82489..fcef8f0 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,9 @@ If a GNURadio OOT module is detected in the workspace, the **GNURadio Module** t | ![Edit or Compile/Run Flowgraph](./imgs/flowgraph_edit.png) | ## Extension settings -- **GNURadio Companion command** (default: `gnuradio-companion`); -- **GNURadio CLI compiler command** (default: `grcc`); +- **GNURadio Prefix**: absolute path to your GNURadio installation; +Please use the output of `gnuradio-config-info --prefix`; see [InstallingGR](https://wiki.gnuradio.org/index.php?title=InstallingGR) for more details +- **Python** - for virtual environments: + - **Default interpreter**: path to an executable (e.g. `~/.local/bin/python`); + - **Default PYTHONPATH**: paths to library directories (e.g. `~/.local/lib/python3.11/site-packages`); - **Check for XML block definitions** on startup (default: disabled). diff --git a/package-lock.json b/package-lock.json index df2e312..b80ede9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gnuradio-integration", - "version": "0.3.1", + "version": "0.3.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "gnuradio-integration", - "version": "0.3.1", + "version": "0.3.2", "license": "MIT", "devDependencies": { "@types/glob": "^7.2.0", diff --git a/package.json b/package.json index 96f8703..f64dbb7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "gnuradio-integration", "displayName": "GNURadio Integration", "description": "GNURadio Integration", - "version": "0.3.1", + "version": "0.3.2", "license": "MIT", "publisher": "AsriFox", "engines": { @@ -413,7 +413,7 @@ "gnuradio-integration.gnuradioPrefix": { "type": "string", "default": "", - "markdownDescription": "GNURadio installation prefix (absolute path) \nPlease use the output of `gnuradio-config-info --prefix`. \nIf this property is not set, then GNURadio prefix is presumed to be in PATH." + "markdownDescription": "GNURadio installation prefix (absolute path) \nPlease use the output of `gnuradio-config-info --prefix`. \nIf this property is not set, then GNURadio prefix is presumed to be in PATH. \nSee [InstallingGR](https://wiki.gnuradio.org/index.php?title=InstallingGR) for more details." }, "gnuradio-integration.python.defaultInterpreter": { "type": "string",