Skip to content

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Ivon committed Jul 23, 2021
1 parent 89868ad commit c6bdf21
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Deploy/buildlpx.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set version=6.15.0
set version=6.15.1
set fileName=CsvLINQPadDriver.%version%.lpx

set zip="%ProgramFiles%\7-Zip\7z.exe"
Expand Down
6 changes: 3 additions & 3 deletions Src/CsvLINQPadDriver/ConnectionDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,14 @@
<MenuItem Command="{x:Static this:ConnectionDialog.PasteFromClipboardForFolderAndProceedCommand}" InputGestureText="Ctrl+Shift+V" Header="Clear, paste (append *.csv to folders) a_nd proceed"/>
<MenuItem Command="{x:Static this:ConnectionDialog.PasteFromClipboardForFolderAndItsSubfoldersAndProceedCommand}" InputGestureText="Ctrl+Shift+Alt+V" Header="Clear, paste (append **.csv to folders) an_d proceed"/>
<Separator/>
<MenuItem Command="{x:Static this:ConnectionDialog.WrapFilesTextCommand}" InputGestureText="Ctrl+W">
<MenuItem Command="{x:Static this:ConnectionDialog.WrapFilesTextCommand}" Header="Word _wrap" InputGestureText="Ctrl+W" IsCheckable="True">
<MenuItem.Style>
<Style TargetType="{x:Type MenuItem}">
<Setter Property="Header" Value="Turn on word _wrap"/>
<Setter Property="IsChecked" Value="False"/>
<Style.Triggers>
<!-- ReSharper disable once Xaml.BindingWithContextNotResolved -->
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType=ContextMenu}, Path=PlacementTarget.TextWrapping}" Value="Wrap">
<Setter Property="Header" Value="Turn off word _wrap"/>
<Setter Property="IsChecked" Value="True"/>
</DataTrigger>
</Style.Triggers>
</Style>
Expand Down
5 changes: 2 additions & 3 deletions Src/CsvLINQPadDriver/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project>
<PropertyGroup>
<Version>6.15.0</Version>
<PackageReleaseNotes>Improved encoding detection.
Added files editor context menu.</PackageReleaseNotes>
<Version>6.15.1</Version>
<PackageReleaseNotes>Updated dependencies.</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Src/CsvLINQPadDriver/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<assemblyIdentity
name="CsvLINQPadDriver"
version="6.15.0.0"
version="6.15.1.0"
type="win32"
/>

Expand Down

0 comments on commit c6bdf21

Please sign in to comment.