diff options
| author | Rider Linden <rider@lindenlab.com> | 2019-03-01 16:12:10 -0800 | 
|---|---|---|
| committer | Rider Linden <rider@lindenlab.com> | 2019-03-01 16:12:10 -0800 | 
| commit | 122e2676ed5c1a79e683421d4012ac9e8da3df4b (patch) | |
| tree | 7b961a4e1cbddd8d76fa3f8c1a98b96d2d24d0b5 /indra/newview/app_settings | |
| parent | e1a76999c3e8aad337d765fcd6eb50c8191409ea (diff) | |
Add a command line flag to prevent the viewer from launching the update checker.  To use from debugger secondlife-bin->properties->Debugging->Command Arguments add "--skipupdatecheck"
Diffstat (limited to 'indra/newview/app_settings')
| -rw-r--r-- | indra/newview/app_settings/cmd_line.xml | 9 | ||||
| -rw-r--r-- | indra/newview/app_settings/settings.xml | 13 | 
2 files changed, 21 insertions, 1 deletions
| diff --git a/indra/newview/app_settings/cmd_line.xml b/indra/newview/app_settings/cmd_line.xml index e4e1cdcf44..4e186292f7 100644 --- a/indra/newview/app_settings/cmd_line.xml +++ b/indra/newview/app_settings/cmd_line.xml @@ -407,5 +407,14 @@        <integer>1</integer>        <!-- Special case. Mapped to settings procedurally. -->      </map> + +    <key>skipupdatecheck</key> +    <map> +      <key>desc</key> +      <string>Skips update check at startup.</string> +      <key>map-to</key> +      <string>CmdLineSkipUpdater</string> +    </map> +    </map>  </llsd> diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 3e8a854df3..088bc3dfac 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -1940,7 +1940,18 @@        <key>Value</key>        <string/>      </map> -    <key>ConnectAsGod</key> +    <key>CmdLineSkipUpdater</key> +    <map> +      <key>Comment</key> +      <string>Command line skip updater check.</string> +      <key>Persist</key> +      <integer>0</integer> +      <key>Type</key> +      <string>Boolean</string> +      <key>Value</key> +      <integer>0</integer> +    </map> +  <key>ConnectAsGod</key>      <map>        <key>Comment</key>        <string>Log in a god if you have god access.</string> | 
