Skip to content

Commit

Permalink
ExeName for BeyondCompare on linux should be bcompare not bcomp (#426)
Browse files Browse the repository at this point in the history
* ExeName for BeyondCompare on linux should be bcompare not bcomp

* .
  • Loading branch information
SimonCropp committed Nov 14, 2023
1 parent 3bcfa3c commit 2477ad0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/diff-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
#### Notes:

* [Command line reference](https://www.scootersoftware.com/v4help/index.html?command_line_reference.html)
* Enable [Automatically reload unless changes will be discarded](https://www.scootersoftware.com/v4help/optionstweak.html) in `Tools > Options > Tweaks > File Operations`.
* Enable [Automatically reload unless changes will be discarded](https://www.scootersoftware.com/v4help/optionstweak.html) in `Tools > Options > Tweaks > File Operations`.

#### Windows settings:

Expand All @@ -154,8 +154,8 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
* Example target on left arguments: `-solo -rightreadonly "targetFile.txt" "tempFile.txt" `
* Example target on right arguments: `-solo -leftreadonly "tempFile.txt" "targetFile.txt" `
* Scanned paths:
* `/usr/lib/beyondcompare/bcomp`
* `%PATH%bcomp`
* `/usr/bin/bcompare`
* `%PATH%bcompare`

### [DeltaWalker](https://www.deltawalker.com/)

Expand Down
6 changes: 3 additions & 3 deletions src/DiffEngine.Tests/diffTools.include.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
#### Notes:

* [Command line reference](https://www.scootersoftware.com/v4help/index.html?command_line_reference.html)
* Enable [Automatically reload unless changes will be discarded](https://www.scootersoftware.com/v4help/optionstweak.html) in `Tools > Options > Tweaks > File Operations`.
* Enable [Automatically reload unless changes will be discarded](https://www.scootersoftware.com/v4help/optionstweak.html) in `Tools > Options > Tweaks > File Operations`.

#### Windows settings:

Expand All @@ -41,8 +41,8 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
* Example target on left arguments: `-solo -rightreadonly "targetFile.txt" "tempFile.txt" `
* Example target on right arguments: `-solo -leftreadonly "tempFile.txt" "targetFile.txt" `
* Scanned paths:
* `/usr/lib/beyondcompare/bcomp`
* `%PATH%bcomp`
* `/usr/bin/bcompare`
* `%PATH%bcompare`

### [DeltaWalker](https://www.deltawalker.com/)

Expand Down
6 changes: 3 additions & 3 deletions src/DiffEngine/Implementation/BeyondCompare.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ static string RightOsxLinuxArguments(string temp, string target) =>
RightWindowsArguments),
@"%ProgramFiles%\Beyond Compare *\"),
Linux: new(
"bcomp",
"bcompare",
new(
LeftOsxLinuxArguments,
RightOsxLinuxArguments),
"/usr/lib/beyondcompare/"),
"/usr/bin/"),
Osx: new(
"bcomp",
new(
Expand All @@ -58,7 +58,7 @@ static string RightOsxLinuxArguments(string temp, string target) =>
"/Applications/Beyond Compare.app/Contents/MacOS/")),
Notes: """
* [Command line reference](https://www.scootersoftware.com/v4help/index.html?command_line_reference.html)
* Enable [Automatically reload unless changes will be discarded](https://www.scootersoftware.com/v4help/optionstweak.html) in `Tools > Options > Tweaks > File Operations`.
* Enable [Automatically reload unless changes will be discarded](https://www.scootersoftware.com/v4help/optionstweak.html) in `Tools > Options > Tweaks > File Operations`.
""");
}
}

0 comments on commit 2477ad0

Please sign in to comment.