Skip to content

Commit

Permalink
kie-issues#1690: Apache KIE trademark character missing on Extended S…
Browse files Browse the repository at this point in the history
…ervices VS Code Extension's name (#2810)
  • Loading branch information
tiagobento authored Dec 16, 2024
1 parent ed78bdb commit 5527e78
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/extended-services-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<groupId>org.kie.tools</groupId>
<artifactId>extended-services-java</artifactId>

<name>KIE Tools :: KIE Sandbox :: Extended Services Quarkus app</name>
<name>KIE Tools :: Extended Services Quarkus app</name>
<description
>Quarkus-based application that wraps Kogito JIT Executor for consumption as a KIE Sandbox backend.</description>

Expand Down
12 changes: 6 additions & 6 deletions packages/extended-services-vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"engines": {
"vscode": "^1.67.0"
},
"displayName": "Apache KIE Extended Services",
"displayName": "Apache KIE Extended Services",
"categories": [
"Other"
],
Expand All @@ -62,13 +62,13 @@
{
"category": "Extended-Services",
"command": "extended-services-vscode-extension.startExtendedServices",
"title": "Connect Apache KIE Extended-Services",
"title": "Connect Apache KIE Extended Services",
"when": "extended-services-vscode-extension.connected"
},
{
"category": "Extended-Services",
"command": "extended-services-vscode-extension.stopExtendedServices",
"title": "Disconnect Apache KIE Extended-Services"
"title": "Disconnect Apache KIE Extended Services"
}
],
"configuration": {
Expand All @@ -94,22 +94,22 @@
"type": "string"
}
},
"title": "Apache KIE Extended Services"
"title": "Apache KIE Extended Services"
},
"icons": {
"extended-services-connected": {
"default": {
"fontCharacter": "\\E000",
"fontPath": "./static/extended-services-font.woff"
},
"description": "Connected to the Apache KIE Extended-Services"
"description": "Connected to the Apache KIE Extended Services"
},
"extended-services-disconnected": {
"default": {
"fontCharacter": "\\E001",
"fontPath": "./static/extended-services-font.woff"
},
"description": "Apache KIE Extended-Services are Disconnected"
"description": "Apache KIE Extended Services are Disconnected"
}
},
"languages": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import * as validationRequests from "./requests/ValidationRequests";
import * as validationResponse from "./requests/ValidationResponse";
import * as vscode from "vscode";

const source: string = "Apache KIE Extended Services";
const source: string = "Apache KIE Extended Services";

function createBPMNDiagnostics(validationResponses: validationResponse.BPMNValidationResponse[]): vscode.Diagnostic[] {
return validationResponses.map((validationResponse) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function fetchConnectionHeartbeatIntervalinSecs(): number {
function fetchExtendedServicesURL(): URL {
const extendedServicesURL = vscode.workspace.getConfiguration().get<string>(extendedServicesURLID);
if (!extendedServicesURL) {
throw new Error("Extended Services URL configuration not found");
throw new Error("URL configuration not found");
}

try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function initializeVSCodeElements() {

statusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 100);
statusBarItem.text = "$(extended-services-disconnected)";
statusBarItem.tooltip = "Apache KIE Extended Services are not connected. \n" + "Click to connect.";
statusBarItem.tooltip = "Apache KIE Extended Services is not connected. \n" + "Click to connect.";
statusBarItem.command = startExtendedServicesCommandUID;
statusBarItem.hide();

Expand Down Expand Up @@ -171,7 +171,7 @@ export function activate(context: vscode.ExtensionContext) {
if (configuration) {
validate(configuration);
statusBarItem.text = "$(extended-services-connected)";
statusBarItem.tooltip = "Apache KIE Extended Services are connected. Click to disconnect.";
statusBarItem.tooltip = "Apache KIE Extended Services is connected. Click to disconnect.";
statusBarItem.command = stopExtendedServicesCommandUID;
}
});
Expand All @@ -184,7 +184,7 @@ export function activate(context: vscode.ExtensionContext) {
connection.subscribeDisconnected(() => {
vscode.commands.executeCommand("setContext", connectedEnablementUID, false);
statusBarItem.text = "$(extended-services-disconnected)";
statusBarItem.tooltip = "Apache KIE Extended Services are not connected. Click to connect.";
statusBarItem.tooltip = "Apache KIE Extended Services is not connected. Click to connect.";
statusBarItem.command = startExtendedServicesCommandUID;
diagnosticCollection.clear();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export function activate(context: vscode.ExtensionContext) {
if (configuration) {
validate(configuration);
statusBarItem.text = "$(extended-services-connected)";
statusBarItem.tooltip = "Apache KIE Extended Services are connected. Click to disconnect.";
statusBarItem.tooltip = "Apache KIE Extended Services are connected. Click to disconnect.";
statusBarItem.command = stopExtendedServicesCommandUID;
}
});
Expand All @@ -230,7 +230,7 @@ export function activate(context: vscode.ExtensionContext) {
connection.subscribeDisconnected(() => {
vscode.commands.executeCommand("setContext", connectedEnablementUID, false);
statusBarItem.text = "$(extended-services-disconnected)";
statusBarItem.tooltip = "Apache KIE Extended Services are not connected. Click to connect.";
statusBarItem.tooltip = "Apache KIE Extended Services are not connected. Click to connect.";
statusBarItem.command = startExtendedServicesCommandUID;
diagnosticCollection.clear();
});
Expand Down

0 comments on commit 5527e78

Please sign in to comment.