changed groupId of ui bundles and fragments and updated paper ui fragment (removed md-icons, corrected default path and enabled control ui) (#45)
Signed-off-by: Kai Kreuzer <kai@openhab.org>pull/47/head
parent
ee40acfa5f
commit
c9845400db
|
@ -11,6 +11,7 @@
|
|||
<version>2.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.openhab.ui</groupId>
|
||||
<artifactId>org.openhab.ui.basicui</artifactId>
|
||||
|
||||
<name>openHAB Basic UI Dashboard Integration</name>
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
<version>2.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.openhab.ui</groupId>
|
||||
<artifactId>org.openhab.ui.classicui</artifactId>
|
||||
|
||||
<name>openHAB Classic UI Dashboard Integration</name>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<version>2.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.openhab.ui</groupId>
|
||||
<artifactId>org.openhab.ui.dashboard</artifactId>
|
||||
<name>openHAB Dashboard UI</name>
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<version>2.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.openhab.ui</groupId>
|
||||
<artifactId>org.openhab.ui.iconset.classic</artifactId>
|
||||
<name>openHAB Classic Iconset</name>
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 561 KiB |
Binary file not shown.
Binary file not shown.
|
@ -2,12 +2,12 @@
|
|||
angular.module('PaperUI.constants', [])
|
||||
.constant('globalConfig', {
|
||||
'advancedDefault': true,
|
||||
'defaultRoute': '/setup/wizard'
|
||||
'defaultRoute': '/inbox/search'
|
||||
}).constant('restConfig', {
|
||||
'restPath': '/rest',
|
||||
'eventPath': $('#authentication').data('access-token') != '{{ACCESS_TOKEN}}' ? '/rest/events?access_token=' + $('#authentication').data('access-token') : '/rest/events'
|
||||
}).constant('moduleConfig', {
|
||||
'control': false,
|
||||
'control': true,
|
||||
'configuration': true,
|
||||
'setup': true,
|
||||
'configuration': true,
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
<version>2.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.openhab.ui</groupId>
|
||||
<artifactId>org.openhab.ui.paperui</artifactId>
|
||||
|
||||
<name>openHAB Paper UI Theme Fragment</name>
|
||||
|
|
|
@ -96,8 +96,8 @@
|
|||
<feature>openhab-dashboard</feature>
|
||||
<feature>esh-ui-basic</feature>
|
||||
<feature>esh-ui-icon</feature>
|
||||
<bundle start-level="80">mvn:org.openhab.core/org.openhab.ui.basicui/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.core/org.openhab.ui.iconset.classic/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.ui/org.openhab.ui.basicui/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.ui/org.openhab.ui.iconset.classic/${project.version}</bundle>
|
||||
<config name="org.eclipse.smarthome.basicui">
|
||||
defaultSitemap = _default
|
||||
iconType = svg
|
||||
|
@ -109,8 +109,8 @@
|
|||
<feature>openhab-dashboard</feature>
|
||||
<feature>esh-ui-classic</feature>
|
||||
<feature>esh-ui-icon</feature>
|
||||
<bundle start-level="80">mvn:org.openhab.core/org.openhab.ui.classicui/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.core/org.openhab.ui.iconset.classic/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.ui/org.openhab.ui.classicui/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.ui/org.openhab.ui.iconset.classic/${project.version}</bundle>
|
||||
<config name="org.eclipse.smarthome.classicui">
|
||||
defaultSitemap = _default
|
||||
</config>
|
||||
|
@ -120,7 +120,7 @@
|
|||
<feature>openhab-runtime-base</feature>
|
||||
<feature>openhab-dashboard</feature>
|
||||
<feature>esh-ui-paper</feature>
|
||||
<bundle start-level="80">mvn:org.openhab.core/org.openhab.ui.paperui/${project.version}</bundle>
|
||||
<bundle start-level="80">mvn:org.openhab.ui/org.openhab.ui.paperui/${project.version}</bundle>
|
||||
</feature>
|
||||
|
||||
</features>
|
||||
|
|
Loading…
Reference in New Issue