From 1665a7eb976238d6205a7528ce79cf6f09af9d55 Mon Sep 17 00:00:00 2001 From: HJfod <60038575+HJfod@users.noreply.github.com> Date: Thu, 19 Dec 2024 11:42:37 +0200 Subject: [PATCH] add blocky trigger indicator lines option --- mod.json | 12 ++++-- swipe-vscode/package.json | 83 ++++++++++++++++++++++----------------- 2 files changed, 56 insertions(+), 39 deletions(-) diff --git a/mod.json b/mod.json index 96fcd56b..98141c83 100644 --- a/mod.json +++ b/mod.json @@ -1,5 +1,5 @@ { - "geode": "4.0.1", + "geode": "4.1.0", "version": "6.10.0-alpha.3", "gd": { "win": "2.2074", @@ -211,15 +211,21 @@ "type": "string", "one-of": ["None", "Selected Only", "All"], "default": "Selected Only", - "name": "Dynamic Trigger Indicator Colors", + "name": "Trigger Indicators: Dynamic Colors", "description": "Control whether Trigger Indicators should be colored based on the trigger, or if they should just be white" }, "trigger-indicators-color-objects": { "type": "bool", "default": false, - "name": "Trigger Indicator Color Selection", + "name": "Trigger Indicators: Color Selection", "description": "Control whether Trigger Indicators should also color the target objects, or only point to them via the line" }, + "trigger-indicators-blocky": { + "type": "bool", + "default": true, + "name": "Trigger Indicators: Blocky Lines", + "description": "Control whether Trigger Indicators should draw a direct line to the target objects, or a blocky line that only takes 90-degree turns" + }, "wip-section": { "type": "title", "name": "WIP Features", diff --git a/swipe-vscode/package.json b/swipe-vscode/package.json index c1fc6744..b83600e5 100644 --- a/swipe-vscode/package.json +++ b/swipe-vscode/package.json @@ -1,37 +1,48 @@ -{ - "name": "swipelang-support", - "displayName": "Swipe Language Support", - "description": "Support for the Swipe language for scripting in BetterEdit", - "author": { - "name": "HJfod", - "url": "https://github.com/hjfod" - }, - "repository": { - "url": "https://github.com/hjfod/BetterEdit" - }, - "publisher": "HJfod", - "version": "0.0.1", - "engines": { - "vscode": "^1.67.0" - }, - "categories": [ - "Programming Languages" - ], - "contributes": { - "languages": [{ - "id": "swipe", - "aliases": ["Swipe"], - "extensions": [".swipe"], - "configuration": "./language-configuration.json", - "icon": { - "dark": "./swipe.png", - "light": "./swipe.png" - } - }], - "grammars": [{ - "language": "swipe", - "scopeName": "source.swipe", - "path": "./syntaxes/swipe.tmLanguage.json" - }] - } +{ + "name": "swipelang-support", + "displayName": "Swipe Language Support", + "description": "Support for the Swipe language for scripting in BetterEdit", + "author": { + "name": "HJfod", + "url": "https://github.com/hjfod" + }, + "repository": { + "url": "https://github.com/hjfod/BetterEdit" + }, + "publisher": "HJfod", + "version": "0.0.1", + "engines": { + "vscode": "^1.67.0" + }, + "categories": [ + "Programming Languages" + ], + "contributes": { + "languages": [ + { + "id": "swipe", + "aliases": [ + "Swipe" + ], + "extensions": [ + ".swipe" + ], + "configuration": "./language-configuration.json", + "icon": { + "dark": "./swipe.png", + "light": "./swipe.png" + } + } + ], + "grammars": [ + { + "language": "swipe", + "scopeName": "source.swipe", + "path": "./syntaxes/swipe.tmLanguage.json" + } + ] + }, + "__metadata": { + "size": 120463 + } } \ No newline at end of file