From 62c727eb651b17fb84b4e919aa40d5c8ebadc830 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 4 Sep 2024 11:49:46 +0000 Subject: [PATCH] chore(release): 1.12.0 [skip ci] # [1.12.0](https://github.com/dev-cycles/contextive/compare/v1.11.1...v1.12.0) (2024-09-04) ### Bug Fixes * **intellij:** Add support for 2042.2 series of intellij platform ([08308bf](https://github.com/dev-cycles/contextive/commit/08308bff2056fd1af764d88649de7fe90b8516b1)) ### Features * **language-server:** Add support for LSP Clients that only support rootUri and not workspaces (e.g. Visual Studio) ([7fe11b3](https://github.com/dev-cycles/contextive/commit/7fe11b3831d6f8b8f86d1d10817c7ba50a0163c0)) * **language-server:** Add yaml schema for definitions file ([#74](https://github.com/dev-cycles/contextive/issues/74)) ([65ec44a](https://github.com/dev-cycles/contextive/commit/65ec44a16de20357b69d1662cfc70521298287da)) * **language-server:** Only use 'window/showMessage' if it is supported by the LanguageClient (e.g. Visual Studio does not support it) ([965cb30](https://github.com/dev-cycles/contextive/commit/965cb30539ea05357dfd6cdf4e2bb44406d8a16c)) * **language-server:** validate definitions file for missing term names ([0fb0978](https://github.com/dev-cycles/contextive/commit/0fb0978640f594843d1f8ff25959ea3d0bf729ae)) * **visual-studio:** Add Visual Studio integration ([b052a82](https://github.com/dev-cycles/contextive/commit/b052a82df7df39d518760f8dfcae84771505262f)), closes [#28](https://github.com/dev-cycles/contextive/issues/28) * **vscode:** Publish to Open-Vsx Marketplace (closes [#80](https://github.com/dev-cycles/contextive/issues/80)) ([2d23775](https://github.com/dev-cycles/contextive/commit/2d23775c6c99468319fdf68d7bad2b1997fad883)) --- src/intellij/contextive/build.gradle.kts | 2 +- .../src/main/resources/META-INF/plugin.xml | 40 +++++++++++++------ .../Contextive.LanguageServer.fsproj | 2 +- .../contextive/ContextiveExtension.cs | 2 +- .../contextive/contextive/README.md | 26 ++++++------ .../contextive/contextive/contextive.csproj | 2 +- src/vscode/contextive/CHANGELOG.md | 17 ++++++++ src/vscode/contextive/package-lock.json | 4 +- src/vscode/contextive/package.json | 2 +- 9 files changed, 64 insertions(+), 33 deletions(-) diff --git a/src/intellij/contextive/build.gradle.kts b/src/intellij/contextive/build.gradle.kts index a19d49a..903ce10 100644 --- a/src/intellij/contextive/build.gradle.kts +++ b/src/intellij/contextive/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "tech.contextive" -version = "1.11.1" +version = "1.12.0" repositories { mavenCentral() diff --git a/src/intellij/contextive/src/main/resources/META-INF/plugin.xml b/src/intellij/contextive/src/main/resources/META-INF/plugin.xml index 2515faa..a44fb4e 100644 --- a/src/intellij/contextive/src/main/resources/META-INF/plugin.xml +++ b/src/intellij/contextive/src/main/resources/META-INF/plugin.xml @@ -22,10 +22,10 @@ This plugin is considered 'beta' status, as leverages relatively new known issues below

Installation

-

See IntelliJ IDEs (e.g. IDEA) Installation Instructions.

+

See IntelliJ IDEs (e.g. IDEA) Installation Instructions.

Getting Started

Create a folder in your project root called .contextive. Create a file in that folder called definitions.yml.

-

Start defining your definitions following the schema specified in our usage guide. You might like to start by copying our default definitions file that defines the terms used in the definitions file itself.

+

Start defining your definitions following the schema specified in our usage guide. You might like to start by copying our default definitions file that defines the terms used in the definitions file itself.

Supported IDEs

The plugin uses the IntelliJ Language Server Protocol support, so it's only available in the IDEs where that feature is offered. See the JetBrains LSP Documentation for the latest list.

At time of writing, it includes:

@@ -44,10 +44,10 @@ This plugin is considered 'beta' status, as leverages relatively new usage guide for details on the definitions file format and available options.

+

See our usage guide for details on the definitions file format and available options.

Features