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/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 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;