master
Thorsten Muerell 7 years ago
parent ae2dfe3db1
commit cd25b6a0f7

@ -2,6 +2,10 @@
All notable changes to the "frog" extension will be documented in this file.
## 0.0.22
- Bugfixes
## 0.0.21
- Added icon

@ -2,7 +2,7 @@
"name": "frog",
"displayName": "Frog",
"description": "The Oracle SQL workbench for VSCode",
"version": "0.0.21",
"version": "0.0.22",
"publisher": "tmuerell",
"engines": {
"vscode": "^1.17.0"

@ -59,6 +59,10 @@ export class SessionManager {
return false;
}
if (this.dbSession) {
return true;
}
let extPath = vscode.extensions.getExtension("tmuerell.frog").extensionPath;
const configuration = vscode.workspace.getConfiguration('frog')
const javaHome = configuration.get("javaHome", "")

Loading…
Cancel
Save