Windows MSI: Stay compatible with the upstream "StartMenuShortcuts" feature
authorMichael Schuster <michael@schuster.ms>
Tue, 29 Sep 2020 17:05:39 +0000 (19:05 +0200)
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>
Mon, 5 Oct 2020 07:18:35 +0000 (07:18 +0000)
Even though we only create a program shortcut in the Start Menu, try to make administrators lives easier by not diverging feature and option naming.

Signed-off-by: Michael Schuster <michael@schuster.ms>
admin/win/msi/Nextcloud.wxs
doc/installing.rst

index 7e8406d325639271d2f3bc2d64901a98113c9c63..4adaeba3b31fdcba9078ce81eaa2777eeec79d37 100644 (file)
             <Condition Level="0">(NO_SHELL_EXTENSIONS=1)</Condition>
         </Feature>
 
-        <Feature Id="StartMenuShortcut" Title="Start Menu Shortcut">
+        <Feature Id="StartMenuShortcuts" Title="Start Menu Shortcut">
             <ComponentRef Id="StartMenuIcon" />
             <Condition Level="0">(NO_START_MENU_SHORTCUTS=1)</Condition>
         </Feature>
index 25e4e2b081c6a461b08e576af528e3e40025a308..7e4d9495c039291f08d2c22ba810583985633292 100644 (file)
@@ -63,17 +63,17 @@ If you want to disable, e.g., desktop shortcut icons you can simply change the a
 
 See the following table for a list of available features:
 
-+--------------------+--------------------+----------------------------------+---------------------------+
-| Feature            | Enabled by default | Description                      |Property to disable        |
-+====================+====================+==================================+===========================+
-| Client             | Yes, required      | The actual client                |                           |
-+--------------------+--------------------+----------------------------------+---------------------------+
-| DesktopShortcut    | Yes                | Adds a shortcut to the desktop   |``NO_DESKTOP_SHORTCUT``    |
-+--------------------+--------------------+----------------------------------+---------------------------+
-| StartMenuShortcuts | Yes                | Adds shortcuts to the start menu |``NO_START_MENU_SHORTCUTS``|
-+--------------------+--------------------+----------------------------------+---------------------------+
-| ShellExtensions    | Yes                | Adds Explorer integration        |``NO_SHELL_EXTENSIONS``    |
-+--------------------+--------------------+----------------------------------+---------------------------+
++--------------------+--------------------+-----------------------------------+---------------------------+
+| Feature            | Enabled by default | Description                       |Property to disable        |
++====================+====================+===================================+===========================+
+| Client             | Yes, required      | The actual client                 |                           |
++--------------------+--------------------+-----------------------------------+---------------------------+
+| DesktopShortcut    | Yes                | Adds a shortcut to the desktop    |``NO_DESKTOP_SHORTCUT``    |
++--------------------+--------------------+-----------------------------------+---------------------------+
+| StartMenuShortcuts | Yes                | Adds a shortcut to the start menu |``NO_START_MENU_SHORTCUTS``|
++--------------------+--------------------+-----------------------------------+---------------------------+
+| ShellExtensions    | Yes                | Adds Explorer integration         |``NO_SHELL_EXTENSIONS``    |
++--------------------+--------------------+-----------------------------------+---------------------------+
 
 Installation
 ~~~~~~~~~~~~