From 131e954aa91cccab400f6c69f1609801e44514c9 Mon Sep 17 00:00:00 2001 From: Sergei Voronezhskii Date: Mon, 30 May 2022 12:04:05 +0300 Subject: [PATCH] Version 1.2.1 --- CHANGELOG.md | 11 +++++++++++ package.json | 8 ++++---- src/extension.ts | 4 ++-- src/prepare_package.ts | 2 +- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d0d2c9..4019a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 1521cef..7e87aa9 100644 --- a/package.json +++ b/package.json @@ -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": [ @@ -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", @@ -458,4 +458,4 @@ "typescript": "^4.1.2", "vscode-test": "^1.4.1" } -} \ No newline at end of file +} diff --git a/src/extension.ts b/src/extension.ts index 07f1605..b1c7d15 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -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 }; diff --git a/src/prepare_package.ts b/src/prepare_package.ts index 3eb6bf2..fe70a54 100644 --- a/src/prepare_package.ts +++ b/src/prepare_package.ts @@ -61,7 +61,7 @@ function downloadAndGunzip(dest: string, url: string): Promise { }); } -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... `);