Skip to content

Commit 4fb5e10

Browse files
committed
Accidentally broke the compact command in the last patch - it's fixed now.
1 parent 83bcda9 commit 4fb5e10

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

WindowsApp1/Compact.Designer.vb

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WindowsApp1/Compact.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Imports System.Text.RegularExpressions
55
Imports Ookii.Dialogs 'Uses Ookii Dialogs for the non-archaic filebrowser dialog. http://www.ookii.org/Software/Dialogs
66

77
Public Class Compact
8-
Dim version = "1.3.5"
8+
Dim version = "1.3.5.1"
99
Private WithEvents MyProcess As Process
1010
Private Delegate Sub AppendOutputTextDelegate(ByVal text As String)
1111

@@ -361,7 +361,7 @@ Public Class Compact
361361

362362
Try
363363

364-
MyProcess.StandardInput.WriteLine("cd " + workingDir)
364+
MyProcess.StandardInput.WriteLine("cd /d " + workingDir)
365365
MyProcess.StandardInput.Flush()
366366

367367
MyProcess.StandardInput.WriteLine("") 'Required for the embedded console to show the next line in the buffer after the 'cd' command. No idea why

WindowsApp1/My Project/AssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
3232
' by using the '*' as shown below:
3333
' <Assembly: AssemblyVersion("1.0.*")>
3434

35-
<Assembly: AssemblyVersion("1.3.5.0")>
36-
<Assembly: AssemblyFileVersion("1.3.5.0")>
35+
<Assembly: AssemblyVersion("1.3.5.1")>
36+
<Assembly: AssemblyFileVersion("1.3.5.1")>
3737
<Assembly: NeutralResourcesLanguage("en")>

0 commit comments

Comments
 (0)