Skip to content

Commit

Permalink
Release 0.3.2 changelog; more descriptions for settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AsriFox committed Dec 26, 2023
1 parent 156c708 commit 5ae6bc2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 5ae6bc2

Please sign in to comment.