Skip to content

Commit

Permalink
Release version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sharomank committed Jul 22, 2013
1 parent 05283de commit b4e21f2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions RegexTester/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.3.2.0")]
[assembly: AssemblyFileVersion("1.3.2.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]



Expand Down
8 changes: 6 additions & 2 deletions RegexTester/UserControls/RegexTesterPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,12 @@
<RadioButton Name="rbtnReplace" GroupName="mode" Style="{StaticResource toggleStyle}" Content="REPLACE" Checked="ModeItem_Checked" />
<RadioButton Name="rbtnSplitMode" GroupName="mode" Style="{StaticResource toggleStyle}" Content="SPLIT" Checked="ModeItem_Checked" />
<ComboBox Name="cbOutputMode" Margin="3" Height="36" VerticalContentAlignment="Center" SelectionChanged="cbOutputMode_SelectionChanged">
<ComboBoxItem Tag="0" IsSelected="True">OUTPUT MODE: Default</ComboBoxItem>
<ComboBoxItem Tag="1">SAMPLE CODE: C#</ComboBoxItem>
<ComboBoxItem Tag="0" IsSelected="True">
<TextBlock>OUTPUT MODE: <Bold>Default</Bold></TextBlock>
</ComboBoxItem>
<ComboBoxItem Tag="1">
<TextBlock>OUTPUT MODE: <Bold>C# sample</Bold></TextBlock>
</ComboBoxItem>
</ComboBox>
</StackPanel>

Expand Down
2 changes: 1 addition & 1 deletion RegexTester/UserControls/RegexTesterPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private RegexOptions GetRegexOptions()

private bool IsSelectedRegexOption(CheckBox cb)
{
return cb.IsEnabled == true && cb.IsChecked == true;
return cb.IsChecked == true && cb.IsEnabled == true;
}

private RegexMode GetCurrentMode()
Expand Down
2 changes: 1 addition & 1 deletion RegexTester/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="dcad2d98-1e91-4090-81a0-ec0641347bf8">
<Name>Regex Tester</Name>
<Author>Roman Kurbangaliyev</Author>
<Version>1.3.2</Version>
<Version>1.4.0</Version>
<Description xml:space="preserve">Regular expression tester for Visual Studio 2010, 2012.</Description>
<Locale>1033</Locale>
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/16b9d664-d88c-460e-84a5-700ab40ba452</MoreInfoUrl>
Expand Down

0 comments on commit b4e21f2

Please sign in to comment.