Skip to content

Commit

Permalink
several small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MTadder committed Oct 1, 2024
1 parent 575c175 commit 9fbb241
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ for compiling any currently open `yue` script, and/or project.
> Help out by reporting any issues to the [Github](https://github.com/MTadder/YueRunner)
- If _you try to use `LÖVE2D` without it being installed_, an error will occur.
- If _you change your default shell profile_ while a `yue` script is open, the status bar button will disappear, **until you reopen the tab**.

---

Expand Down
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "YueRunner",
"description": "simple in-editor Yuescript assistant",
"publisher": "MTLabs",
"version": "0.2.0",
"version": "0.2.1",
"icon": "logo.png",
"repository": {
"type": "git",
Expand Down Expand Up @@ -44,7 +44,7 @@
},
"yuescriptrunner.reserveComments": {
"title": "Keep Comments?",
"description": "Reserve comments before statements?",
"description": "Preserve comments that come before statements?",
"type": "boolean",
"default": false
},
Expand Down Expand Up @@ -79,24 +79,28 @@
"default": true
},
"yuescriptrunner.matchLineNumbers": {
"title": "Match Line Numbers?",
"description": "Rewrite output to match line numbers?",
"type": "boolean",
"default": false
},
"yuescriptrunner.iconOnly": {
"title": "Icon Only?",
"description": "Only show the icon on the button?",
"type": "boolean",
"default": false
},
"yuescriptrunner.loveExecutable": {
"title": "LÖVE Executable",
"description": "LÖVE executable to use.",
"enum": [
"love", "lovec"
],
"type": "string",
"default": "lovec",
"description": "LÖVE executable to use."
"default": "lovec"
},
"yuescriptrunner.defaultAction": {
"title": "Default Action",
"description": "Default action displayed on the status bar.",
"enum": [
"Compile", "Compile all", "Run", "Compile all and Run LÖVE"
Expand All @@ -105,6 +109,7 @@
"default": "Run"
},
"yuescriptrunner.targetLuaVersion": {
"title": "Lua Version",
"description": "Lua version the compiler will target.",
"enum": [
"5.1", "5.2", "5.3", "5.4"
Expand Down

0 comments on commit 9fbb241

Please sign in to comment.