updated to v1.7

This commit is contained in:
Dan Remollino
2023-03-24 01:25:15 -04:00
parent 98cb2a5f96
commit c423ee1ee0
4 changed files with 45 additions and 7 deletions

View File

@ -3,14 +3,14 @@
"name": "FIGlet Text",
"organization": "Dan Remollino",
"description": "Convert selected text to FIGlet. Great for adding readable text to the Minimap, creating l33t text headers, and organizing files.",
"version": "1.6.4",
"version": "1.7",
"categories": ["commands", "formatters"],
"entitlements": {
"clipboard": false,
"process": true,
"requests": false,
"filesystem": false
"filesystem": "readwrite"
},
"main": "main.js",
@ -25,7 +25,6 @@
"key": "figlet_text.font",
"title": "Font",
"description": "The FIGlet font to use when converting text.",
"link": "http://www.figlet.org/examples.html",
"type": "enum",
"radio": false,
"values": [
@ -190,7 +189,7 @@
{
"key": "figlet_text.preview",
"title": "Preview",
"description": "Admittedly, this isn't the ideal preview as Nova uses a non-monospaced font for the Preview textbox above. Use the (?) link in the Font selection preference above to open the FIGlet examples webpage in an external browser, or copy the text above and paste it into an editor window.",
"description": "Admittedly, this isn't the ideal preview as Nova uses a non-monospaced output for the Preview textbox above. Use the Extensions -> Preview All Installed FIGlet Fonts menu item to generate an accurate, custom text FIGlet font preview document.",
"type": "text"
}
]
@ -284,6 +283,12 @@
"shortcut": "ctrl-opt-cmd-f",
"when": "editorHasSelection"
}
],
"extensions": [
{
"title": "Preview All Installed FIGlet Fonts",
"command": "figletTextFontPreviewAll"
}
]
},