Skip to content

Commit 0dbe52a

Browse files
committed
Version 7.0
1 parent 03601a6 commit 0dbe52a

File tree

4 files changed

+34
-23
lines changed

4 files changed

+34
-23
lines changed

Codist/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
[assembly: AssemblyCopyright("Copyright WMJ, 2022")]
1111
[assembly: AssemblyTrademark(nameof(Codist))]
1212
[assembly: ComVisible(false)]
13-
[assembly: AssemblyVersion("6.0.0.0")]
14-
[assembly: AssemblyFileVersion(Codist.Config.CurrentVersion + ".7700")]
13+
[assembly: AssemblyVersion("7.0.0.0")]
14+
[assembly: AssemblyFileVersion(Codist.Config.CurrentVersion + ".8000")]
1515
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]

Codist/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="6.6.0.7700" Language="en-US" Publisher="WMJ" />
4+
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="7.0.0.7989" Language="en-US" Publisher="WMJ" />
55
<DisplayName>Codist</DisplayName>
66
<Description xml:space="preserve">A C# programmer's productivity booster which enhances syntax highlighting, quick info (tooltip), navigation bar, scrollbar, display quality, automatically updated version numbers, and brings smart tool bar to code editor.</Description>
77
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>

README.md

Lines changed: 31 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Check out this list to see what _Codist_ can do for you.
1717
![Feature Brief Super Quick Info](doc/feature-brief-super-quick-info.png)
1818
* [Navigation Bar](#navigation-bar) with a drag-and-drop and filter enabled member list
1919
![Feature Brief Navigation Bar](doc/feature-brief-navigation-bar.png)
20-
* [Smart Bar](#smart-bar) with common edit commands and symbol reference analyzers
20+
* [Smart Bar](#smart-bar) with common edit commands, C# code refactoring and symbol reference analyzers
2121
![Feature Brief Smart Bar](doc/feature-brief-smart-bar.png)
2222
* [Scrollbar Marker](#scrollbar-marker) draws a powerful mini code map
2323
![Feature Brief Scrollbar Marker](doc/feature-brief-scrollbar-marker.png)
@@ -400,6 +400,14 @@ When we begin to work with new libraries, we usually have to learn new types and
400400

401401
There are two buttons on the top right corner in the result list of symbol analysis commands. The _Pin_ button will keep the list on the screen. And you can use your mouse to drag those lists around.
402402

403+
### Code Refactorings
404+
405+
From version 7.0 on, quite a few code refactorings are provided via a button on the C# Smart Bar.
406+
407+
![Smart Bar Code Refactoring](doc/smart-bar-refactoring.png)
408+
409+
You can access the menu from keyboard by assigning a shortcut key to the `Refactor.RefactoringCode` command.
410+
403411
### Symbol Marker
404412

405413
_Symbol marker_ draws markers for C# symbols.
@@ -529,26 +537,27 @@ Open the *Codist* section in the *Tools->Options* dialog. In the *General* secti
529537

530538
I have learned a lot from the following extension projects (sorted by the time when I learned from them). Codist would not be what you see today without them.
531539

532-
* CommentsPlus: https://github.com/mhoumann/CommentsPlus
533-
* Better comments: https://github.com/omsharp/BetterComments
534-
* Remarker: https://github.com/jgyo/remarker
535-
* Font Sizer: https://github.com/Oceanware/FontSizer
536-
* Visual Studio Productivity Power Tools: https://github.com/Microsoft/VS-PPT
537-
* Inheritance Margin: https://github.com/tunnelvisionlabs/InheritanceMargin
538-
* CoCo: https://github.com/GeorgeAlexandria/CoCo
539-
* CodeBlockEndTag: https://github.com/KhaosCoders/VSCodeBlockEndTag
540-
* UntabifyReplacement: https://github.com/cpmcgrath/UntabifyReplacement
541-
* Extensiblity Tools: https://github.com/madskristensen/ExtensibilityTools
542-
* CodeMaid: https://github.com/codecadwallader/codemaid
543-
* Select Next Occurence: https://github.com/2mas/SelectNextOccurrence
544-
* VSColorOutput: https://github.com/mike-ward/VSColorOutput
545-
* NuGet: https://github.com/NuGet/NuGet.Build.Packaging
546-
* GoToImplementation: https://github.com/GordianDotNet/GoToImplementation
547-
* Roslyn: https://github.com/dotnet/roslyn
548-
* Community.VisualStudio.Toolkit: https://github.com/VsixCommunity/Community.VisualStudio.Toolkit
540+
* [CommentsPlus](https://github.com/mhoumann/CommentsPlus), [Better comments](https://github.com/omsharp/BetterComments), [Remarker](https://github.com/jgyo/remarker): syntax tagger
541+
* [Font Sizer](https://github.com/Oceanware/FontSizer): changing font size in syntax styles
542+
* [Visual Studio Productivity Power Tools](https://github.com/Microsoft/VS-PPT): extending code window margin
543+
* [Inheritance Margin](https://github.com/tunnelvisionlabs/InheritanceMargin): extending code window margin
544+
* [CoCo](https://github.com/GeorgeAlexandria/CoCo): extensive syntax highlighting
545+
* [CodeBlockEndTag](https://github.com/KhaosCoders/VSCodeBlockEndTag): adornments
546+
* [UntabifyReplacement](https://github.com/cpmcgrath/UntabifyReplacement): replacing text in code window
547+
* [Extensiblity Tools](https://github.com/madskristensen/ExtensibilityTools)
548+
* [CodeMaid](https://github.com/codecadwallader/codemaid): how to support multi-language localization
549+
* [Select Next Occurence](https://github.com/2mas/SelectNextOccurrence): code navigation
550+
* [VSColorOutput](https://github.com/mike-ward/VSColorOutput): extending output window pane
551+
* [NuGet](https://github.com/NuGet/NuGet.Build.Packaging): build events
552+
* [GoToImplementation](https://github.com/GordianDotNet/GoToImplementation)
553+
* [Roslyn](https://github.com/dotnet/roslyn): lots about code analysis
554+
* [Community.VisualStudio.Toolkit](https://github.com/VsixCommunity/Community.VisualStudio.Toolkit): VS extension points
549555
* ReviewBoard: code.google.com/p/reviewboardvsx
550-
* Tweaks: https://github.com/madskristensen/Tweakster
551-
* VsStatus: https://github.com/madskristensen/VsStatus
556+
* [Tweaks](https://github.com/madskristensen/Tweakster): VS tweaks
557+
* [VsStatus](https://github.com/madskristensen/VsStatus): hacking the status bar
558+
* [Roslynator](https://github.com/JosefPihrt/Roslynator): hundreds of code refactorings and analyses
559+
* [ShowTheShortcut](https://github.com/madskristensen/ShowTheShortcut): discovering identifiers of executed commands
560+
* [Copy Nice](https://marketplace.visualstudio.com/items?itemName=MadsKristensen.CopyNice): copying text without indentation
552561

553562
And thank you, every donaters, beta testers, feedback providers to this project.
554563

@@ -575,3 +584,5 @@ If you like _Codist_, consider [buying me a cup of Chinese tea](https://paypal.m
575584
You can donate any amount of money as you like. The recommended amount of donation is `$19.99`.
576585

577586
5 donations have been received so far :)
587+
588+
Well, you have already reached here. Why not give Codist a ★★★★★ rating on the [Visual Studio Extension Marketplace](https://marketplace.visualstudio.com/items?itemName=wmj.Codist)?

doc/smart-bar-refactoring.png

34.9 KB
Loading

0 commit comments

Comments
 (0)