The IE plugin installer fails on Windows 7 machines because it tries to install for all users.

Patch by: jlabanca
Review by: cramsdale

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6995 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/plugins/ie/installer/installer.wxs.xml b/plugins/ie/installer/installer.wxs.xml
index 74ccdfe..6ac1fa4 100644
--- a/plugins/ie/installer/installer.wxs.xml
+++ b/plugins/ie/installer/installer.wxs.xml
@@ -4,7 +4,7 @@
 

   <!-- Variables. -->

   <?define appName = "Google Web Toolkit Developer Plugin for IE" ?>

-  <?define version = "0.9.0.0" ?>

+  <?define version = "0.9.1.0" ?>

   <?define upgradeCode = "9a5e649a-ec63-4c7d-99bf-75adb345e7e5" ?>

 

   <!--

@@ -38,6 +38,9 @@
     <!-- Suppress reboot prompts. -->

     <Property Id='REBOOT'>ReallySuppress</Property>

 

+    <!-- Install for current user. -->

+    <Property Id="ALLUSERS" Value="0" />

+

     <!-- Remove old version completely when upgrading.  -->

     <Upgrade

       Id='$(var.upgradeCode)'>

diff --git a/plugins/ie/prebuilt/gwt-dev-plugin.msi b/plugins/ie/prebuilt/gwt-dev-plugin.msi
index c3cd425..3bb11fb 100644
--- a/plugins/ie/prebuilt/gwt-dev-plugin.msi
+++ b/plugins/ie/prebuilt/gwt-dev-plugin.msi
Binary files differ