Skip to content

Commit

Permalink
Merge pull request #352 from usethesource/new-rascal-logo
Browse files Browse the repository at this point in the history
Upgraded to updated rascal logo
  • Loading branch information
DavyLandman authored Feb 6, 2024
2 parents 96ece8c + 52e9839 commit 3051c6b
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 22 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions rascal-vscode-extension/assets/images/rascal-logo-v2.1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
17 changes: 0 additions & 17 deletions rascal-vscode-extension/assets/images/rascal-logo.svg

This file was deleted.

12 changes: 8 additions & 4 deletions rascal-vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
"parsing",
"source code analysis"
],
"icon": "assets/images/rascal-logo.png",
"icon": "assets/images/rascal-logo-v2.1.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"version": "0.10.3-head",
"engines": {
"vscode": "^1.75.0"
Expand Down Expand Up @@ -54,8 +58,8 @@
".rsc"
],
"icon": {
"light": "./assets/images/rascal-logo.svg",
"dark": "./assets/images/rascal-logo.svg"
"light": "./assets/images/rascal-logo-v2.1.svg",
"dark": "./assets/images/rascal-logo-v2.1.svg"
},
"configuration": "./language-configuration.json"
},
Expand All @@ -81,7 +85,7 @@
{
"id": "rascalmpl-configuration-view",
"name": "Rascal Configuration",
"icon": "./assets/images/rascal-logo.svg",
"icon": "./assets/images/rascal-logo-v2.1.svg",
"visibility": "collapsed"
}
]
Expand Down
2 changes: 1 addition & 1 deletion rascal-vscode-extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const deployMode = (process.env.RASCAL_LSP_DEV || "false") !== "true";

export function activate(context: vscode.ExtensionContext) {
const jars = context.asAbsolutePath(path.join('.', 'assets', 'jars'));
const icon = vscode.Uri.joinPath(context.extensionUri, "assets", "images", "rascal-logo.svg");
const icon = vscode.Uri.joinPath(context.extensionUri, "assets", "images", "rascal-logo-v2.1.svg");
const extension = new RascalExtension(context, jars, icon, (deployMode || testDeployMode));
context.subscriptions.push(extension);
context.subscriptions.push(new RascalMFValidator());
Expand Down

0 comments on commit 3051c6b

Please sign in to comment.