diff --git a/Documentation/ReleaseNotes.txt b/Documentation/ReleaseNotes.txt index 611bf5d..fd19dc2 100644 --- a/Documentation/ReleaseNotes.txt +++ b/Documentation/ReleaseNotes.txt @@ -1,4 +1,7 @@ -1.11 - Aug 15, 2018 +1.12 - Dec 10, 2018 + New recorded commands: "Go to brace" and outlining commands + +1.11 - Aug 15, 2018 Added shortcuts to run saved macros 1.10 - Apr 23, 2017 @@ -21,19 +24,19 @@ Added "Edit.LineFirstColumn" as a recordable command 1.4 - Dec 7, 2013 - Added menu to repeat macro a given number of times + Added menu to repeat macro a given number of times 1.3 - Nov 28, 2013 - Fixed macros not working in certain file types (HTML...) - Recording additional edit commands (format selection, comment/uncomment selection...) + Fixed macros not working in certain file types (HTML...) + Recording additional edit commands (format selection, comment/uncomment selection...) 1.2 - Oct 24, 2013 - Support for Visual Studio 2013 - Added 'Ctrl+Shift+R' shortcut to match previous VS versions + Support for Visual Studio 2013 + Added 'Ctrl+Shift+R' shortcut to match previous VS versions 1.1 - Feb 8, 2013 - Added visual cue while recording - Currrent macro now persists across sessions + Added visual cue while recording + Currrent macro now persists across sessions 1.0 - Nov 13, 2012 - Initial version + Initial version diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index e1cdf66..5573094 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -28,4 +28,4 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.11.*")] +[assembly: AssemblyVersion("1.12.*")] diff --git a/VSTextMacrosPackage.cs b/VSTextMacrosPackage.cs index b20fa84..7952b6d 100644 --- a/VSTextMacrosPackage.cs +++ b/VSTextMacrosPackage.cs @@ -10,7 +10,7 @@ namespace VSTextMacros { [PackageRegistration(UseManagedResourcesOnly = true)] - [InstalledProductRegistration("#110", "#112", "1.11", IconResourceID = 400)] + [InstalledProductRegistration("#110", "#112", "1.12", IconResourceID = 400)] [ProvideMenuResource("Menus.ctmenu", 1)] [Guid(GuidList.guidVSTextMacrosPkgString)] [ProvideAutoLoad(VSConstants.UICONTEXT.NoSolution_string)] diff --git a/source.extension.vsixmanifest b/source.extension.vsixmanifest index c103085..4d49cf7 100644 --- a/source.extension.vsixmanifest +++ b/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Text Macros for Visual Studio 2012-2017 Brings back text-editing/keyboard macro support in VS 2012-2017 https://github.com/xps/vstextmacros