diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-08-07 17:51:38 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-19 03:43:15 +0200 |
commit | 83b512a15ead126259c5f426087a784bf371b6d1 (patch) | |
tree | f0eda12eb002b3627b115dba4003639a98f1891a /officecfg | |
parent | 04f02c657eaed60690d250173f01766a0811dbcb (diff) |
add registry part for new automated updater
Change-Id: I34ebc8b971374dd7223f98ea6710b54240bda565
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/files.mk | 1 | ||||
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Update.xcs | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/officecfg/files.mk b/officecfg/files.mk index 5c2703152353..ef53818c427a 100644 --- a/officecfg/files.mk +++ b/officecfg/files.mk @@ -95,6 +95,7 @@ officecfg_XCSFILES := \ Office/UI/WriterWebWindowState \ Office/UI/WriterWindowState \ Office/UI/XFormsWindowState \ + Office/Update \ Office/Views \ Office/Writer \ Office/WriterWeb \ diff --git a/officecfg/registry/schema/org/openoffice/Office/Update.xcs b/officecfg/registry/schema/org/openoffice/Office/Update.xcs new file mode 100644 index 000000000000..145adb787f78 --- /dev/null +++ b/officecfg/registry/schema/org/openoffice/Office/Update.xcs @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + --> + +<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd"> +<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="Update" oor:package="org.openoffice.Office" xml:lang="en-US"> + <info> + <desc>Contains settings for the Updater</desc> + </info> + <component> + <group oor:name="Update"> + <info> + <desc>All Settings for the Updater</desc> + </info> + <prop oor:name="Enabled" oor:type="xs:boolean" oor:nillable="false"> + <info> + <desc>Determines if the automatic Updater is enabled or disabled</desc> + </info> + <value>true</value> + </prop> + <prop oor:name="Mode" oor:type="xs:int" oor:nillable="false"> + <info> + <desc>Selects if the the user should be asked about updates or nor</desc> + </info> + <value>Some Value</value> + </prop> + <prop oor:name="LastUpdateTime" oor:type="xs:int" oor:nillable="false"> + <info> + <desc>The last time the update check ran</desc> + </info> + <value>-1</value> + </prop> + <prop oor:name="URL" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The URL that is used for the update check</desc> + </info> + <value>https://update.libreoffice.org/</value> + </prop> + <prop oor:name="UpdateChannel" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The update channel that is current use</desc> + </info> + <value>Release</value> + </prop> + </group> + </component> +</oor:component-schema> |