Skip to content

Commit

Permalink
Version 6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Aug 31, 2022
1 parent 610c57c commit 85f7fec
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 13 deletions.
6 changes: 0 additions & 6 deletions Codist/Commands/SyntaxCustomizerWindowCommand.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
using System;
using System.ComponentModel.Design;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
using AppHelpers;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using Task = System.Threading.Tasks.Task;
using R = Codist.Properties.Resources;

namespace Codist.Commands
Expand Down
2 changes: 1 addition & 1 deletion Codist/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Codist
{
sealed class Config
{
internal const string CurrentVersion = "6.4.0";
internal const string CurrentVersion = "6.5.0";
const string ThemePrefix = "res:";
const int DefaultIconSize = 20;
internal const string LightTheme = ThemePrefix + "Light", PaleLightTheme = ThemePrefix + "PaleLight", DarkTheme = ThemePrefix + "Dark", PaleDarkTheme = ThemePrefix + "PaleDark", SimpleTheme = ThemePrefix + "Simple";
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,5 +11,5 @@
[assembly: AssemblyTrademark(nameof(Codist))]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("6.0.0.0")]
[assembly: AssemblyFileVersion("6.4.0.7300")]
[assembly: AssemblyFileVersion("6.5.0.7400")]
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
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="6.4.0.7356" Language="en-US" Publisher="WMJ" />
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="6.5.0.7425" Language="en-US" Publisher="WMJ" />
<DisplayName>Codist</DisplayName>
<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>
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Syntax definitions in the _All languages_ section will list all syntax styles fo

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

**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.
**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.

### My Symbols and External Symbols

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

# Acknowledgements

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

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

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

# License

Expand Down
2 changes: 1 addition & 1 deletion TestProject/TestPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ ConcreteClass InvokeDelegateParameter(Clone<ConcreteClass> clone) {
static string[] List(int value, params string[] text) {
return Array.ConvertAll(
Array.FindAll(text, t => t != null),
s => { return (value++).ToString() + "." + text[value - 1]; }
s => (value++).ToString() + "." + text[value - 1]
);
}

Expand Down

0 comments on commit 85f7fec

Please sign in to comment.