-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #95: fixed by removing PS support for Background * #69: changed registry keys to HKCU as suggested my markusschuh * #69: fixed magic grep not found error * #61: added cygwin integration * #69: #50: uninstall both from cygwin and mingw * #97: bash fix and disabled settings update
- Loading branch information
Showing
11 changed files
with
64 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
|
||
cd `dirname ${BASH_SOURCE:-$0}` | ||
echo "Setting up your devon-ide in ${PWD}" | ||
source scripts/devon ide setup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[HKEY_CLASSES_ROOT\Directory\shell\devon_cmd] | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cmd] | ||
@="Open Devon CMD shell here" | ||
[HKEY_CLASSES_ROOT\Directory\shell\devon_cmd\command] | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cmd\command] | ||
@="cmd.exe /s /k pushd \"%V\" & devon" | ||
[HKEY_CLASSES_ROOT\Directory\Background\shell\devon_cmd] | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cmd] | ||
@="Open Devon CMD shell here" | ||
[HKEY_CLASSES_ROOT\Directory\Background\shell\devon_cmd\command] | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cmd\command] | ||
@="cmd.exe /s /k pushd \"%V\" & devon" |
6 changes: 6 additions & 0 deletions
6
scripts/src/main/resources/system/windows/cygwin/devon-cygwin-uninstall.reg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[-HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cygwin] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cygwin\command] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cygwin] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cygwin\command] |
10 changes: 10 additions & 0 deletions
10
scripts/src/main/resources/system/windows/cygwin/devon-cygwin.reg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cygwin] | ||
@="Open Devon Cygwin Bash Here" | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cygwin\command] | ||
@="C:\\cygwin64\\bin\\mintty.exe -i /Cygwin-Terminal.ico C:\\cygwin64\\bin\\bash.exe --login -c \"cd \\\"%V\\\" ; exec bash -rcfile ~/.bashrc\"" | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cygwin] | ||
@="Open Devon Cygwin Bash Here" | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cygwin\command] | ||
@="C:\\cygwin64\\bin\\mintty.exe -i /Cygwin-Terminal.ico C:\\cygwin64\\bin\\bash.exe --login -c \"cd \\\"%V\\\" ; exec bash -rcfile ~/.bashrc\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
regedit.exe /S devon-cygwin.reg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
regedit.exe /S devon-cygwin-uninstall.reg |
8 changes: 4 additions & 4 deletions
8
scripts/src/main/resources/system/windows/devon-uninstall.reg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[-HKEY_CLASSES_ROOT\Directory\shell\devon_cmd] | ||
[-HKEY_CLASSES_ROOT\Directory\Background\shell\devon_cmd] | ||
[-HKEY_CLASSES_ROOT\Directory\shell\devon_ps] | ||
[-HKEY_CLASSES_ROOT\Directory\Background\shell\devon_ps] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_cmd] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_cmd] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_ps] | ||
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\devon_ps] |
10 changes: 3 additions & 7 deletions
10
scripts/src/main/resources/system/windows/power-shell/devon-power-shell.reg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
Windows Registry Editor Version 5.00 | ||
|
||
[HKEY_CLASSES_ROOT\Directory\shell\devon_ps] | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_ps] | ||
@="Open Devon PowerShell here" | ||
[HKEY_CLASSES_ROOT\Directory\shell\devon_ps\command] | ||
@="powershell.exe -NoExit -Command Set-Location -LiteralPath '%L';devon.bat" | ||
[HKEY_CLASSES_ROOT\Directory\Background\shell\devon_ps] | ||
@="Open Devon PowerShell here" | ||
[HKEY_CLASSES_ROOT\Directory\Background\shell\devon_ps\command] | ||
@="powershell.exe -NoExit -Command Set-Location -LiteralPath '%L';devon.bat" | ||
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\devon_ps\command] | ||
@="powershell.exe -NoExit -Command Set-Location -LiteralPath '%L';%USERPROFILE%\devon.bat" |