From 2aaf298d4a9e026441bc1c21420e88f460a446fa Mon Sep 17 00:00:00 2001
From: PauliusKu
Date: Thu, 3 Aug 2023 16:29:45 +0300
Subject: [PATCH 1/2] setup
---
resources/markdown/setup.md | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/resources/markdown/setup.md b/resources/markdown/setup.md
index 281daa2a..dd26c33a 100644
--- a/resources/markdown/setup.md
+++ b/resources/markdown/setup.md
@@ -18,18 +18,15 @@ $ ext install BalticAmadeus.pro-bro
## Setup
-Currently, to set up DLC and other variables and custom parameters you need to make changes inside ProBro scripts.
+By default DLC is taken from ```abl.configuration.runtimes``` parameter which is default setting for ABL extensions.
+Alternatively, you can setup necessary environment variables in launch script.
-We'll definitely improve this process with future releases.
-
-### For Linux
+### Launch script for Linux
```
/home//.vscode/extensions/balticamadeus.pro-bro-/resources/oe/scripts/oe.sh
```
-Also, change ```oe.sh``` file permissions to make it executable.
-
-### For Windows
+### Launch script for Windows
```
C:\Users\\.vscode\extensions\balticamadeus.pro-bro-\resources\oe\scripts\oe.bat
```
\ No newline at end of file
From 8274ac4ac3a56362105ea8b135d785daef83f323 Mon Sep 17 00:00:00 2001
From: PauliusKu
Date: Thu, 3 Aug 2023 16:42:24 +0300
Subject: [PATCH 2/2] release prep
---
CHANGELOG.md | 15 ++++++++++++++-
README.md | 7 +++++--
package.json | 2 +-
src/view/app/Connection/connectionForm.tsx | 1 -
src/view/app/Fields/fields.tsx | 1 -
5 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe5f89ab..87d7ce86 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,20 @@
# Change Log
+
+## 1.4.0 (2023-08-03)
+### Changed
+- Fixed various small bugs
+
+### Added
+- Default DLC import from ```settings.json```
+- Default Databases import from ```openedge-project.json```
+- Shortcuts to OE tools (for Windows)
+- Possibility to enable/disable triggers
+
## 1.3.2 HF (2023-06-30)
### Changed
- Fixed socket server crash on linux
+
## 1.3.1 (2023-06-29)
### Changed
@@ -14,7 +26,6 @@
- Development process improvements
## 1.3.0 (2023-06-20)
-
### Changed
- Fixed deleting connections
- Fixed various small bugs
@@ -23,6 +34,8 @@
- Field name suggestions
- Create a copy of record
- Possibility to have multiple vs code instances
+
+
## 1.2.2 (2023-03-03)
### Changed
- Fixed issue with writing socket data
diff --git a/README.md b/README.md
index cf2df623..9bc2aa30 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,8 @@ This open source project is in active development. Our goal is to simplify the a
- Deleting Connections
- Edit Connections
- Connection status indicator
+ - Shortcuts to OE tools (*new*)
+ - Default import from ```openedge-project.json``` (*new*)
- Tables
- Hidden tables
- Launch query
@@ -27,7 +29,7 @@ This open source project is in active development. Our goal is to simplify the a
- Lazy loading
- JSON/OE formatting
- Custom queries
- - Suggest field names (*new*)
+ - Suggest field names
- View record on double-click
- Export
- Formats
@@ -41,8 +43,9 @@ This open source project is in active development. Our goal is to simplify the a
- Filtered records
- CRUD operations
- Delete multiple
- - Insert/copy (*new*)
+ - Insert/copy
- Update
+ - Disable/enable triggers (*new*)
- Extension settings configuration
- Supported OS
- Windows
diff --git a/package.json b/package.json
index edf25dea..24bf7e87 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"DB",
"Explorer"
],
- "version": "1.3.2",
+ "version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/BalticAmadeus/ProBro"
diff --git a/src/view/app/Connection/connectionForm.tsx b/src/view/app/Connection/connectionForm.tsx
index 186f9f96..bacb4ebd 100644
--- a/src/view/app/Connection/connectionForm.tsx
+++ b/src/view/app/Connection/connectionForm.tsx
@@ -1,4 +1,3 @@
-import * as vscode from "vscode";
import * as React from "react";
import { CommandAction, ICommand, IConfig } from "../model";
import { ProBroButton } from "../assets/button";
diff --git a/src/view/app/Fields/fields.tsx b/src/view/app/Fields/fields.tsx
index 6da6557e..025a94f2 100644
--- a/src/view/app/Fields/fields.tsx
+++ b/src/view/app/Fields/fields.tsx
@@ -8,7 +8,6 @@ import { Logger } from "../../../common/Logger";
import * as columnName from "./column.json";
import { ISettings } from "../../../common/IExtensionSettings";
-import { ProBroButton } from "../assets/button";
interface IConfigProps {
vscode: any;