Skip to content

Commit

Permalink
bumped version to 1.9.6.11
Browse files Browse the repository at this point in the history
  • Loading branch information
HJLebbink committed Sep 27, 2019
1 parent 5b30c1b commit 7468e78
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 124 deletions.
242 changes: 121 additions & 121 deletions VS/CSHARP/asm-dude-vsix/OptionsPage/AsmDudeOptionPageUI.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ public AssemblerEnum UsedAssembler
{
return AssemblerEnum.NASM_ATT;
}
AsmDudeToolsStatic.Output_WARNING("Unrecognized UsedAssembler, assuming MASM");
return AssemblerEnum.MASM; // if nothing is checked somehow return MASM
AsmDudeToolsStatic.Output_WARNING("Unrecognized UsedAssembler, assuming AUTO");
return AssemblerEnum.AUTO_DETECT; // if nothing is checked somehow return AUTO
}

set
Expand Down Expand Up @@ -250,8 +250,8 @@ public AssemblerEnum UsedAssemblerDisassemblyWindow
{
return AssemblerEnum.NASM_ATT;
}
AsmDudeToolsStatic.Output_WARNING("Unrecognized UsedAssembler, assuming MASM");
return AssemblerEnum.MASM; // if nothing is checked somehow return MASM
AsmDudeToolsStatic.Output_WARNING("Unrecognized UsedAssembler, assuming AUTO");
return AssemblerEnum.AUTO_DETECT; // if nothing is checked somehow return AUTO
}

set
Expand Down Expand Up @@ -307,146 +307,146 @@ public string CodeFolding_EndTag

#endregion Code Folding

#region Syntax Highlighting
#region Syntax Highlighting

