Skip to content

Commit

Permalink
Version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei Voronezhskii committed May 31, 2022
1 parent 3ad6b39 commit 131e954
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All the notable changes to the "TONDEV" VS Code extension will be documented in this file.

## [1.2.1] - 2022-05-30
### New
- Add new option `--type` to the `everdev network giver` command.

### Improved
- For "everdev sol compile" and "everdev clang compile" commands, you can specify a variable number of input files.

### Fixed
- Updated Ever OS Cloud endpoints.
- Updated the C++ contract example for use with the latest (7.7.35) clang compiler.

## [1.1.1] - 2022-02-11
### Fixed
- An error "TON Client binary bridge is not set" that occurred when using `js wrap` command as a module
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "EverDev",
"description": "Everscale Dev Environemnt",
"publisher": "TONLabs",
"version": "1.1.1",
"version": "1.2.1",
"author": "TON DEV SOLUTIONS LTD.",
"license": "Apache-2.0",
"licenses": [
Expand Down Expand Up @@ -442,8 +442,8 @@
},
"dependencies": {
"everdev": "^1",
"@tonclient/core": "^1",
"@tonclient/lib-node": "^1"
"@eversdk/core": "^1",
"@eversdk/lib-node": "^1"
},
"devDependencies": {
"@types/glob": "^7.1.3",
Expand All @@ -458,4 +458,4 @@
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
}
}
}
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { Command, CommandArg, Terminal } from "everdev";
import * as vscode from "vscode";
import * as fs from "fs";
import * as path from "path";
import { TonClient } from "@tonclient/core";
import { libNode } from "@tonclient/lib-node";
import { TonClient } from "@eversdk/core";
import { libNode } from "@eversdk/lib-node";
TonClient.useBinaryLibrary(libNode);

type OutputTerminal = Terminal & { output: vscode.OutputChannel };
Expand Down
2 changes: 1 addition & 1 deletion src/prepare_package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function downloadAndGunzip(dest: string, url: string): Promise<void> {
});
}

const libNodePath = path.resolve(__dirname, "..", "node_modules", "@tonclient", "lib-node");
const libNodePath = path.resolve(__dirname, "..", "node_modules", "@eversdk", "lib-node");

async function downloadTonClient(platform: string, arch: string) {
process.stdout.write(`Downloading tonclient.${platform}.${arch}.node... `);
Expand Down

0 comments on commit 131e954

Please sign in to comment.