diff --git a/CHANGELOG.md b/CHANGELOG.md index dc17534..f915dd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +- 2022-06-02 **1.0.5** + - Support event ArrowKeyDown and ArrowKeyUp to move between items search and TreeView + - Support press key Esc from keyboard to close Form. - 2022-05-16 **1.0.4** - Support copy Content Debug/Trace Output - Fix bug can't use search and fill content form. diff --git a/Installer/Installer.cs b/Installer/Installer.cs index 40cf594..7b20f54 100644 --- a/Installer/Installer.cs +++ b/Installer/Installer.cs @@ -15,7 +15,7 @@ const string projectName = "NavisAddinManager"; const string outputName = "NavisAddinManager"; const string outputDir = "output"; -const string version = "1.0.4"; +const string version = "1.0.5"; const string xmlName = "PackageContents.xml"; var fileName = new StringBuilder().Append(outputName).Append("-").Append(version); var project = new Project diff --git a/Readme.MD b/Readme.MD index e6041a1..6b7af10 100644 --- a/Readme.MD +++ b/Readme.MD @@ -40,6 +40,10 @@ to support multiple platform API for developer. With current technology, you can - F1 - Go link open source report some error,bug or feature request. - Delete - Quick remove by use right click or use from keyboard. - Crt + MouseWheel - Zoom in/out by use mouse wheel in command plugin. +- Arrow Up - Move from TreeView to search. +- Arrow Down - Move from search to TreeView. +- Esc - Quick Close Add-in Manager. +- Enter - Quick Run Execute a command selected in Add-in Manager. ## Add-In Manager ![](pic/AddinManager.png)