public bool SyntaxHighlighting_On
{
get { return this.SyntaxHighlighting_On_UI.IsChecked ?? false; }
set { this.SyntaxHighlighting_On_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_On
{
get { return this.SyntaxHighlighting_On_UI.IsChecked ?? false; }
set { this.SyntaxHighlighting_On_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Opcode
{
get { return this.ColorMnemonic_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorMnemonic_UI.SelectedColor.Value) : System.Drawing.Color.Blue; }
set { this.ColorMnemonic_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Opcode
{
get { return this.ColorMnemonic_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorMnemonic_UI.SelectedColor.Value) : System.Drawing.Color.Blue; }
set { this.ColorMnemonic_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Opcode_Italic
{
get { return this.ColorMnemonic_Italic_UI.IsChecked ?? false; }
set { this.ColorMnemonic_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Opcode_Italic
{
get { return this.ColorMnemonic_Italic_UI.IsChecked ?? false; }
set { this.ColorMnemonic_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Register
{
get { return this.ColorRegister_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorRegister_UI.SelectedColor.Value) : System.Drawing.Color.DarkRed; }
set { this.ColorRegister_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Register
{
get { return this.ColorRegister_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorRegister_UI.SelectedColor.Value) : System.Drawing.Color.DarkRed; }
set { this.ColorRegister_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Register_Italic
{
get { return this.ColorRegister_Italic_UI.IsChecked ?? false; }
set { this.ColorRegister_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Register_Italic
{
get { return this.ColorRegister_Italic_UI.IsChecked ?? false; }
set { this.ColorRegister_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Remark
{
get { return this.ColorRemark_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorRemark_UI.SelectedColor.Value) : System.Drawing.Color.Green; }
set { this.ColorRemark_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Remark
{
get { return this.ColorRemark_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorRemark_UI.SelectedColor.Value) : System.Drawing.Color.Green; }
set { this.ColorRemark_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Remark_Italic
{
get { return this.ColorRemark_Italic_UI.IsChecked ?? false; }
set { this.ColorRemark_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Remark_Italic
{
get { return this.ColorRemark_Italic_UI.IsChecked ?? false; }
set { this.ColorRemark_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Directive
{
get { return this.ColorDirective_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorDirective_UI.SelectedColor.Value) : System.Drawing.Color.Magenta; }
set { this.ColorDirective_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Directive
{
get { return this.ColorDirective_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorDirective_UI.SelectedColor.Value) : System.Drawing.Color.Magenta; }
set { this.ColorDirective_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Directive_Italic
{
get { return this.ColorDirective_Italic_UI.IsChecked ?? false; }
set { this.ColorDirective_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Directive_Italic
{
get { return this.ColorDirective_Italic_UI.IsChecked ?? false; }
set { this.ColorDirective_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Constant
{
get { return this.ColorConstant_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorConstant_UI.SelectedColor.Value) : System.Drawing.Color.Chocolate; }
set { this.ColorConstant_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Constant
{
get { return this.ColorConstant_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorConstant_UI.SelectedColor.Value) : System.Drawing.Color.Chocolate; }
set { this.ColorConstant_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Constant_Italic
{
get { return this.ColorConstant_Italic_UI.IsChecked ?? false; }
set { this.ColorConstant_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Constant_Italic
{
get { return this.ColorConstant_Italic_UI.IsChecked ?? false; }
set { this.ColorConstant_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Jump
{
get { return this.ColorJump_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorJump_UI.SelectedColor.Value) : System.Drawing.Color.Blue; }
set { this.ColorJump_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Jump
{
get { return this.ColorJump_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorJump_UI.SelectedColor.Value) : System.Drawing.Color.Blue; }
set { this.ColorJump_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Jump_Italic
{
get { return this.ColorJump_Italic_UI.IsChecked ?? false; }
set { this.ColorJump_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Jump_Italic
{
get { return this.ColorJump_Italic_UI.IsChecked ?? false; }
set { this.ColorJump_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Label
{
get { return this.ColorLabel_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorLabel_UI.SelectedColor.Value) : System.Drawing.Color.OrangeRed; }
set { this.ColorLabel_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Label
{
get { return this.ColorLabel_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorLabel_UI.SelectedColor.Value) : System.Drawing.Color.OrangeRed; }
set { this.ColorLabel_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Label_Italic
{
get { return this.ColorLabel_Italic_UI.IsChecked ?? false; }
set { this.ColorLabel_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Label_Italic
{
get { return this.ColorLabel_Italic_UI.IsChecked ?? false; }
set { this.ColorLabel_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Misc
{
get { return this.ColorMisc_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorMisc_UI.SelectedColor.Value) : System.Drawing.Color.DarkOrange; }
set { this.ColorMisc_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Misc
{
get { return this.ColorMisc_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorMisc_UI.SelectedColor.Value) : System.Drawing.Color.DarkOrange; }
set { this.ColorMisc_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Misc_Italic
{
get { return this.ColorMisc_Italic_UI.IsChecked ?? false; }
set { this.ColorMisc_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Misc_Italic
{
get { return this.ColorMisc_Italic_UI.IsChecked ?? false; }
set { this.ColorMisc_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Userdefined1
{
get { return this.ColorUserDefined1_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorUserDefined1_UI.SelectedColor.Value) : System.Drawing.Color.Silver; }
set { this.ColorUserDefined1_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Userdefined1
{
get { return this.ColorUserDefined1_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorUserDefined1_UI.SelectedColor.Value) : System.Drawing.Color.Silver; }
set { this.ColorUserDefined1_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Userdefined1_Italic
{
get { return this.ColorUserDefined1_Italic_UI.IsChecked ?? false; }
set { this.ColorUserDefined1_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Userdefined1_Italic
{
get { return this.ColorUserDefined1_Italic_UI.IsChecked ?? false; }
set { this.ColorUserDefined1_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Userdefined2
{
get { return this.ColorUserDefined2_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorUserDefined2_UI.SelectedColor.Value) : System.Drawing.Color.Silver; }
set { this.ColorUserDefined2_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Userdefined2
{
get { return this.ColorUserDefined2_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorUserDefined2_UI.SelectedColor.Value) : System.Drawing.Color.Silver; }
set { this.ColorUserDefined2_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Userdefined2_Italic
{
get { return this.ColorUserDefined2_Italic_UI.IsChecked ?? false; }
set { this.ColorUserDefined2_Italic_UI.IsChecked = value; }
}
public bool SyntaxHighlighting_Userdefined2_Italic
{
get { return this.ColorUserDefined2_Italic_UI.IsChecked ?? false; }
set { this.ColorUserDefined2_Italic_UI.IsChecked = value; }
}

public System.Drawing.Color SyntaxHighlighting_Userdefined3
{
get { return this.ColorUserDefined3_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorUserDefined3_UI.SelectedColor.Value) : System.Drawing.Color.Silver; }
set { this.ColorUserDefined3_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}
public System.Drawing.Color SyntaxHighlighting_Userdefined3
{
get { return this.ColorUserDefined3_UI.SelectedColor.HasValue ? AsmDudeToolsStatic.ConvertColor(this.ColorUserDefined3_UI.SelectedColor.Value) : System.Drawing.Color.Silver; }
set { this.ColorUserDefined3_UI.SelectedColor = AsmDudeToolsStatic.ConvertColor(value); }
}

public bool SyntaxHighlighting_Userdefined3_Italic
{
get { return this.ColorUserDefined3_Italic_UI.IsChecked ?? false; }
set { this.ColorUserDefined3_Italic_UI.IsChecked = value; }
}
#endregion Syntax Highlighting
public bool SyntaxHighlighting_Userdefined3_Italic
{
get { return this.ColorUserDefined3_Italic_UI.IsChecked ?? false; }
set { this.ColorUserDefined3_Italic_UI.IsChecked = value; }
}
#endregion Syntax Highlighting

#region Keyword Highlighting
public bool KeywordHighlighting_BackgroundColor_On
Expand Down
2 changes: 1 addition & 1 deletion VS/CSHARP/asm-dude-vsix/OptionsPage/AsmDudeOptionsPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ protected override void OnDeactivate(CancelEventArgs e)
}
if (AsmDudeToolsStatic.Used_Assembler_Disassembly_Window != this._asmDudeOptionsPageUI.UsedAssemblerDisassemblyWindow)
{
sb.AppendLine("UsedAssembler_DisassemblyWindwo=" + this._asmDudeOptionsPageUI.UsedAssemblerDisassemblyWindow);
sb.AppendLine("UsedAssembler_DisassemblyWindow=" + this._asmDudeOptionsPageUI.UsedAssemblerDisassemblyWindow);
changed = true;
}
#endregion
Expand Down
2 changes: 1 addition & 1 deletion VS/CSHARP/asm-dude-vsix/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ static class Vsix
public const string Name = "AsmDude";
public const string Description = "Syntax highlighting and code assistance for assembly source code (.asm, .cod, .inc, .s) and the Disassembly Window ";
public const string Language = "en-US";
public const string Version = "1.9.6.10";
public const string Version = "1.9.6.11";
public const string Author = "Henk-Jan Lebbink";
public const string Tags = "Assembly, Assembler, ASM, Syntax Highlighting, Code Completion, Disassembly Window, Code Analysis, x86_64, SSE, AVX, AVX2, AVX512";
}
Expand Down
2 changes: 1 addition & 1 deletion VS/CSHARP/asm-dude-vsix/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="c729d6b2-f412-49ed-893d-a8f61f25db98" Version="1.9.6.10" Language="en-US" Publisher="Henk-Jan Lebbink" />
<Identity Id="c729d6b2-f412-49ed-893d-a8f61f25db98" Version="1.9.6.11" Language="en-US" Publisher="Henk-Jan Lebbink" />
<DisplayName>AsmDude</DisplayName>
<Description xml:space="preserve">Syntax highlighting and code assistance for assembly source code (.asm, .cod, .inc, .s) and the Disassembly Window </Description>
<MoreInfo>https://github.com/HJLebbink/asm-dude</MoreInfo>
Expand Down

0 comments on commit 7468e78

Please sign in to comment.