Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable windows installer #30

Merged
merged 2 commits into from
Mar 8, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ function setUpInstallButton() {
$(".windows-install").addClass("hide");
} else if (platform.os.family.indexOf("Win") != -1) {
$(".mac-install").addClass("hide");
$(".windows-install").removeClass("hide");
// Disabling Windows installer until we can verify that it doesn't override person's PATH variable
// $(".windows-install").removeClass("hide");
} else if (platform.os.family.indexOf("iOS") != -1) {
$(".mac-install").addClass("hide");
$(".windows-install").addClass("hide");
Expand Down
5 changes: 4 additions & 1 deletion releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ title: Downloads - Virtual World Framework

- [VWF-Mac-OS-X-latest.tar.gz](http://download.virtualworldframework.com/files/VWF_Mac_OS_X_latest.tar.gz)
- [VWF-Linux-latest.tar.gz](http://download.virtualworldframework.com/files/VWF_Linux_latest.tar.gz)
- [VWF-Windows-Install.exe](http://download.virtualworldframework.com/files/VWF_Windows_Install.exe)
- Windows installer coming soon! (for now, clone our source code on github)

<!-- Disabling Windows installer until we can verify that it doesn't override person's PATH variable -->
<!--[VWF-Windows-Install.exe](http://download.virtualworldframework.com/files/VWF_Windows_Install.exe)-->

## Previous Archive Versions
- [VWF-0.6.22-windows.zip](http://download.virtualworldframework.com/files/archive/VWF_Master_0.6.22.0-windows-full.zip)
Expand Down