Skip to content

Commit

Permalink
up for 9.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
franneck94 committed Jan 3, 2024
1 parent e2ad391 commit afd122b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# C/C++ Runner Change Log

## Planned
## Version 9.4.2: Jan 03, 2024

- **TODO**: Upcomming feature: open the generated assembler file to the side
- **Info**: Tried to fix infinite loop of settings.json update

## Version 9.4.1: Jan 02, 2024

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "c-cpp-runner",
"displayName": "C/C++ Runner",
"description": "🚀 Compile, run and debug single or multiple C/C++ files with ease. 🚀",
"version": "9.4.1",
"version": "9.4.2",
"publisher": "franneck94",
"license": "MIT",
"icon": "icon.png",
Expand Down
3 changes: 1 addition & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ function initConfigurationChangeDisposable() {
return;
}

settingsProvider?.updateFileContent();
propertiesProvider?.updateFileContent();
launchProvider?.updateFileContent();
}
Expand Down Expand Up @@ -431,7 +430,7 @@ function updateFolderData() {
if (launchProvider) {
launchProvider.updateFolderData(workspaceFolder, activeFolder);
launchProvider.updateModeData(buildMode);
launchProvider?.updateArgumentsData(argumentsString);
launchProvider.updateArgumentsData(argumentsString);
launchProvider.updateFileContent();
}
}
Expand Down
1 change: 0 additions & 1 deletion src/provider/launchProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export class LaunchProvider extends FileProvider {
const launchTemplate: JsonLaunchConfig | undefined = readJsonFile(
this.templatePath,
);

if (!launchTemplate) return;

const is_windows =
Expand Down

0 comments on commit afd122b

Please sign in to comment.