Skip to content

Commit

Permalink
Fix typo and update README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
RaoulSchaffranek committed Jan 13, 2025
1 parent fa9f0b6 commit 1753732
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 51 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the "Simbolik VSCode" extension will be documented in this file.

## [5.0.0] - 2025-01-13

- Simbolik only recompiles the contracts if the source code has changed

## [4.1.0] - 2024-12-19

- The web version now offers experimental support for debugging transactions from BuildBear sandboxes.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Visit our Documentation: https://docs.runtimeverification.com/simbolik
Join our Discord: https://discord.gg/jnvEeDxW
Join our TG group: https://t.me/rv_simbolik

<img src="https://github.com/runtimeverification/simbolik-vscode/raw/master/images/simbolik-screenshot-1.png?raw=true" width="800" />

## Features

- **Step-by-step debugging**: Debug your Solidity smart contracts line by line.
Expand Down
Binary file added images/simbolik-screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
105 changes: 59 additions & 46 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"publisher": "runtimeverification",
"description": "Advanced Solidity and EVM Debugger",
"version": "4.1.0",
"version": "5.0.0",
"engines": {
"vscode": "^1.79.0"
},
Expand Down
8 changes: 4 additions & 4 deletions src/startDebugging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { WorkspaceWatcher } from './WorkspaceWatcher';
export async function startDebugging(
contract: ContractDefinition,
method: FunctionDefinition,
worksapceWatcher: WorkspaceWatcher
workspaceWatcher: WorkspaceWatcher
) {
return await vscode.window.withProgress({
location: vscode.ProgressLocation.Notification,
Expand Down Expand Up @@ -66,13 +66,13 @@ export async function startDebugging(
// Auto build if needed
// Notice, that if autobuild is set to 'on-change' and the project is not built, the project will be built
// This case is handled after this block
if (autobuild == 'always' || (autobuild == 'on-change' && worksapceWatcher.hasChanges())) {
if (autobuild == 'always' || (autobuild == 'on-change' && workspaceWatcher.hasChanges())) {
progress.report({ message: "Compiling" });
const build = forgeBuildTask(activeTextEditor.document.uri);
const buildExecution = await vscode.tasks.executeTask(build);
try {
await completed(buildExecution);
worksapceWatcher.reset();
workspaceWatcher.reset();
} catch (e) {
vscode.window.showErrorMessage('Failed to build project.');
return;
Expand All @@ -92,7 +92,7 @@ export async function startDebugging(
const buildExecution = await vscode.tasks.executeTask(build);
try {
await completed(buildExecution);
worksapceWatcher.reset();
workspaceWatcher.reset();
buildInfo = await loadBuildInfo(activeTextEditor.document.uri);
} catch (e) {
vscode.window.showErrorMessage('Failed to build project.');
Expand Down

0 comments on commit 1753732

Please sign in to comment.