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. All notable changes to the "frog" extension will be documented in this file.
## 0.0.22
- Bugfixes
## 0.0.21 ## 0.0.21
- Added icon - Added icon

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

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

Loading…
Cancel
Save