Version bump

master
Thorsten Muerell 7 years ago
parent 8a1f942298
commit 4acb140b25

@ -1,6 +1,11 @@
# Change Log # Change Log
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.19
- Maintenance release
## 0.0.18 ## 0.0.18
- Fixed bug with endless loop - Fixed bug with endless loop

@ -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.18", "version": "0.0.19",
"publisher": "tmuerell", "publisher": "tmuerell",
"engines": { "engines": {
"vscode": "^1.17.0" "vscode": "^1.17.0"

@ -117,7 +117,7 @@ export class SessionManager {
} }
this.diagnosticCollection.set(document.uri, diagnostics); this.diagnosticCollection.set(document.uri, diagnostics);
this.outputChannel.append("-- " + new Date() + " -------------------------------\n"); this.outputChannel.append("-- end@" + this.currentConnection.name + " " + new Date() + " -------------------------------\n");
outputBuffer = ""; outputBuffer = "";
this.statusBarItem.text = this.currentConnection.name + " (Connected)"; this.statusBarItem.text = this.currentConnection.name + " (Connected)";
} catch (e) { } catch (e) {
@ -142,7 +142,7 @@ export class SessionManager {
public execute(text : string, rowLimit : number) { public execute(text : string, rowLimit : number) {
if (!this.check()) return; if (!this.check()) return;
this.outputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n"); this.outputChannel.append("-- begin@" + this.currentConnection.name + " " + new Date() + " -------------------------------\n");
let input = { "sql": text, "rowLimit": rowLimit }; let input = { "sql": text, "rowLimit": rowLimit };
this.dbSession.stdin.write(JSON.stringify(input) + "\n--- END ---\n"); this.dbSession.stdin.write(JSON.stringify(input) + "\n--- END ---\n");
this.statusBarItem.text = this.currentConnection.name + " (Connected, Query running...)"; this.statusBarItem.text = this.currentConnection.name + " (Connected, Query running...)";

Loading…
Cancel
Save