Skip to content

version 2024.2.0 deployment #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.2.13

- Updated extension name

## 0.2.12

- Added support for possible localization
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Environment Configurator for Intel® oneAPI Toolkits
# Environment Configurator for Intel Software Developer Tools

#### [Repository](https://github.com/intel/vscode-environment-and-launch-configurator) | [Issues](https://github.com/intel/vscode-environment-and-launch-configurator/issues) | [Documentation](https://www.intel.com/content/www/us/en/develop/documentation/using-vs-code-with-intel-oneapi/top/local-host-top/local-host.html#developing-a-visual-studio-code-project_configure-the-oneapi-environment) | [Code Samples](https://github.com/oneapi-src/oneAPI-samples)
***
Expand All @@ -25,7 +25,7 @@ Previously created terminals contain only the environment in which they were cre
You can specify the direct path to the oneAPI install directory in order to avoid searching for the environment every time the environment is initialized.

1. Press `Ctrl+, (or File -> Preferences -> Settings)` to open the Settings.
2. On the left side of the Settings window, select `Extensions>Environment Configurator for Intel® oneAPI Toolkits`.
2. On the left side of the Settings window, select `Extensions>Environment Configurator for Intel Software Developer Tools`.
3. In the "ONEAPI_ROOT" field, specify the path to the installation directory of the oneAPI toolkit.

## Using setvars_config files for oneAPI Environment
Expand All @@ -35,7 +35,7 @@ Due to changes in directory layout, 2024.0 version of Intel® oneAPI Toolkits in

For this you need:
1. Press `Ctrl+, ( or File -> Preferences -> Settings )` to open the Settings.
2. On the left side of the Settings window, select `Extensions>Environment Configurator for Intel® oneAPI Toolkits`.
2. On the left side of the Settings window, select `Extensions>Environment Configurator for Intel Software Developer Tools`.
3. In the `SETVARS_CONFIG` area, click `Add Item` and provide the path to your setvars configuration file.
4. Press `Ctrl+Shift+P` to open the Command Palette. `Type oneAPI` and select `Intel oneAPI: Initialize custom environment variables using SETVARS_CONFIG`.
5. To switch the environment, click `Intel oneAPI: Switch environment` and select the configuration file that the environment is associated with.
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "oneapi-environment-configurator",
"displayName": "Environment Configurator for Intel® oneAPI Toolkits",
"displayName": "Environment Configurator for Intel Software Developer Tools",
"description": "Configure environment for working with Intel® oneAPI Toolkits",
"version": "0.2.12",
"version": "0.2.13",
"license": "MIT",
"icon": "media/oneapi-logo.png",
"publisher": "intel-corporation",
Expand All @@ -19,7 +19,7 @@
"contributes": {
"configuration": [
{
"title": "Environment Configurator for Intel® oneAPI Toolkits",
"title": "Environment Configurator for Intel Software Developer Tools",
"properties": {
"intel-corporation.oneapi-environment-configurator.ONEAPI_ROOT": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ export function activate(context: vscode.ExtensionContext): void {
}

export function deactivate(): void {
console.log('Environment Configurator for Intel oneAPI Toolkits: Goodbye');
console.log('Environment Configurator for Intel Software Developer Tools: Goodbye');
}
2 changes: 1 addition & 1 deletion src/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
deprVersion: (deprExtName: string, actualExtName: string) => { return `${deprExtName} is a deprecated version of the ${actualExtName}. This may lead to the unavailability of overlapping functions.`; },
notChangeEnv: 'Do not change the environment.',
alternateEnv: 'Alternate environment is not available. Open settings and search for SETVARS_CONFIG to specify the path to your custom configuration file.',
failedToActivate: 'Failed to activate the \'Environment Configurator for Intel oneAPI Toolkits\' extension. The extension is only supported on Linux and Windows.',
failedToActivate: 'Failed to activate the \'Environment Configurator for Intel Software Developer Tools\' extension. The extension is only supported on Linux and Windows.',
failedToCheckPwsh: 'Failed to determine powershell version. The environment will not be set.',
autoEnvScriptSearch: (envScriptName: string) => { return `Try to find ${envScriptName} automatically.`; },
customConfigFile: 'No setvars_config files are specified in the settings. Open settings and search for SETVARS_CONFIG to specify the path to your custom configuration file.',
Expand Down