From 04c8cb90c44df6c32274c3f2f546c7676b1d4338 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 2 Mar 2020 08:42:12 -0500 Subject: [PATCH] fix broken image --- README.md | 14 +++++--------- plugin.json | 4 ++-- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f2b2488..8739658 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,14 @@ -# Snippet UI Plugin (v1.1) +# Snippet UI Plugin (v1.1a) Author: **Vector 35 Inc** _Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys._ ## Description: -# Snippet UI Plugin (v1.0 alpha) +The snippet editor started as a simple example UI plugin to demonstrate new features available to UI plugins. It has turned into a functionally useful plugin in its own right. The snippet editor allows you to write small bits of code that might not be big enough to warrant the effort of a full plugin but are longer enough that you don't want to retype them every time in the python-console! -Author: **Vector 35 Inc** - -_Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys._ +As an added bonus, all snippets are added to the snippets menu and hot-keys can be associated with them as they make use of the action system. All action-system items are also available through the command-palette (CTL/CMD-p). -![](./media/snippets.gif) - -## Description: +![](https://github.com/Vector35/snippets/blob/master/media/snippets.gif?raw=true) -This plugin is dual purpose -- first, it demonstrates the new UI plugin interface available for third-party plugins, and secondly it implements the often-requested functionality of adding a snippet editor. This is particularly useful for binding commonly used snippets of python code from the ScriptingConsole to a hotkey to be able to trigger them more easily. +. ## Installation Instructions diff --git a/plugin.json b/plugin.json index d2e4ebd..0d46241 100644 --- a/plugin.json +++ b/plugin.json @@ -4,7 +4,7 @@ "type": ["ui"], "api": ["python2", "python3"], "description": "Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys.", - "longdescription": "# Snippet UI Plugin (v1.0 alpha)\n\nAuthor: **Vector 35 Inc**\n\n_Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys._\n\n![](./media/snippets.gif)\n\n## Description:\n\nThis plugin is dual purpose -- first, it demonstrates the new UI plugin interface available for third-party plugins, and secondly it implements the often-requested functionality of adding a snippet editor. This is particularly useful for binding commonly used snippets of python code from the ScriptingConsole to a hotkey to be able to trigger them more easily.", + "longdescription": "The snippet editor started as a simple example UI plugin to demonstrate new features available to UI plugins. It has turned into a functionally useful plugin in its own right. The snippet editor allows you to write small bits of code that might not be big enough to warrant the effort of a full plugin but are longer enough that you don't want to retype them every time in the python-console!\n\nAs an added bonus, all snippets are added to the snippets menu and hot-keys can be associated with them as they make use of the action system. All action-system items are also available through the command-palette (CTL/CMD-p).\n\n![](https://github.com/Vector35/snippets/blob/master/media/snippets.gif?raw=true)\n\n.", "license": { "name": "MIT", "text": "Copyright (c) 2019 Vector 35 Inc\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." @@ -17,7 +17,7 @@ }, "dependencies": { }, - "version": "1.1", + "version": "1.1a", "author": "Vector 35 Inc", "minimumbinaryninjaversion": 1401 }