-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Implement ± Default Hosts - Allow alternative installation directory (still working on it) - Improve Help Instructions - Added edit status to tabs (need to implement undo) - First steps in theming (not ready yet)
- Loading branch information
Showing
9 changed files
with
289 additions
and
151 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# electron-packager . --overwrite --platform=win32 --arch=x64 --prune=true --extra-resource="resources/fakemail" --out="..\release-builds" | ||
rem electron-packager . --overwrite --platform=win32 --arch=x64 --prune=true --extra-resource="resources/fakemail" --out="..\release-builds" | ||
|
||
npm run dist | ||
# cd "../electron-builder/edit-virtual-hosts/"; | ||
# mv "mac" "Edit Virtual Hosts macOS"; | ||
rem cd "../electron-builder/edit-virtual-hosts/"; | ||
rem mv "mac" "Edit Virtual Hosts macOS"; |
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,2 @@ | ||
# MAMP !! Do Not Repeat !! | ||
NameVirtualHost *:80 |
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,3 @@ | ||
# MAMP !! Do Not Repeat !! | ||
NameVirtualHost *:80 | ||
|
||
# MAMP [project]: [domain] | ||
|
||
<VirtualHost *:80> | ||
|
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 @@ | ||
# XAMPP Required Default !! Do Not Repeat !! | ||
<VirtualHost *:80> | ||
ServerName localhost | ||
DocumentRoot "[htdocs]" | ||
<Directory "[htdocs]"> | ||
Options Indexes FollowSymLinks Includes execCGI | ||
AllowOverride All | ||
Require all granted | ||
</Directory> | ||
</VirtualHost> |
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
Oops, something went wrong.