Skip to content

Commit 85f7fec

Browse files
committed
Version 6.5
1 parent 610c57c commit 85f7fec

File tree

6 files changed

+7
-13
lines changed

6 files changed

+7
-13
lines changed

Codist/Commands/SyntaxCustomizerWindowCommand.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
using System;
2-
using System.ComponentModel.Design;
3-
using System.Globalization;
4-
using System.Threading;
5-
using System.Threading.Tasks;
62
using AppHelpers;
73
using Microsoft.VisualStudio.Shell;
8-
using Microsoft.VisualStudio.Shell.Interop;
9-
using Task = System.Threading.Tasks.Task;
104
using R = Codist.Properties.Resources;
115

126
namespace Codist.Commands

Codist/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Codist
1616
{
1717
sealed class Config
1818
{
19-
internal const string CurrentVersion = "6.4.0";
19+
internal const string CurrentVersion = "6.5.0";
2020
const string ThemePrefix = "res:";
2121
const int DefaultIconSize = 20;
2222
internal const string LightTheme = ThemePrefix + "Light", PaleLightTheme = ThemePrefix + "PaleLight", DarkTheme = ThemePrefix + "Dark", PaleDarkTheme = ThemePrefix + "PaleDark", SimpleTheme = ThemePrefix + "Simple";

Codist/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
[assembly: AssemblyTrademark(nameof(Codist))]
1212
[assembly: ComVisible(false)]
1313
[assembly: AssemblyVersion("6.0.0.0")]
14-
[assembly: AssemblyFileVersion("6.4.0.7300")]
14+
[assembly: AssemblyFileVersion("6.5.0.7400")]
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.4.0.7356" Language="en-US" Publisher="WMJ" />
4+
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="6.5.0.7425" 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Syntax definitions in the _All languages_ section will list all syntax styles fo
8888

8989
**Note**: _Font size_ is relative value to editor default font size. Partially checked checkboxes denote default syntax styles are used.
9090

91-
**A Side Note for Editor Font**: You may consider substituting the font used by Visual Studio code editor with professionally designed fonts for programming, for instance, [IBM Plex Mono](https://github.com/IBM/plex), [Fira Code](https://github.com/tonsky/FiraCode), etc. Employing [MacType](https://github.com/snowie2000/mactype) can also enhance system-wide textual display quality, especially for Chinese, Japanese and Korean programmers.
91+
**A Side Note for Editor Font**: You may consider substituting the font used by Visual Studio code editor with professionally designed fonts for programming, for instance, [IBM Plex Mono](https://github.com/IBM/plex), [Fira Code](https://github.com/tonsky/FiraCode), etc. Employing [MacType](https://github.com/snowie2000/mactype) can significantly enhance system-wide textual display quality, especially for Chinese, Japanese and Korean programmers.
9292

9393
### My Symbols and External Symbols
9494

@@ -528,7 +528,7 @@ Open the *Codist* section in the *Tools->Options* dialog. In the *General* secti
528528

529529
# Acknowledgements
530530

531-
I have learned a lot from the following extension projects (sorted by the time when I learned from them).
531+
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.
532532

533533
* CommentsPlus: https://github.com/mhoumann/CommentsPlus
534534
* Better comments: https://github.com/omsharp/BetterComments
@@ -550,7 +550,7 @@ I have learned a lot from the following extension projects (sorted by the time w
550550
* ReviewBoard: code.google.com/p/reviewboardvsx
551551
* Tweaks: https://github.com/madskristensen/Tweakster
552552

553-
And every donaters, beta testers, feedback providers to this project.
553+
And thank you, every donaters, beta testers, feedback providers to this project.
554554

555555
# License
556556

TestProject/TestPage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ ConcreteClass InvokeDelegateParameter(Clone<ConcreteClass> clone) {
108108
static string[] List(int value, params string[] text) {
109109
return Array.ConvertAll(
110110
Array.FindAll(text, t => t != null),
111-
s => { return (value++).ToString() + "." + text[value - 1]; }
111+
s => (value++).ToString() + "." + text[value - 1]
112112
);
113113
}
114114

0 commit comments

Comments
 (0)