Skip to content

Commit

Permalink
Version 5.1:
Browse files Browse the repository at this point in the history
+ Added Analysis Symbol commands into context menu of Navigation Bar
+ Made Tab and Shift + Tab key in drop-down menu of Navigation Bar to bring out adjacent menus
- Fixed tool tip on Navigation Bar menu could cover the menu
- Fixed region marker not working in some cases
- Fixed several crashes
  • Loading branch information
wmjordan committed Jun 2, 2019
1 parent 389995b commit 7f2ec55
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Codist/CodistPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Codist
/// <para>The project consists of the following namespace: <see cref="SyntaxHighlight"/> backed by <see cref="Classifiers"/>, <see cref="SmartBars"/>, <see cref="QuickInfo"/>, <see cref="Margins"/>, <see cref="NaviBar"/> etc.</para>
/// </summary>
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
[InstalledProductRegistration("#110", "#112", "5.0", IconResourceID = 400)] // Information on this package for Help/About
[InstalledProductRegistration("#110", "#112", "5.1", IconResourceID = 400)] // Information on this package for Help/About
[Guid(PackageGuidString)]
[ProvideOptionPage(typeof(Options.General), Constants.NameOfMe, "General", 0, 0, true, Sort = 0)]

Expand Down
2 changes: 1 addition & 1 deletion Codist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.0.0.4162")]
[assembly: AssemblyFileVersion("5.1.0.4238")]
2 changes: 1 addition & 1 deletion Codist/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="5.0.0.4162" Language="en-US" Publisher="WMJ" />
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="5.1.0.4237" Language="en-US" Publisher="WMJ" />
<DisplayName>Codist</DisplayName>
<Description xml:space="preserve">A productivity enhancer for C# programmers with advanced syntax highlight, Super Quick Info (code tooltip), Smart Bar (contextual toolbar), Navigation Bar, code structure markers on scrollbar, comment tagger, and more.</Description>
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@

![Navigation Bar Fields](doc/navigation-bar-context-menu.png)

From version 5.1 on, the right click menu includes symbol analysis commands.

3. Clicking on a **Member node** will select the whole member. If you have the _Smart Bar_ feature on and let it appear when selection is changed, _Smart Bar_ will be displayed and let you perform actions onto the member.

![Navigation Bar Select](doc/navigation-bar-select.png)
Expand Down
2 changes: 2 additions & 0 deletions TestProject/TestPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ private void TestPage_MyEvent(object sender, EventArgs e) {

/// <typeparam name="TGeneric">Any type</typeparam>
public void Method<TGeneric>() { //type parameter
#region Test Methods
// unnecessary code
TestProject.ExtensionClass.Log(typeof(TGeneric).Name); // extension method
NativeMethods.ExternMethod(value: 1, ptr: IntPtr.Zero); // extern method
Expand All @@ -82,6 +83,7 @@ public void Method<TGeneric>() { //type parameter
base.VirtualMethod(); // base virtual method
MyEvent(this, EventArgs.Empty); // event
this.Method(); // qualified invocation
#endregion
}

protected override int AbstractMethod() { // overridden method
Expand Down
Binary file modified doc/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7f2ec55

Please sign in to comment.