Reviewers: cramsdale,

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

Fix:
====
The installer now specifies that it should install for the current user
only.


Please review this at http://gwt-code-reviews.appspot.com/104805

Affected files:
   plugins/ie/installer/installer.wxs.xml
   plugins/ie/prebuilt/gwt-dev-plugin.msi


Index: plugins/ie/installer/installer.wxs.xml
===================================================================
--- plugins/ie/installer/installer.wxs.xml      (revision 6977)
+++ plugins/ie/installer/installer.wxs.xml      (working copy)
@@ -4,7 +4,7 @@

    <!-- Variables. -->
    <?define appName = "Google Web Toolkit Developer Plugin for IE" ?>
-  <?define version = "0.9.0.0" ?>
+  <?define version = "0.9.0.1" ?>
    <?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)'>
Index: plugins/ie/prebuilt/gwt-dev-plugin.msi
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream


-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to