diff --git a/CHANGELOG.md b/CHANGELOG.md index d4653c7..c664c85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ # Change Log All notable changes to the "frog" extension will be documented in this file. -Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## 0.0.18 -## [Unreleased] -- Initial release \ No newline at end of file +- Fixed bug with endless loop diff --git a/package.json b/package.json index 5f399e7..0a56f5e 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "frog", - "displayName": "frog", + "displayName": "Frog", "description": "The Oracle SQL workbench for VSCode", - "version": "0.0.17", - "publisher": "todie", + "version": "0.0.18", + "publisher": "tmuerell", "engines": { "vscode": "^1.17.0" }, diff --git a/src/sessionmanager.ts b/src/sessionmanager.ts index 759937e..986d105 100644 --- a/src/sessionmanager.ts +++ b/src/sessionmanager.ts @@ -59,7 +59,7 @@ export class SessionManager { return false; } - let extPath = vscode.extensions.getExtension("todie.frog").extensionPath; + let extPath = vscode.extensions.getExtension("tmuerell.frog").extensionPath; const configuration = vscode.workspace.getConfiguration('frog') const javaHome = configuration.get("javaHome", "") let java = "java";