diff --git a/_data/bindings.csv b/_data/bindings.csv index c31cbb4df..e3809806d 100644 --- a/_data/bindings.csv +++ b/_data/bindings.csv @@ -11,7 +11,7 @@ astro,Astro,"The Astro binding is used for calculating many DateTime and positio autelis,Autelis Pool Control,"Autelis manufactures a network enabled pool interface for many popular pool systems. See [the Autelis website](http://www.autelis.com) and the [Autelis Command Protocol](http://www.autelis.com/wiki/index.php?title=Pool_Control_(PI)_HTTP_Command_Reference) for more information." avmfritz,AVM FRITZ!,"The binding integrates the AHA ( [AVM Home Automation](http://avm.de/ratgeber/smart-home/) ) system." dscalarm,DSC Alarm,"This is an OpenHAB binding for a DSC PowerSeries Alarm System utilizing the EyezOn Envisalink 3/2DS interface or the DSC IT-100 RS-232 interface." -freebox,Freebox,"This binding integrates the [Freebox Revolution](http://www.free.fr/adsl/freebox-revolution.html) to your openHab installation." +freebox,Freebox Configuration,"This binding integrates the [Freebox Revolution](http://www.free.fr/adsl/freebox-revolution.html) to your openHab installation." harmonyhub,Logitech Harmony Hub,"The Harmony Hub binding is used to enable communication between openHAB2 and multiple Logitech Harmony Hub devices. The API exposed by the Harmony Hub is relatively limited, but it does allow for reading the current activity as well as setting the activity and sending device commands." homematic,Homematic,"This is the binding for the [eQ-3 Homematic Solution](http://www.eq-3.de/)." ipp,IPP,"This binding integrates printers, which implement the Internet Printing protocol (IPP). This is the successor of the CUPS binding." @@ -30,7 +30,6 @@ rme,RME,"This binding integrates the RME RainManager rain water pump and managem samsungtv,Samsung TV,"This binding integrates the [Samsung TV's](http://www.samsung.com)." smaenergymeter,SMA Energy Meter,"This Binding is used to display the measured values of a SMA Energy Meter device. It shows purchased and grid feed-in power and energy." squeezebox,Logitech Squeezebox,"This binding integrates the [Logitech Media Server](http://www.mysqueezebox.com) and compatible Squeeze players." -systeminfo,Systeminfo,"System information Binding provides operating system and hardware information including:" tesla,Tesla,"This binding integrates the [Tesla Electrical Vehicle](http://www.teslamotors.com)." urtsi,Somfy URTSI II,"The addressable Universal RTS Interface II (URTSI II) can be used to communicate between home automation or other third party systems and SOMFY’s RTS Motors and controls. It is capable of individual or group control, and can be operated via infrared remote, RS232 and RS485 serial communication. Once an input is activated, an RTS radio command is sent to the automated window treatment." vitotronic,vitotronic,"Viessmann heating systems with vitotronic has a optolink Interface for maintenance." diff --git a/_includes/developersguide-menu.html b/_includes/dev-menu.html similarity index 62% rename from _includes/developersguide-menu.html rename to _includes/dev-menu.html index c6d046155..03616e44b 100644 --- a/_includes/developersguide-menu.html +++ b/_includes/dev-menu.html @@ -2,16 +2,16 @@ \ No newline at end of file diff --git a/_includes/gettingstarted-menu.html b/_includes/gettingstarted-menu.html deleted file mode 100644 index fd22e9276..000000000 --- a/_includes/gettingstarted-menu.html +++ /dev/null @@ -1,8 +0,0 @@ -{% include base.html %} {% assign docu = base %} - - diff --git a/_includes/header.html b/_includes/header.html index f6afc9793..219340104 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -29,18 +29,18 @@ diff --git a/_includes/usersmanual-menu.html b/_includes/user-menu.html similarity index 68% rename from _includes/usersmanual-menu.html rename to _includes/user-menu.html index 93cc51759..9f4d89aa4 100644 --- a/_includes/usersmanual-menu.html +++ b/_includes/user-menu.html @@ -1,39 +1,39 @@ {% include base.html %} {% assign docu = base %} diff --git a/_layouts/developersguide.html b/_layouts/developersguide.html index 9d0d971fa..429e539d1 100755 --- a/_layouts/developersguide.html +++ b/_layouts/developersguide.html @@ -3,7 +3,7 @@
- {% include developersguide-menu.html %} + {% include dev-menu.html %}
{{ content }} diff --git a/_layouts/documentation.html b/_layouts/documentation.html index c1e713bb9..b8afb371f 100755 --- a/_layouts/documentation.html +++ b/_layouts/documentation.html @@ -3,7 +3,7 @@
- {% include documentation-menu.html %} + {% include user-menu.html %}
{{ content }} diff --git a/_layouts/gettingstarted.html b/_layouts/gettingstarted.html deleted file mode 100755 index 67d0f5c57..000000000 --- a/_layouts/gettingstarted.html +++ /dev/null @@ -1,14 +0,0 @@ - {% include header.html bodyClass="documentation"%} - -
-
-
- {% include gettingstarted-menu.html %} -
-
- {{ content }} -
-
-
- - {% include footer.html %} diff --git a/_layouts/usersmanual.html b/_layouts/usersmanual.html index ca49e9db7..b8afb371f 100755 --- a/_layouts/usersmanual.html +++ b/_layouts/usersmanual.html @@ -3,7 +3,7 @@
- {% include usersmanual-menu.html %} + {% include user-menu.html %}
{{ content }} diff --git a/developers/development/evolution.md b/developers/development/evolution.md index cc2b16220..ea0e5a4a6 100644 --- a/developers/development/evolution.md +++ b/developers/development/evolution.md @@ -10,10 +10,3 @@ There are a few technical changes in openHAB 2 that are not compatible with open - the REST API does NOT support XML nor JSON-P anymore. It is now fully realized using JSON. - the REST API does not support websocket access anymore - it actually completely drops "push" support and only has a simple long-polling implementation to provide a basic backward-compatibility for clients. - - -# Compatibility layer - -There is a special bundle in openHAB 2, which serves as a compatibility layer. It effectively exposes and consumes all relevant classes and services from the `org.openhab` namespace and internally delegates or proxies them to the according `org.eclipse.smarthome` classes and services. - -It is described next page. \ No newline at end of file diff --git a/developers/introduction/introduction.md b/developers/introduction/introduction.md index 8f01f1721..c4eb1ad11 100644 --- a/developers/introduction/introduction.md +++ b/developers/introduction/introduction.md @@ -6,7 +6,7 @@ layout: developersguide # Overview -The _developer's guide_ contains practical and technical information for people willing to contribute to the development of openHAB or of one of its add-ons. +The _Developer Guide_ contains practical and technical information for people willing to contribute to the development of openHAB or of one of its add-ons. This manual is an on-going work. diff --git a/esh/guidelines.md b/esh/guidelines.md index 9f203a703..78ed4c2f3 100644 --- a/esh/guidelines.md +++ b/esh/guidelines.md @@ -1,5 +1,5 @@ --- -layout: developersguide +layout: documentation --- {% include base.html %} diff --git a/esh/items.md b/esh/items.md index 09b308a03..1104cebb0 100644 --- a/esh/items.md +++ b/esh/items.md @@ -8,6 +8,7 @@ layout: documentation Eclipse SmartHome has a strict separation between the physical world (the "things", see below) and the application, which is built around the notion of "items" (also called the virtual layer). +Items represent functionality that is used by the application (mainly user interfaces or automation logic). Items have a state and are used through events. The following item types are currently available (alphabetical order): diff --git a/esh/things.md b/esh/things.md index df354842b..f24f02d0a 100644 --- a/esh/things.md +++ b/esh/things.md @@ -4,7 +4,8 @@ layout: documentation # Things - +Things are the entities that can physically be added to a system and which can potentially provide many functionalities in one. It is important to note that things do not have to be devices, but they can also represent a web service or any other manageable source of information and functionality. +From a user perspective, they are relevant for the setup and configuration process, but not for the operation. Things can have configuration properties, which can be optional or mandatory. Such properties can be basic information like an IP address, an access token for a web service or a device specific configuration that alters its behavior. diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 000000000..aa98f6f78 Binary files /dev/null and b/favicon.ico differ diff --git a/features/addons.md b/features/addons.md index b7cffbc75..8687b9735 100644 --- a/features/addons.md +++ b/features/addons.md @@ -4,8 +4,6 @@ layout: usersmanual {% include base.html %} -# Add-on list - ## Available Add-ons All optional add-ons for openHAB 2 are part of the distribution. This includes all new 2.0 bindings as well as all 1.x add-ons that were reported to be compatible. diff --git a/features/bindings/astro/readme.md b/features/bindings/astro/readme.md index d74cfd92f..d933a3d90 100644 --- a/features/bindings/astro/readme.md +++ b/features/bindings/astro/readme.md @@ -58,14 +58,11 @@ The things requires the geolocation (latitude, longitude) for which the calculat ## Full Example Things: - ``` astro:sun:home [ geolocation="xx.xxxxxx,xx.xxxxxx", interval=60] astro:moon:home [ geolocation="xx.xxxxxx,xx.xxxxxx", interval=60] ``` - Items: - ``` DateTime Sunrise_Time "Sunrise [%1$tH:%1$tM]" { channel="astro:sun:home:rise#start" } DateTime Sunset_Time "Sunset [%1$tH:%1$tM]" { channel="astro:sun:home:set#start" } diff --git a/features/bindings/avmfritz/readme.md b/features/bindings/avmfritz/readme.md index 2c20d4831..06da82fb6 100644 --- a/features/bindings/avmfritz/readme.md +++ b/features/bindings/avmfritz/readme.md @@ -68,8 +68,7 @@ If correct credentials are set in the bridge configuration, connected AHA device ## Full Example -demo.Things: - +demo.things: ``` Bridge avm:fritzbox:192.168.178.1 [ ipAddress="192.168.0.64" ] { FRITZ_DECT_200 DECT1 [ ain="xxxxxxxxxxx" ] diff --git a/features/bindings/freebox/readme.md b/features/bindings/freebox/readme.md index 901bb588a..eb15897c0 100644 --- a/features/bindings/freebox/readme.md +++ b/features/bindings/freebox/readme.md @@ -4,7 +4,7 @@ layout: documentation {% include base.html %} -# Freebox Binding +# Freebox Binding Configuration This binding integrates the [Freebox Revolution](http://www.free.fr/adsl/freebox-revolution.html) to your openHab installation. diff --git a/features/bindings/keba/readme.md b/features/bindings/keba/readme.md index 267453f0c..57b32eb9d 100644 --- a/features/bindings/keba/readme.md +++ b/features/bindings/keba/readme.md @@ -39,8 +39,7 @@ All devices support the following channels (non exhaustive): ## Full Example -demo.Things: - +demo.things: ``` Thing keba:kecontactp20:1 [ipAddress="192.168.0.64", refreshInterval=30] ``` diff --git a/features/bindings/lutron/readme.md b/features/bindings/lutron/readme.md index 57afe05bc..84e94536f 100644 --- a/features/bindings/lutron/readme.md +++ b/features/bindings/lutron/readme.md @@ -73,8 +73,7 @@ Currently there is only one keypad thing type to cover all keypads. Not all chan ## Full Example -demo.Things: - +demo.things: ``` lutron:dimmer:theater (lutron:ipbridge:radiora2) [ integrationId=8, fadeOutTime=2 ] lutron:occupancysensor:theater (lutron:ipbridge:radiora2) [ integrationId=9 ] diff --git a/features/bindings/max/readme.md b/features/bindings/max/readme.md index c60af86f5..d7c8f8b78 100644 --- a/features/bindings/max/readme.md +++ b/features/bindings/max/readme.md @@ -30,18 +30,18 @@ If for any reason you need to manually define the Things and you are not exactly The discovery process for the MAX! binding works in 2 steps. When the binding is started or when manually triggered, the network is queried for the existence of a MAX! Cube lan gateway. When the Cube is found, it will become available in the discovery inbox. Periodically the network is queried again for a Cube. -Once the Cube is available in Openhab, all the devices connected to it are discovered and added to the discovery inbox. No scan is needed to trigger this. +Once the Cube is available in Openhab, all the devices connected to it are discovered and added to the discovery inbox. No scan is needed to trigger this. ## Binding Configuration -In the Openhab2 version of this binding there are no binding wide settings. +In the Openhab2 version of this binding there are no binding wide settings. All the configuration settings are now per MAX! Cube, hence in case you have multiple Cubes, they can run with alternative settings. ## Thing Configuration -All the things are identified by their Serial number, hence this is mandatory. -The Cube (`bridge` thing) also requires the IP address to be defined. -All other configuration is optional. +All the things are identified by their Serial number, hence this is mandatory. +The Cube (`bridge` thing) also requires the IP address to be defined. +All other configuration is optional. Note that several configuration options are automatically populated. Later versions of the binding may allow you to update this information. These properties can be found in the `Device Settings` section of parameters. @@ -96,33 +96,33 @@ sitemap demo label="Main Menu" Text item=maxActual icon="temperature" Switch item=maxBattery } - + } ``` ## Actual Temperature Update -Please be aware that the actual temperature measure for thermostats is only updated after the valve moved position or the thermostats mode has changed. Hence the temperature you see may be hours old. In that case you can update the temperature by changing the mode, wait approx. 2 minutes and change the mode back. -There is an experimental mode that does this automatically. This can be enabled by showing the "advanced settings"(e.g. in HABmin UI. Than the "Actual Temperature Refresh Rate" can be set. Minimum refresh rate once/10 minutes, recommended 60min to avoid excessive battery drain. +Please be aware that the actual temperature measure for thermostats is only updated after the valve moved position or the thermostats mode has changed. Hence the temperature you see may be hours old. In that case you can update the temperature by changing the mode, wait approx. 2 minutes and change the mode back. +There is an experimental mode that does this automatically. This can be enabled by showing the "advanced settings"(e.g. in Habmin UI. Than the "Actual Temperature Refresh Rate" can be set. Minimum refresh rate once/10 minutes, recommended 60min to avoid excessive battery drain. ## New Device Inclusion When clicking the discovery button for MAX! devices manually in the UI, you will start New Device Inclusion mode for 60s. During this time holding the _boost_ button on your device will link it to the Cube. ## Device configuration -In the _Configuration Parameters_ section of the device things you can update some of the device configuration parameters. Currently the following parameters can be updated: +In the _Configuration Parameters_ section of the device things you can update some of the device configuration parameters. Currently the following parameters can be updated: * _name_ Name of the thermostat stored in the Cube (also used by the eq3 software). -_Cube device configurable parameters_ +_Cube device configurable parameters_ * _ntpServer1_ The hostname for NTP Server 1 used by the Cube to get the time * _ntpServer2_ The hostname for NTP Server 2 used by the Cube to get the time -## Action Buttons (visible in HABmin) -In the HABmin thing configuration screen several action buttons are available to trigger special actions on the Cube +## Action Buttons (visible in Habmin) +In the Habmin thing configuration screen several action buttons are available to trigger special actions on the Cube * _Reset Cube Configuration_. This resets the MAX! Cube room and device information. Devices will need to be included again! To use this button you need to enable 'Advanced settings' * _Restart Cube_, triggers the reboot of a Cube. This can be used if a Cube became unresponsive to commands or no connection can be made. (e.g. if you tried to connect to the Cube with multiple applications at the same time) On the MAX! devices you can trigger the following action * _Delete Device from Cube_. Deletes the device from the MAX! Cube. Device will need to be included again! To use this button you need to enable 'Advanced settings' -Note: In PaperUI there are no action buttons. You can trigger these actions changing from 'No Action' in the dropdown to the action value. \ No newline at end of file +Note: In PaperUI there are no action buttons. You can trigger these actions changing from 'No Action' in the dropdown to the action value. \ No newline at end of file diff --git a/features/bindings/network/readme.md b/features/bindings/network/readme.md index 310996cbc..d368dd4ce 100644 --- a/features/bindings/network/readme.md +++ b/features/bindings/network/readme.md @@ -41,8 +41,7 @@ All devices support some of the following channels: ## Full Example -demo.Things: - +demo.things: ``` network:device:1 [ hostname="192.168.0.64", port="0", retry="1", timeout="5000", refresh_interval="60000", use_system_ping="false" ] ``` diff --git a/features/bindings/opensprinkler/readme.md b/features/bindings/opensprinkler/readme.md index fb569a75a..47a054d09 100644 --- a/features/bindings/opensprinkler/readme.md +++ b/features/bindings/opensprinkler/readme.md @@ -102,8 +102,7 @@ The following are only support by the OpenSprinkler using the HTTP API interface ## Full Example -demo.Things: - +demo.things: ``` opensprinkler:http:1 [ hostname="192.168.1.23", port=80, password="opendoor", refresh=60 ] ``` diff --git a/features/bindings/pioneeravr/readme.md b/features/bindings/pioneeravr/readme.md index 44349f1e4..d1b0fc6f2 100644 --- a/features/bindings/pioneeravr/readme.md +++ b/features/bindings/pioneeravr/readme.md @@ -80,8 +80,7 @@ Here after are the ID values of the input sources: ##Full example -*demo.Things: - +*demo.things: ``` pioneeravr:ipAvr:vsx921 [ address="192.168.188.89" ] ``` diff --git a/features/bindings/samsungtv/readme.md b/features/bindings/samsungtv/readme.md index d01af37dd..2041f5083 100644 --- a/features/bindings/samsungtv/readme.md +++ b/features/bindings/samsungtv/readme.md @@ -33,7 +33,7 @@ The Samsung TV Thing requires the host name and port address as a configuration E.g. ``` -Thing samsungtv:tv:livingroom [ hostName="192.168.1.10", port=55000, refreshInterval=1000] +Thing samsungtv:tv:livingroom [ hostname="192.168.1.10", port=55000, refreshInterval=1000] ``` ## Channels diff --git a/features/bindings/systeminfo/readme.md b/features/bindings/systeminfo/readme.md deleted file mode 100644 index b7b379604..000000000 --- a/features/bindings/systeminfo/readme.md +++ /dev/null @@ -1,203 +0,0 @@ ---- -layout: documentation ---- - -{% include base.html %} - -# Systeminfo Binding - -System information Binding provides operating system and hardware information including: - - - Operating system name, version and manufacturer - - CPU average recent load and load for last 1, 5, 15 minutes, name, description, number of physical and logical cores, running threads number, system uptime - - Free, total and available memory - - Free, total and available swap memory - - Hard drive name, model and serial number - - Free, total, available storage space and storage type (NTSFS, FAT32 ..) - - Battery information - estimated remaining time, capacity, name - - Sensors information - CPU voltage and temperature, fan speeds - - Display information - - Network IP,name and adapter name, mac, data sent and received, packages sent and received - - The binding uses [oshi](https://github.com/dblock/oshi) API to access this information regardless of the underlying platform and does not need any native parts. - -## Supported Things - -The binding supports only one thing type - **computer**. This thing represents a system with one storage volume, one display device and one network adapter. - -The thing has the following properties: - - `cpu_logicalCores` - Number of CPU logical cores - - `cpu_physicalCores` - Number of CPU physical cores - - `os_manufacturer` - The manufacturer of the operating system - - `os_version` - The version of the operating system - - `os_family` - The family of the operating system - -If multiple storage or display devices support is needed, new thing type has to be defined. This is workaround until [this issue] (https://github.com/eclipse/smarthome/issues/588) is resolved and it is possible to add dynamically channels to DSL defined thing. - -## Discovery - -The discovery service implementation tries to resolve the computer name. If the resolving process fails, the computer name is set to "Unknown". In both cases it creates a Discovery Result with thing type **computer**. - -When [this issue] (https://github.com/eclipse/smarthome/issues/1118) is resolved it will be possible to implement creation of dynamic channels (e.g. the binding will scan how much storage devices are present and create channel groups for them). At the moment this is not supported. -## Binding configuration - -No binding configuration required. - -## Thing configuration -The configuration of the Thing gives the user the possibility to update channels at different intervals. - -The thing has two configuration parameters: - * **interval_high** - refresh interval in seconds for channels with 'High' priority configuration. Default value is 1 s. - * **interval_medium** - refresh interval in seconds for channels with 'Medium' priority configuration. Default value is 60s. - -That means that by default configuration: - * channels with priority set to 'High' are updated every second - * channels with priority set to 'Medium' - every minute - * channels with priority set to 'Low' only at initializing or at Refresh command. - -For more info see [channel configuration](#channel-configuration) -## Channels - -The binding support several channel group. Each channel group, contains one or more channels. In the list below, you can find, how are channel group and channels id`s related. - -**thing** `computer` - * **group** `memory` - **channel** `available, total, used, available_percent` - * **group** `swap` - **channel** `available, total, used, available_percent` - * **group** `storage` (deviceIndex) - **channel** `available, total, used, available_percent, name, description, type` - * **group** `drive` (deviceIndex) - **channel** `name, model, serial` - * **group** `display` (deviceIndex) - **channel** `information` - * **group** `battery` (deviceIndex) - **channel** `name, remainingCapacity, remainingTime` - * **group** `cpu` - **channel** `name, description, load, load1, load5, load15, uptime` - * **group** `sensors` - **channel** `cpuTemp, cpuVoltage, fanSpeed` - * **group** `network` (deviceIndex) - **channel** `ip, mac, networkDisplayName, networkName, packagesSent, packagesReceived, dataSent, dataReceived` - -The groups marked with "deviceIndex" may have device index attached to the Channel Group. - - channel ::= chnanel_group & (deviceIndex) & # channel_id - - deviceIndex ::= number > 0 - - (e.g. *storage1#available*) - - The binding uses this index to get information about a specific device from a list of devices. - (e.g on a single computer could be installed several local disks with names C:\, D:\, E:\ - the first will have deviceIndex=0, the second deviceIndex=1 ant etc). If device with this index is not existing, the binding will display an error message on the console. - -In the table is shown more detailed information about each Channel type. -The binding introduces the following channels: - -| Chnanel ID | Channel Description | Supported item type | Default priority | Advanced | -| ------------- | ------------- |------------|----------|----------| -| load | Recent load in percents | Number | High | False | -| load1 | Load in percents for the last 1 minutes | Number | Medium | True | -| load5 | Load in percents for the last 5 minutes | Number | Medium | True | -| load15 | Load in percents for the last 1 minutes | Number | Medium | True | -| threads | Number of threads currently running | Number | Medium | True | -| uptime | System uptime (time after start) in minutes | Number | Medium | True | -| name | Name of the device | String | Low | False | -| available | Available size in MB | Number | High | False | -| used | Used size in MB | Number | High | False | -| total | Total size in MB | Number | Low | False | -| availablePercent | Available size in % | Number | High | False | -| model | The model of the device | String | Low | True | -| serial | The serial number of the device | String | Low | True | -| description | Description of the device | String | Low | True | -| type | Storage type | String | Low | True | -| cpuTemp | CPU Temperature in Celsius degrees | Number | High | True | -| cpuVoltage | CPU Voltage in V | Number | Medium | True | -| fanSpeed | Fan speed in rpm | Number | Medium | True | -| remainingTime | Remaining time in minutes | Number | Medium | False | -| remainingCapacity | Remaining capacity in percents | Number | Medium | False | -| information | Product, manufacturer, SN, width and height of the display in cm | String | Low | True | -| ip | Host IP address of the network | String | Low | False | -| mac | MAC address | String | Low | True | -| networkName | The name of the network. | String | Low | False | -| networkDisplayName | The display name of the network | String | Low | False | -| packagesSent | Number of packages sent | Number | Medium | True | -| packagesReceived | Number of packages received | Number | Medium | True | -| dataSent | Data sent in MB | Number | Medium | True | -| dataReceived | Data received in MB | Number | Medium | True | - -##Channel configuration - -Each of the channels has a default configuration parameter - priority. It has the following options: - - **High** - - **Medium** - - **Low** - -## Full example - -Things: - -``` -systeminfo:computer:work [interval_high=3, interval_medium=60] -``` - -Items: - -``` -/* Network information*/ -String Network_AdapterName { channel="systeminfo:computer:work:network#networkDisplayName" } -String Network_Name { channel="systeminfo:computer:work:network#networkName" } -String Network_IP { channel="systeminfo:computer:work:network#ip" } -String Network_Mac { channel="systeminfo:computer:work:network#mac" } -Number Network_DataSent { channel="systeminfo:computer:work:network#dataSent" } -Number Network_DataRecevied { channel="systeminfo:computer:work:network#dataReceived" } -Number Network_PackagesSent { channel="systeminfo:computer:work:network#packagesSent" } -Number Network_PackagesRecevied { channel="systeminfo:computer:work:network#packagesReceived" } - -/* CPU information*/ -String CPU_Name { channel="systeminfo:computer:work:cpu#name" } -String CPU_Description { channel="systeminfo:computer:work:cpu#description" } -Number CPU_Load { channel="systeminfo:computer:work:cpu#load"} -Number CPU_Load1 { channel="systeminfo:computer:work:cpu#load1" } -Number CPU_Load5 { channel="systeminfo:computer:work:cpu#load5" } -Number CPU_Load15 { channel="systeminfo:computer:work:cpu#load15" } -Number CPU_Load1 { channel="systeminfo:computer:work:cpu#load1" } -Number CPU_Threads { channel="systeminfo:computer:work:cpu#threads" } -Number CPU_Uptime { channel="systeminfo:computer:work:cpu#uptime" } - -/* Drive information*/ -String Drive_Name { channel="systeminfo:computer:work:drive#name" } -String Drive_Model { channel="systeminfo:computer:work:drive#model" } -String Drive_Serial { channel="systeminfo:computer:work:drive#serial" } - -/* Storage information*/ -String Storage_Name { channel="systeminfo:computer:work:storage#name" } -String Storage_Type { channel="systeminfo:computer:work:storage#type" } -String Storage_Description { channel="systeminfo:computer:work:storage#description" } -Number Storage_Available { channel="systeminfo:computer:work:storage#available" } -Number Storage_Used { channel="systeminfo:computer:work:storage#used" } -Number Storage_Total { channel="systeminfo:computer:work:storage#total" } -Number Storage_Available_Percent { channel="systeminfo:computer:work:storage#availablePercent" } - -/* Memory information*/ -Number Memory_Available { channel="systeminfo:computer:work:memory#available" } -Number Memory_Used { channel="systeminfo:computer:work:memory#used" } -Number Memory_Total { channel="systeminfo:computer:work:memory#total" } -Number Memory_Available_Percent { channel="systeminfo:computer:work:memory#availablePercent" } - -/* Swap memory information*/ -Number Swap_Available { channel="systeminfo:computer:work:swap#available" } -Number Swap_Used { channel="systeminfo:computer:work:swap#used" } -Number Swap_Total { channel="systeminfo:computer:work:swap#total" } -Number Swap_Available_Percent { channel="systeminfo:computer:work:swap#availablePercent" } - -/* Battery information*/ -String Battery_Name { channel="systeminfo:computer:work:battery#name" } -Number Battery_RemainingCapacity { channel="systeminfo:computer:work:battery#remainingCapacity" } -Number Battery_RemainingTime { channel="systeminfo:computer:work:battery#remainingTime" } - -/* Display information*/ -String Display_Description { channel="systeminfo:computer:work:display#information" } - -/* Sensors information*/ -Number Sensor_CPUTemp { channel="systeminfo:computer:work:sensors#cpuTemp" } -Number Sensor_CPUVoltage { channel="systeminfo:computer:work:sensors#cpuVoltage" } -Number Sensor_FanSpeed { channel="systeminfo:computer:work:sensors#fanSpeed" } -``` diff --git a/features/bindings/tesla/readme.md b/features/bindings/tesla/readme.md index 3b42d45ea..1313d12ea 100644 --- a/features/bindings/tesla/readme.md +++ b/features/bindings/tesla/readme.md @@ -42,8 +42,7 @@ All devices support the following channels (non exhaustive): ## Full Example -demo.Things: - +demo.things: ``` Thing tesla:models:1 [ username="your.email@company.com", password="somepassword", vin="5YJSA7H25FFP53746"] ``` diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/README.md b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/README.md deleted file mode 100644 index 722bf1ffc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/README.md +++ /dev/null @@ -1,380 +0,0 @@ ---- -layout: documentation ---- - -{% include base.html %} - -# Classic Icon Set - -This is a modernized version of the original icon set of openHAB 1.

- -![alarm](icons/alarm.png) -![attic](icons/attic.png) -![baby_1](icons/baby_1.png) -![baby_2](icons/baby_2.png) -![baby_3](icons/baby_3.png) -![baby_4](icons/baby_4.png) -![baby_5](icons/baby_5.png) -![baby_6](icons/baby_6.png) -![bath](icons/bath.png) -![battery-0](icons/battery-0.png) -![battery-10](icons/battery-10.png) -![battery-100](icons/battery-100.png) -![battery-20](icons/battery-20.png) -![battery-30](icons/battery-30.png) -![battery-40](icons/battery-40.png) -![battery-50](icons/battery-50.png) -![battery-60](icons/battery-60.png) -![battery-70](icons/battery-70.png) -![battery-80](icons/battery-80.png) -![battery-90](icons/battery-90.png) -![battery](icons/battery.png) -![bedroom](icons/bedroom.png) -![bedroom_blue](icons/bedroom_blue.png) -![bedroom_orange](icons/bedroom_orange.png) -![bedroom_red](icons/bedroom_red.png) -![blinds-0](icons/blinds-0.png) -![blinds-10](icons/blinds-10.png) -![blinds-100](icons/blinds-100.png) -![blinds-20](icons/blinds-20.png) -![blinds-30](icons/blinds-30.png) -![blinds-40](icons/blinds-40.png) -![blinds-50](icons/blinds-50.png) -![blinds-60](icons/blinds-60.png) -![blinds-70](icons/blinds-70.png) -![blinds-80](icons/blinds-80.png) -![blinds-90](icons/blinds-90.png) -![blinds](icons/blinds.png) -![bluetooth](icons/bluetooth.png) -![boiler_viessmann](icons/boiler_viessmann.png) -![boy_1](icons/boy_1.png) -![boy_2](icons/boy_2.png) -![boy_3](icons/boy_3.png) -![boy_4](icons/boy_4.png) -![boy_5](icons/boy_5.png) -![boy_6](icons/boy_6.png) -![calendar](icons/calendar.png) -![camera](icons/camera.png) -![carbondioxide](icons/carbondioxide.png) -![cellar](icons/cellar.png) -![chart](icons/chart.png) -![cinema](icons/cinema.png) -![cinemascreen-0](icons/cinemascreen-0.png) -![cinemascreen-10](icons/cinemascreen-10.png) -![cinemascreen-100](icons/cinemascreen-100.png) -![cinemascreen-20](icons/cinemascreen-20.png) -![cinemascreen-30](icons/cinemascreen-30.png) -![cinemascreen-40](icons/cinemascreen-40.png) -![cinemascreen-50](icons/cinemascreen-50.png) -![cinemascreen-60](icons/cinemascreen-60.png) -![cinemascreen-70](icons/cinemascreen-70.png) -![cinemascreen-80](icons/cinemascreen-80.png) -![cinemascreen-90](icons/cinemascreen-90.png) -![cinemascreen](icons/cinemascreen.png) -![cistern-0](icons/cistern-0.png) -![cistern-10](icons/cistern-10.png) -![cistern-100](icons/cistern-100.png) -![cistern-20](icons/cistern-20.png) -![cistern-30](icons/cistern-30.png) -![cistern-40](icons/cistern-40.png) -![cistern-50](icons/cistern-50.png) -![cistern-60](icons/cistern-60.png) -![cistern-70](icons/cistern-70.png) -![cistern-80](icons/cistern-80.png) -![cistern-90](icons/cistern-90.png) -![cistern](icons/cistern.png) -![climate-on](icons/climate-on.png) -![climate](icons/climate.png) -![clock-on](icons/clock-on.png) -![clock](icons/clock.png) -![colorlight](icons/colorlight.png) -![colorwheel](icons/colorwheel.png) -![contact-ajar](icons/contact-ajar.png) -![contact-closed](icons/contact-closed.png) -![contact-open](icons/contact-open.png) -![contact](icons/contact.png) -![corridor](icons/corridor.png) -![dimmablelight-0](icons/dimmablelight-0.png) -![dimmablelight-10](icons/dimmablelight-10.png) -![dimmablelight-100](icons/dimmablelight-100.png) -![dimmablelight-20](icons/dimmablelight-20.png) -![dimmablelight-30](icons/dimmablelight-30.png) -![dimmablelight-40](icons/dimmablelight-40.png) -![dimmablelight-50](icons/dimmablelight-50.png) -![dimmablelight-60](icons/dimmablelight-60.png) -![dimmablelight-70](icons/dimmablelight-70.png) -![dimmablelight-80](icons/dimmablelight-80.png) -![dimmablelight-90](icons/dimmablelight-90.png) -![dimmablelight](icons/dimmablelight.png) -![door-closed](icons/door-closed.png) -![door-open](icons/door-open.png) -![door](icons/door.png) -![dryer-0](icons/dryer-0.png) -![dryer-1](icons/dryer-1.png) -![dryer-2](icons/dryer-2.png) -![dryer-3](icons/dryer-3.png) -![dryer-4](icons/dryer-4.png) -![dryer-5](icons/dryer-5.png) -![dryer](icons/dryer.png) -![energy](icons/energy.png) -![error](icons/error.png) -![fan](icons/fan.png) -![fan_box](icons/fan_box.png) -![fan_ceiling](icons/fan_ceiling.png) -![faucet](icons/faucet.png) -![fire-off](icons/fire-off.png) -![fire-on](icons/fire-on.png) -![fire](icons/fire.png) -![firstfloor](icons/firstfloor.png) -![flow](icons/flow.png) -![flowpipe](icons/flowpipe.png) -![frontdoor-closed](icons/frontdoor-closed.png) -![frontdoor-open](icons/frontdoor-open.png) -![frontdoor](icons/frontdoor.png) -![garage](icons/garage.png) -![garage_detached](icons/garage_detached.png) -![garage_detached_selected](icons/garage_detached_selected.png) -![garagedoor-0](icons/garagedoor-0.png) -![garagedoor-10](icons/garagedoor-10.png) -![garagedoor-100](icons/garagedoor-100.png) -![garagedoor-20](icons/garagedoor-20.png) -![garagedoor-30](icons/garagedoor-30.png) -![garagedoor-40](icons/garagedoor-40.png) -![garagedoor-50](icons/garagedoor-50.png) -![garagedoor-60](icons/garagedoor-60.png) -![garagedoor-70](icons/garagedoor-70.png) -![garagedoor-80](icons/garagedoor-80.png) -![garagedoor-90](icons/garagedoor-90.png) -![garagedoor-ajar](icons/garagedoor-ajar.png) -![garagedoor-closed](icons/garagedoor-closed.png) -![garagedoor-open](icons/garagedoor-open.png) -![garagedoor](icons/garagedoor.png) -![garden](icons/garden.png) -![gas](icons/gas.png) -![girl_1](icons/girl_1.png) -![girl_2](icons/girl_2.png) -![girl_3](icons/girl_3.png) -![girl_4](icons/girl_4.png) -![girl_5](icons/girl_5.png) -![girl_6](icons/girl_6.png) -![grass](icons/grass.png) -![greenhouse](icons/greenhouse.png) -![groundfloor](icons/groundfloor.png) -![group](icons/group.png) -![heating-0](icons/heating-0.png) -![heating-100](icons/heating-100.png) -![heating-20](icons/heating-20.png) -![heating-40](icons/heating-40.png) -![heating-60](icons/heating-60.png) -![heating-80](icons/heating-80.png) -![heating-off](icons/heating-off.png) -![heating-on](icons/heating-on.png) -![heating](icons/heating.png) -![house](icons/house.png) -![humidity-0](icons/humidity-0.png) -![humidity-10](icons/humidity-10.png) -![humidity-100](icons/humidity-100.png) -![humidity-20](icons/humidity-20.png) -![humidity-30](icons/humidity-30.png) -![humidity-40](icons/humidity-40.png) -![humidity-50](icons/humidity-50.png) -![humidity-60](icons/humidity-60.png) -![humidity-70](icons/humidity-70.png) -![humidity-80](icons/humidity-80.png) -![humidity-90](icons/humidity-90.png) -![humidity](icons/humidity.png) -![incline](icons/incline.png) -![keyring](icons/keyring.png) -![kitchen](icons/kitchen.png) -![light-off](icons/light-off.png) -![light-on](icons/light-on.png) -![light](icons/light.png) -![line-decline](icons/line-decline.png) -![line-incline](icons/line-incline.png) -![line-stagnation](icons/line-stagnation.png) -![line](icons/line.png) -![lock-closed](icons/lock-closed.png) -![lock-open](icons/lock-open.png) -![lock](icons/lock.png) -![man_1](icons/man_1.png) -![man_2](icons/man_2.png) -![man_3](icons/man_3.png) -![man_4](icons/man_4.png) -![man_5](icons/man_5.png) -![man_6](icons/man_6.png) -![microphone](icons/microphone.png) -![moon](icons/moon.png) -![motion](icons/motion.png) -![movecontrol](icons/movecontrol.png) -![network-off](icons/network-off.png) -![network-on](icons/network-on.png) -![network](icons/network.png) -![niveau](icons/niveau.png) -![office](icons/office.png) -![oil](icons/oil.png) -![outdoorlight](icons/outdoorlight.png) -![pantry](icons/pantry.png) -![parents-off](icons/parents-off.png) -![parents_1_1](icons/parents_1_1.png) -![parents_1_2](icons/parents_1_2.png) -![parents_1_3](icons/parents_1_3.png) -![parents_1_4](icons/parents_1_4.png) -![parents_1_5](icons/parents_1_5.png) -![parents_1_6](icons/parents_1_6.png) -![parents_2_1](icons/parents_2_1.png) -![parents_2_2](icons/parents_2_2.png) -![parents_2_3](icons/parents_2_3.png) -![parents_2_4](icons/parents_2_4.png) -![parents_2_5](icons/parents_2_5.png) -![parents_2_6](icons/parents_2_6.png) -![parents_3_1](icons/parents_3_1.png) -![parents_3_2](icons/parents_3_2.png) -![parents_3_3](icons/parents_3_3.png) -![parents_3_4](icons/parents_3_4.png) -![parents_3_5](icons/parents_3_5.png) -![parents_3_6](icons/parents_3_6.png) -![parents_4_1](icons/parents_4_1.png) -![parents_4_2](icons/parents_4_2.png) -![parents_4_3](icons/parents_4_3.png) -![parents_4_4](icons/parents_4_4.png) -![parents_4_5](icons/parents_4_5.png) -![parents_4_6](icons/parents_4_6.png) -![parents_5_1](icons/parents_5_1.png) -![parents_5_2](icons/parents_5_2.png) -![parents_5_3](icons/parents_5_3.png) -![parents_5_4](icons/parents_5_4.png) -![parents_5_5](icons/parents_5_5.png) -![parents_5_6](icons/parents_5_6.png) -![parents_6_1](icons/parents_6_1.png) -![parents_6_2](icons/parents_6_2.png) -![parents_6_3](icons/parents_6_3.png) -![parents_6_4](icons/parents_6_4.png) -![parents_6_5](icons/parents_6_5.png) -![parents_6_6](icons/parents_6_6.png) -![party](icons/party.png) -![pie](icons/pie.png) -![piggybank](icons/piggybank.png) -![player](icons/player.png) -![poweroutlet-au](icons/poweroutlet-au.png) -![poweroutlet-eu](icons/poweroutlet-eu.png) -![poweroutlet-off](icons/poweroutlet-off.png) -![poweroutlet-on](icons/poweroutlet-on.png) -![poweroutlet-uk](icons/poweroutlet-uk.png) -![poweroutlet-us](icons/poweroutlet-us.png) -![poweroutlet](icons/poweroutlet.png) -![present-off](icons/present-off.png) -![present](icons/present.png) -![pressure](icons/pressure.png) -![projector_benq](icons/projector_benq.png) -![pump](icons/pump.png) -![qualityofservice-0](icons/qualityofservice-0.png) -![qualityofservice-1](icons/qualityofservice-1.png) -![qualityofservice-2](icons/qualityofservice-2.png) -![qualityofservice-3](icons/qualityofservice-3.png) -![qualityofservice-4](icons/qualityofservice-4.png) -![radiator](icons/radiator.png) -![rain](icons/rain.png) -![receiver-off](icons/receiver-off.png) -![receiver-on](icons/receiver-on.png) -![receiver](icons/receiver.png) -![recorder](icons/recorder.png) -![returnpipe](icons/returnpipe.png) -![rgb](icons/rgb.png) -![rollershutter-0](icons/rollershutter-0.png) -![rollershutter-10](icons/rollershutter-10.png) -![rollershutter-100](icons/rollershutter-100.png) -![rollershutter-20](icons/rollershutter-20.png) -![rollershutter-30](icons/rollershutter-30.png) -![rollershutter-40](icons/rollershutter-40.png) -![rollershutter-50](icons/rollershutter-50.png) -![rollershutter-60](icons/rollershutter-60.png) -![rollershutter-70](icons/rollershutter-70.png) -![rollershutter-80](icons/rollershutter-80.png) -![rollershutter-90](icons/rollershutter-90.png) -![rollershutter](icons/rollershutter.png) -![settings](icons/settings.png) -![sewerage-0](icons/sewerage-0.png) -![sewerage-10](icons/sewerage-10.png) -![sewerage-100](icons/sewerage-100.png) -![sewerage-20](icons/sewerage-20.png) -![sewerage-30](icons/sewerage-30.png) -![sewerage-40](icons/sewerage-40.png) -![sewerage-50](icons/sewerage-50.png) -![sewerage-60](icons/sewerage-60.png) -![sewerage-70](icons/sewerage-70.png) -![sewerage-80](icons/sewerage-80.png) -![sewerage-90](icons/sewerage-90.png) -![sewerage](icons/sewerage.png) -![shield-0](icons/shield-0.png) -![shield-1](icons/shield-1.png) -![shield](icons/shield.png) -![signal-0](icons/signal-0.png) -![signal-1](icons/signal-1.png) -![signal-2](icons/signal-2.png) -![signal-3](icons/signal-3.png) -![signal-4](icons/signal-4.png) -![siren-off](icons/siren-off.png) -![siren-on](icons/siren-on.png) -![siren](icons/siren.png) -![slider-0](icons/slider-0.png) -![slider-10](icons/slider-10.png) -![slider-100](icons/slider-100.png) -![slider-20](icons/slider-20.png) -![slider-30](icons/slider-30.png) -![slider-40](icons/slider-40.png) -![slider-50](icons/slider-50.png) -![slider-60](icons/slider-60.png) -![slider-70](icons/slider-70.png) -![slider-80](icons/slider-80.png) -![slider-90](icons/slider-90.png) -![slider](icons/slider.png) -![smiley](icons/smiley.png) -![smoke](icons/smoke.png) -![sofa](icons/sofa.png) -![softener](icons/softener.png) -![solarplant](icons/solarplant.png) -![soundvolume-0](icons/soundvolume-0.png) -![soundvolume-100](icons/soundvolume-100.png) -![soundvolume-33](icons/soundvolume-33.png) -![soundvolume-66](icons/soundvolume-66.png) -![soundvolume](icons/soundvolume.png) -![soundvolume_mute](icons/soundvolume_mute.png) -![status](icons/status.png) -![suitcase](icons/suitcase.png) -![sun](icons/sun.png) -![sun_clouds](icons/sun_clouds.png) -![sunrise](icons/sunrise.png) -![sunset](icons/sunset.png) -![switch-off](icons/switch-off.png) -![switch-on](icons/switch-on.png) -![switch](icons/switch.png) -![television-on](icons/television-on.png) -![televison-off](icons/televison-off.png) -![temperature](icons/temperature.png) -![temperature_cold](icons/temperature_cold.png) -![temperature_hot](icons/temperature_hot.png) -![terrace](icons/terrace.png) -![text](icons/text.png) -![toilet](icons/toilet.png) -![vacation](icons/vacation.png) -![video](icons/video.png) -![wardrobe](icons/wardrobe.png) -![washingmachine](icons/washingmachine.png) -![washingmachine_2-0](icons/washingmachine_2-0.png) -![washingmachine_2-1](icons/washingmachine_2-1.png) -![washingmachine_2-2](icons/washingmachine_2-2.png) -![washingmachine_2-3](icons/washingmachine_2-3.png) -![washingmachine_2](icons/washingmachine_2.png) -![water](icons/water.png) -![wind](icons/wind.png) -![window-ajar](icons/window-ajar.png) -![window-closed](icons/window-closed.png) -![window-open](icons/window-open.png) -![window](icons/window.png) -![woman_1](icons/woman_1.png) -![woman_2](icons/woman_2.png) -![woman_3](icons/woman_3.png) -![woman_4](icons/woman_4.png) -![woman_5](icons/woman_5.png) -![woman_6](icons/woman_6.png) -![zoom](icons/zoom.png) diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/_iconcopy b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/_iconcopy deleted file mode 100644 index a7f1b0ed1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/_iconcopy +++ /dev/null @@ -1,155 +0,0 @@ -#!/bin/sh -# -# Create needed icon copies. -# - - -# Aliases - -cp -f house.png group.png -cp -f house.svg group.svg - - -# Alternative Types - -cp -f dimmablelight-0.png light-off.png -cp -f dimmablelight-0.svg light-off.svg -cp -f dimmablelight-100.png light-on.png -cp -f dimmablelight-100.svg light-on.svg - -cp -f garagedoor-70.png garagedoor-ajar.png -cp -f garagedoor-70.svg garagedoor-ajar.svg -cp -f garagedoor-100.png garagedoor-closed.png -cp -f garagedoor-100.svg garagedoor-closed.svg -cp -f garagedoor-0.png garagedoor-open.png -cp -f garagedoor-0.svg garagedoor-open.svg -cp -f garagedoor-ajar.png garagedoor.png -cp -f garagedoor-ajar.svg garagedoor.svg - -cp -f heating-0.png heating-off.png -cp -f heating-0.svg heating-off.svg -cp -f heating-100.png heating-on.png -cp -f heating-100.svg heating-on.svg - - -# Uninitialized State - -cp -f dimmablelight-100.png dimmablelight.png -cp -f dimmablelight-100.svg dimmablelight.svg - -cp -f fire-on.png fire.png -cp -f fire-on.svg fire.svg - -cp -f heating-on.png heating.png -cp -f heating-on.svg heating.svg - -cp -f light-on.png light.png -cp -f light-on.svg light.svg - -cp -f lock-closed.png lock.png -cp -f lock-closed.svg lock.svg - -cp -f receiver-on.png receiver.png -cp -f receiver-on.svg receiver.svg - -cp -f signal-4.png signal.png -cp -f signal-4.svg signal.svg - -cp -f siren-on.png siren.png -cp -f siren-on.svg siren.svg - -cp -f soundvolume-100.png soundvolume.png -cp -f soundvolume-100.svg soundvolume.svg - - -# ESH Channel Categories - -cp -f siren.png alarm.png -cp -f siren.svg alarm.svg - -cp -f battery-0.png battery.png -cp -f battery-0.svg battery.svg - -cp -f rollershutter-0.png blinds-0.png -cp -f rollershutter-0.svg blinds-0.svg -cp -f rollershutter-10.png blinds-10.png -cp -f rollershutter-10.svg blinds-10.svg -cp -f rollershutter-20.png blinds-20.png -cp -f rollershutter-20.svg blinds-20.svg -cp -f rollershutter-30.png blinds-30.png -cp -f rollershutter-30.svg blinds-30.svg -cp -f rollershutter-40.png blinds-40.png -cp -f rollershutter-40.svg blinds-40.svg -cp -f rollershutter-50.png blinds-50.png -cp -f rollershutter-50.svg blinds-50.svg -cp -f rollershutter-60.png blinds-60.png -cp -f rollershutter-60.svg blinds-60.svg -cp -f rollershutter-70.png blinds-70.png -cp -f rollershutter-70.svg blinds-70.svg -cp -f rollershutter-80.png blinds-80.png -cp -f rollershutter-80.svg blinds-80.svg -cp -f rollershutter-90.png blinds-90.png -cp -f rollershutter-90.svg blinds-90.svg -cp -f rollershutter-100.png blinds-100.png -cp -f rollershutter-100.svg blinds-100.svg -cp -f rollershutter.png blinds.png -cp -f rollershutter.svg blinds.svg - -cp -f colorwheel.png colorlight.png -cp -f colorwheel.svg colorlight.svg - -cp -f window-ajar.png contact-ajar.png -cp -f window-ajar.svg contact-ajar.svg -cp -f window-closed.png contact-closed.png -cp -f window-closed.svg contact-closed.svg -cp -f window-open.png contact-open.png -cp -f window-open.svg contact-open.svg -cp -f window.png contact.png -cp -f window.svg contact.svg - -cp -f dimmablelight-0.png slider-0.png -cp -f dimmablelight-0.svg slider-0.svg -cp -f dimmablelight-10.png slider-10.png -cp -f dimmablelight-10.svg slider-10.svg -cp -f dimmablelight-20.png slider-20.png -cp -f dimmablelight-20.svg slider-20.svg -cp -f dimmablelight-30.png slider-30.png -cp -f dimmablelight-30.svg slider-30.svg -cp -f dimmablelight-40.png slider-40.png -cp -f dimmablelight-40.svg slider-40.svg -cp -f dimmablelight-50.png slider-50.png -cp -f dimmablelight-50.svg slider-50.svg -cp -f dimmablelight-60.png slider-60.png -cp -f dimmablelight-60.svg slider-60.svg -cp -f dimmablelight-70.png slider-70.png -cp -f dimmablelight-70.svg slider-70.svg -cp -f dimmablelight-80.png slider-80.png -cp -f dimmablelight-80.svg slider-80.svg -cp -f dimmablelight-90.png slider-90.png -cp -f dimmablelight-90.svg slider-90.svg -cp -f dimmablelight-100.png slider-100.png -cp -f dimmablelight-100.svg slider-100.svg -cp -f dimmablelight.png slider.png -cp -f dimmablelight.svg slider.svg - -cp -f fan_box.png fan.png -cp -f fan_box.svg fan.svg - -cp -f receiver.png player.png -cp -f receiver.svg player.svg - -cp -f signal-0.png qualityofservice-0.png -cp -f signal-0.svg qualityofservice-0.svg -cp -f signal-1.png qualityofservice-1.png -cp -f signal-1.svg qualityofservice-1.svg -cp -f signal-2.png qualityofservice-2.png -cp -f signal-2.svg qualityofservice-2.svg -cp -f signal-3.png qualityofservice-3.png -cp -f signal-3.svg qualityofservice-3.svg -cp -f signal-4.png qualityofservice-4.png -cp -f signal-4.svg qualityofservice-4.svg -cp -f signal.png qualityofservice.png -cp -f signal.svg qualityofservice.svg - -cp -f microphone.png recorder.png -cp -f microphone.svg recorder.svg diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/alarm.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/alarm.png deleted file mode 100644 index f4ac89270..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/alarm.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/alarm.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/alarm.svg deleted file mode 100644 index ca0ea0ba5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/alarm.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/attic.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/attic.png deleted file mode 100644 index d15fafd1a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/attic.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/attic.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/attic.svg deleted file mode 100644 index 55bea1ebe..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/attic.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_1.png deleted file mode 100644 index 8dbe69956..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_1.svg deleted file mode 100644 index 7a3dc27c2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_1.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_2.png deleted file mode 100644 index 48de8565e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_2.svg deleted file mode 100644 index 7fecb8bd2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_2.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_3.png deleted file mode 100644 index c8b07d929..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_3.svg deleted file mode 100644 index ca6e166f1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_3.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_4.png deleted file mode 100644 index 4412eb0de..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_4.svg deleted file mode 100644 index 052d64c28..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_4.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_5.png deleted file mode 100644 index 93b14af0e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_5.svg deleted file mode 100644 index 9248bae60..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_5.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_6.png deleted file mode 100644 index 7b080f657..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_6.svg deleted file mode 100644 index af7af3e3f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/baby_6.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bath.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bath.png deleted file mode 100644 index 7e5fbbd38..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bath.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bath.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bath.svg deleted file mode 100644 index c66c1d22e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bath.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-0.png deleted file mode 100644 index 4f4e4caa8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-0.svg deleted file mode 100644 index e112d9daa..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-0.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-10.png deleted file mode 100644 index 389445154..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-10.svg deleted file mode 100644 index 202af8c95..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-10.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-100.png deleted file mode 100644 index 207b75fea..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-100.svg deleted file mode 100644 index 84c10ad42..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-100.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-20.png deleted file mode 100644 index 2c46cf098..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-20.svg deleted file mode 100644 index d67ab8e84..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-20.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-30.png deleted file mode 100644 index 0c22b254e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-30.svg deleted file mode 100644 index 282948a9d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-30.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-40.png deleted file mode 100644 index 0873c4a2b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-40.svg deleted file mode 100644 index 036a8b0ea..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-40.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-50.png deleted file mode 100644 index 327e0305b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-50.svg deleted file mode 100644 index 80d3e950c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-50.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-60.png deleted file mode 100644 index ae80eea59..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-60.svg deleted file mode 100644 index e15bf43bc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-60.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-70.png deleted file mode 100644 index 2833da5c9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-70.svg deleted file mode 100644 index c7ed8c7fc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-70.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-80.png deleted file mode 100644 index 6db4779f4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-80.svg deleted file mode 100644 index 3ebd53177..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-80.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-90.png deleted file mode 100644 index d23cf0b4c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-90.svg deleted file mode 100644 index 2031e75cf..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery-90.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery.png deleted file mode 100644 index 4f4e4caa8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery.svg deleted file mode 100644 index e112d9daa..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/battery.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom.png deleted file mode 100644 index d98aa9372..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom.svg deleted file mode 100644 index 65ec9aab3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_blue.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_blue.png deleted file mode 100644 index 23b832011..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_blue.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_blue.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_blue.svg deleted file mode 100644 index 216d44695..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_blue.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_orange.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_orange.png deleted file mode 100644 index bcff1afb1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_orange.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_orange.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_orange.svg deleted file mode 100644 index 3cc743fa8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_orange.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_red.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_red.png deleted file mode 100644 index 22cd81c88..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_red.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_red.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_red.svg deleted file mode 100644 index e3bec8048..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bedroom_red.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-0.png deleted file mode 100644 index 451aa241d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-0.svg deleted file mode 100644 index d22be37ed..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-0.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-10.png deleted file mode 100644 index 1ccd1e95b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-10.svg deleted file mode 100644 index cd808de5b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-10.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-100.png deleted file mode 100644 index cb1be9e94..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-100.svg deleted file mode 100644 index b8dfa323a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-100.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-20.png deleted file mode 100644 index 9c91afed6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-20.svg deleted file mode 100644 index f05db0f68..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-20.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-30.png deleted file mode 100644 index dbd602c09..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-30.svg deleted file mode 100644 index ecaccb327..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-30.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-40.png deleted file mode 100644 index 680931759..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-40.svg deleted file mode 100644 index 567a5bc07..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-40.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-50.png deleted file mode 100644 index 8567e3a50..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-50.svg deleted file mode 100644 index 517b70167..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-50.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-60.png deleted file mode 100644 index bcc40e6c9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-60.svg deleted file mode 100644 index 9a0900305..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-60.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-70.png deleted file mode 100644 index 55f9d28c2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-70.svg deleted file mode 100644 index 78b130269..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-70.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-80.png deleted file mode 100644 index 97ee1f2e5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-80.svg deleted file mode 100644 index 63c7dace8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-80.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-90.png deleted file mode 100644 index 1953b2053..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-90.svg deleted file mode 100644 index fdeb17174..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds-90.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds.png deleted file mode 100644 index 55f9d28c2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds.svg deleted file mode 100644 index 78b130269..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/blinds.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bluetooth.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bluetooth.png deleted file mode 100644 index a0e1e3eb1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bluetooth.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bluetooth.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bluetooth.svg deleted file mode 100644 index ec60c1fa4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/bluetooth.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boiler_viessmann.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boiler_viessmann.png deleted file mode 100644 index 05bdebfa2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boiler_viessmann.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boiler_viessmann.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boiler_viessmann.svg deleted file mode 100644 index eee51b401..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boiler_viessmann.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_1.png deleted file mode 100644 index c0ebbf776..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_1.svg deleted file mode 100644 index b15226ef5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_1.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_2.png deleted file mode 100644 index 2413f5281..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_2.svg deleted file mode 100644 index 4a917e3e5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_2.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_3.png deleted file mode 100644 index 501d6f342..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_3.svg deleted file mode 100644 index c5a413237..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_3.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_4.png deleted file mode 100644 index 49aadde61..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_4.svg deleted file mode 100644 index 2a567eacd..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_4.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_5.png deleted file mode 100644 index 11a98687e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_5.svg deleted file mode 100644 index 33df3253c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_5.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_6.png deleted file mode 100644 index 632653868..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_6.svg deleted file mode 100644 index 915a376d3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/boy_6.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/calendar.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/calendar.png deleted file mode 100644 index 3bc58263a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/calendar.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/calendar.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/calendar.svg deleted file mode 100644 index 1d261cd8b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/calendar.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/camera.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/camera.png deleted file mode 100644 index 5a0fce176..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/camera.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/camera.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/camera.svg deleted file mode 100644 index d173c99de..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/camera.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/carbondioxide.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/carbondioxide.png deleted file mode 100644 index 3d2853bce..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/carbondioxide.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/carbondioxide.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/carbondioxide.svg deleted file mode 100644 index 30d8b91ef..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/carbondioxide.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cellar.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cellar.png deleted file mode 100644 index 0892c480d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cellar.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cellar.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cellar.svg deleted file mode 100644 index fd2a8ca96..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cellar.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/chart.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/chart.png deleted file mode 100644 index 41d2027d6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/chart.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/chart.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/chart.svg deleted file mode 100644 index 6bbf32974..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/chart.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinema.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinema.png deleted file mode 100644 index f32ee016d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinema.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinema.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinema.svg deleted file mode 100644 index 85d221b2e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinema.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-0.png deleted file mode 100644 index cb94cbf1e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-0.svg deleted file mode 100644 index dad4de886..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-0.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-10.png deleted file mode 100644 index b6a237c43..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-10.svg deleted file mode 100644 index d64213345..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-10.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-100.png deleted file mode 100644 index 66807aca5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-100.svg deleted file mode 100644 index 077b2836e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-100.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-20.png deleted file mode 100644 index 6c08a6a61..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-20.svg deleted file mode 100644 index 8c603c2cd..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-20.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-30.png deleted file mode 100644 index 57e28f26b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-30.svg deleted file mode 100644 index c7af162a9..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-30.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-40.png deleted file mode 100644 index 66d3730f5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-40.svg deleted file mode 100644 index 39b66a9ae..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-40.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-50.png deleted file mode 100644 index 8ad98cfb4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-50.svg deleted file mode 100644 index efbbb8f79..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-50.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-60.png deleted file mode 100644 index f0ecc1d71..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-60.svg deleted file mode 100644 index 96448fb71..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-60.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-70.png deleted file mode 100644 index 37ea256b5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-70.svg deleted file mode 100644 index f4d298239..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-70.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-80.png deleted file mode 100644 index 058dde073..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-80.svg deleted file mode 100644 index 3a27bde0b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-80.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-90.png deleted file mode 100644 index b89061013..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-90.svg deleted file mode 100644 index 67153930c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen-90.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen.png deleted file mode 100644 index 8ad98cfb4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen.svg deleted file mode 100644 index efbbb8f79..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cinemascreen.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-0.png deleted file mode 100644 index 21cec1b17..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-0.svg deleted file mode 100644 index 1c4006eff..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-0.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-10.png deleted file mode 100644 index 2fb44d018..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-10.svg deleted file mode 100644 index 310a93430..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-10.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-100.png deleted file mode 100644 index 1a942bb88..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-100.svg deleted file mode 100644 index 9d6e8ac47..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-100.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-20.png deleted file mode 100644 index 5960f279e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-20.svg deleted file mode 100644 index df384d2f6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-20.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-30.png deleted file mode 100644 index a04a09531..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-30.svg deleted file mode 100644 index ee28f1edc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-30.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-40.png deleted file mode 100644 index b9d8b9db8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-40.svg deleted file mode 100644 index 6f37842a3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-40.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-50.png deleted file mode 100644 index 9109e335b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-50.svg deleted file mode 100644 index 1f263581e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-50.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-60.png deleted file mode 100644 index e26f7ed54..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-60.svg deleted file mode 100644 index 8cd1a35f7..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-60.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-70.png deleted file mode 100644 index 7344abc14..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-70.svg deleted file mode 100644 index 3644f2101..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-70.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-80.png deleted file mode 100644 index 4c042c899..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-80.svg deleted file mode 100644 index 401c7e5fa..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-80.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-90.png deleted file mode 100644 index ac38c96bc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-90.svg deleted file mode 100644 index 9c5b51ec6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern-90.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern.png deleted file mode 100644 index b5c87d9c7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern.svg deleted file mode 100644 index a41d5f526..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/cistern.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate-on.png deleted file mode 100644 index 1c6525f47..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate-on.svg deleted file mode 100644 index 0e055ffb9..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate-on.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate.png deleted file mode 100644 index ceb0192fc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate.svg deleted file mode 100644 index 9b4b7d99f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/climate.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock-on.png deleted file mode 100644 index 2be0feb7f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock-on.svg deleted file mode 100644 index 337a658ac..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock-on.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock.png deleted file mode 100644 index 56e165e20..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock.svg deleted file mode 100644 index 080da521e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/clock.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorlight.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorlight.png deleted file mode 100644 index 684c419e3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorlight.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorlight.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorlight.svg deleted file mode 100644 index 3ac83c0f2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorlight.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorwheel.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorwheel.png deleted file mode 100644 index 684c419e3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorwheel.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorwheel.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorwheel.svg deleted file mode 100644 index 3ac83c0f2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/colorwheel.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-ajar.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-ajar.png deleted file mode 100644 index 14178b6e4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-ajar.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-ajar.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-ajar.svg deleted file mode 100644 index 987c0f1e6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-ajar.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-closed.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-closed.png deleted file mode 100644 index 2734184a7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-closed.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-closed.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-closed.svg deleted file mode 100644 index bc0a688b8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-closed.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-open.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-open.png deleted file mode 100644 index 82aea4ee1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-open.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-open.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-open.svg deleted file mode 100644 index 0d780641d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact-open.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact.png deleted file mode 100644 index c3aade1f9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact.svg deleted file mode 100644 index 5f871f096..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/contact.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/corridor.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/corridor.png deleted file mode 100644 index ba597ca22..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/corridor.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/corridor.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/corridor.svg deleted file mode 100644 index 1a806f572..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/corridor.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-0.png deleted file mode 100644 index f581dd94c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-0.svg deleted file mode 100644 index 3853ad06b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-0.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-10.png deleted file mode 100644 index 6a6641d37..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-10.svg deleted file mode 100644 index 101b5b236..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-10.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-100.png deleted file mode 100644 index 0e9964872..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-100.svg deleted file mode 100644 index a2797c506..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-100.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-20.png deleted file mode 100644 index b3a2c19ee..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-20.svg deleted file mode 100644 index 3c3ca481c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-20.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-30.png deleted file mode 100644 index 82bdc8a49..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-30.svg deleted file mode 100644 index 5625e61d9..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-30.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-40.png deleted file mode 100644 index b2bc5b190..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-40.svg deleted file mode 100644 index 1bc4e909e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-40.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-50.png deleted file mode 100644 index c2bda42a1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-50.svg deleted file mode 100644 index d0391a0dc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-50.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-60.png deleted file mode 100644 index a5ba164a1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-60.svg deleted file mode 100644 index 49e35c04f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-60.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-70.png deleted file mode 100644 index a4ac4ceba..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-70.svg deleted file mode 100644 index 2b348e730..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-70.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-80.png deleted file mode 100644 index 4f97751b2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-80.svg deleted file mode 100644 index 8818b22a1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-80.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-90.png deleted file mode 100644 index f07ce5e7d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-90.svg deleted file mode 100644 index 3d7f919a0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight-90.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight.png deleted file mode 100644 index 0e9964872..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight.svg deleted file mode 100644 index a2797c506..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dimmablelight.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-closed.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-closed.png deleted file mode 100644 index e7a6240d3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-closed.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-closed.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-closed.svg deleted file mode 100644 index d98e396cb..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-closed.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-open.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-open.png deleted file mode 100644 index 668f9334f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-open.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-open.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-open.svg deleted file mode 100644 index 869e59d08..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door-open.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door.png deleted file mode 100644 index 668f9334f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door.svg deleted file mode 100644 index 869e59d08..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/door.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-0.png deleted file mode 100644 index 7a1902303..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-0.svg deleted file mode 100644 index 827b1ecb0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-0.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-1.png deleted file mode 100644 index e1108fbba..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-1.svg deleted file mode 100644 index 0add846dc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-1.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-2.png deleted file mode 100644 index 56e806098..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-2.svg deleted file mode 100644 index 9f9dcecfe..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-3.png deleted file mode 100644 index 10d213077..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-3.svg deleted file mode 100644 index 3e076e644..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-3.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-4.png deleted file mode 100644 index 0cb83a0e3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-4.svg deleted file mode 100644 index 5fe0c4a39..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-4.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-5.png deleted file mode 100644 index dc823a946..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-5.svg deleted file mode 100644 index fb8998da6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer-5.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer.png deleted file mode 100644 index acf277681..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer.svg deleted file mode 100644 index f06749ae8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/dryer.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/energy.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/energy.png deleted file mode 100644 index e1ded28f8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/energy.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/energy.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/energy.svg deleted file mode 100644 index 3e21e37dd..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/energy.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/error.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/error.png deleted file mode 100644 index 07e703f92..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/error.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/error.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/error.svg deleted file mode 100644 index 2574b5e60..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/error.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan.png deleted file mode 100644 index 25e72ea59..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan.svg deleted file mode 100644 index f0a3b9084..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_box.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_box.png deleted file mode 100644 index 25e72ea59..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_box.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_box.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_box.svg deleted file mode 100644 index f0a3b9084..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_box.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_ceiling.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_ceiling.png deleted file mode 100644 index a88ffdcd1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_ceiling.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_ceiling.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_ceiling.svg deleted file mode 100644 index 8aff83930..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fan_ceiling.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/faucet.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/faucet.png deleted file mode 100644 index 38327f459..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/faucet.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/faucet.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/faucet.svg deleted file mode 100644 index bc7b70fc0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/faucet.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/favicon.ico b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/favicon.ico deleted file mode 100644 index 98d739de9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/favicon.ico and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-off.png deleted file mode 100644 index daa26137c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-off.svg deleted file mode 100644 index c7f5858e2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-off.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-on.png deleted file mode 100644 index 6dbc80c1a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-on.svg deleted file mode 100644 index 69affd715..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire-on.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire.png deleted file mode 100644 index 6dbc80c1a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire.svg deleted file mode 100644 index 69affd715..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/fire.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/firstfloor.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/firstfloor.png deleted file mode 100644 index 8abbeee71..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/firstfloor.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/firstfloor.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/firstfloor.svg deleted file mode 100644 index 7ee4e9a57..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/firstfloor.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flow.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flow.png deleted file mode 100644 index 36b15f023..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flow.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flow.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flow.svg deleted file mode 100644 index 53d899cce..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flow.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flowpipe.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flowpipe.png deleted file mode 100644 index 82afbed8e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flowpipe.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flowpipe.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flowpipe.svg deleted file mode 100644 index da8ae132d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/flowpipe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-closed.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-closed.png deleted file mode 100644 index 7ff2547b8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-closed.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-closed.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-closed.svg deleted file mode 100644 index 74ca4cf87..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-closed.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-open.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-open.png deleted file mode 100644 index 106000278..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-open.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-open.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-open.svg deleted file mode 100644 index 8957a9e83..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor-open.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor.png deleted file mode 100644 index 106000278..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor.svg deleted file mode 100644 index 8957a9e83..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/frontdoor.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage.png deleted file mode 100644 index 798c073be..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage.svg deleted file mode 100644 index f84c65e81..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached.png deleted file mode 100644 index 18ada1d2d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached.svg deleted file mode 100644 index 1061617b8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached_selected.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached_selected.png deleted file mode 100644 index acd397d2b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached_selected.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached_selected.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached_selected.svg deleted file mode 100644 index a253febcc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garage_detached_selected.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-0.png deleted file mode 100644 index 68e420e75..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-0.svg deleted file mode 100644 index 65c3c2c3e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-0.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-10.png deleted file mode 100644 index 4b6139777..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-10.svg deleted file mode 100644 index 1bcf69d86..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-10.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-100.png deleted file mode 100644 index 8af7a23c7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-100.svg deleted file mode 100644 index 63811dbdb..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-100.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-20.png deleted file mode 100644 index 0314c32f6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-20.svg deleted file mode 100644 index bde531990..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-20.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-30.png deleted file mode 100644 index b12cb822a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-30.svg deleted file mode 100644 index 31e8d8e1d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-30.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-40.png deleted file mode 100644 index aa54c331c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-40.svg deleted file mode 100644 index 0a94fee1c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-40.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-50.png deleted file mode 100644 index e1452f93d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-50.svg deleted file mode 100644 index 3b6587430..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-50.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-60.png deleted file mode 100644 index 381a8fc54..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-60.svg deleted file mode 100644 index 9ff3cdba4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-60.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-70.png deleted file mode 100644 index 5ab91e4db..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-70.svg deleted file mode 100644 index 508d7c498..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-70.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-80.png deleted file mode 100644 index 1b8704a83..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-80.svg deleted file mode 100644 index 1e579c009..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-80.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-90.png deleted file mode 100644 index c4a6b9a17..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-90.svg deleted file mode 100644 index 0201d63b1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-90.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-ajar.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-ajar.png deleted file mode 100644 index 5ab91e4db..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-ajar.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-ajar.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-ajar.svg deleted file mode 100644 index 508d7c498..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-ajar.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-closed.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-closed.png deleted file mode 100644 index 8af7a23c7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-closed.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-closed.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-closed.svg deleted file mode 100644 index 63811dbdb..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-closed.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-open.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-open.png deleted file mode 100644 index 68e420e75..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-open.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-open.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-open.svg deleted file mode 100644 index 65c3c2c3e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor-open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor.png deleted file mode 100644 index 5ab91e4db..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor.svg deleted file mode 100644 index 508d7c498..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garagedoor.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garden.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garden.png deleted file mode 100644 index 204a8e5ca..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garden.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garden.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garden.svg deleted file mode 100644 index 2eefe817c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/garden.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/gas.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/gas.png deleted file mode 100644 index 40022e3e3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/gas.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/gas.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/gas.svg deleted file mode 100644 index 826316182..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/gas.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_1.png deleted file mode 100644 index 5018b5d15..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_1.svg deleted file mode 100644 index 410cb01ea..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_1.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_2.png deleted file mode 100644 index 6b5054085..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_2.svg deleted file mode 100644 index 279cc47e1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_2.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_3.png deleted file mode 100644 index 3b871799b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_3.svg deleted file mode 100644 index 3cc58400f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_3.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_4.png deleted file mode 100644 index 97e8709d1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_4.svg deleted file mode 100644 index d1f0925c0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_4.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_5.png deleted file mode 100644 index 842b5b55f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_5.svg deleted file mode 100644 index 085fc4571..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_5.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_6.png deleted file mode 100644 index a03a74ea6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_6.svg deleted file mode 100644 index 60c02bd5d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/girl_6.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/grass.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/grass.png deleted file mode 100644 index 102cdbd05..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/grass.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/grass.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/grass.svg deleted file mode 100644 index c2513ecb3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/grass.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/greenhouse.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/greenhouse.png deleted file mode 100644 index 644ce35cb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/greenhouse.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/greenhouse.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/greenhouse.svg deleted file mode 100644 index 606a255d2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/greenhouse.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/groundfloor.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/groundfloor.png deleted file mode 100644 index 96cec61b9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/groundfloor.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/groundfloor.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/groundfloor.svg deleted file mode 100644 index 0e46f14c4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/groundfloor.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/group.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/group.png deleted file mode 100644 index d7f7de1d8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/group.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/group.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/group.svg deleted file mode 100644 index 4e20e334e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/group.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-0.png deleted file mode 100644 index 16519ae94..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-0.svg deleted file mode 100644 index 991a13e6e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-0.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-100.png deleted file mode 100644 index 447aeadbe..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-100.svg deleted file mode 100644 index cccd8c74c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-100.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-20.png deleted file mode 100644 index 014b435a8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-20.svg deleted file mode 100644 index 0837cd69f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-20.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-40.png deleted file mode 100644 index d2abb27a2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-40.svg deleted file mode 100644 index f2d83314e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-40.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-60.png deleted file mode 100644 index c4b3372ba..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-60.svg deleted file mode 100644 index a9b8e418d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-60.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-80.png deleted file mode 100644 index f6445e854..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-80.svg deleted file mode 100644 index ddf682b5f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-80.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-off.png deleted file mode 100644 index 16519ae94..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-off.svg deleted file mode 100644 index 991a13e6e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-off.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-on.png deleted file mode 100644 index 447aeadbe..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-on.svg deleted file mode 100644 index cccd8c74c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating-on.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating.png deleted file mode 100644 index 447aeadbe..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating.svg deleted file mode 100644 index cccd8c74c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/heating.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/house.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/house.png deleted file mode 100644 index d7f7de1d8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/house.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/house.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/house.svg deleted file mode 100644 index 4e20e334e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/house.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-0.png deleted file mode 100644 index fd57d5de2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-0.svg deleted file mode 100644 index cca34f2bb..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-0.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-10.png deleted file mode 100644 index 8bfed78cf..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-10.svg deleted file mode 100644 index 8d921da29..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-10.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-100.png deleted file mode 100644 index d89fa7cf8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-100.svg deleted file mode 100644 index dbee856e6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-100.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-20.png deleted file mode 100644 index 9befb7066..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-20.svg deleted file mode 100644 index f28d9046a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-20.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-30.png deleted file mode 100644 index c358fb14d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-30.svg deleted file mode 100644 index 67bc1947c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-30.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-40.png deleted file mode 100644 index 62186a710..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-40.svg deleted file mode 100644 index 6b8b2d18d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-40.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-50.png deleted file mode 100644 index af178ce59..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-50.svg deleted file mode 100644 index ff58aa955..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-50.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-60.png deleted file mode 100644 index d703403ff..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-60.svg deleted file mode 100644 index 5da6b7dc8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-60.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-70.png deleted file mode 100644 index 4e6affe5f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-70.svg deleted file mode 100644 index d958741db..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-70.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-80.png deleted file mode 100644 index c2c46fcce..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-80.svg deleted file mode 100644 index 690121fd3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-80.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-90.png deleted file mode 100644 index e62127854..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-90.svg deleted file mode 100644 index e8adbc2d3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity-90.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity.png deleted file mode 100644 index cea7341e8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity.svg deleted file mode 100644 index b6fbc9524..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/humidity.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/incline.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/incline.png deleted file mode 100644 index 403d92f4e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/incline.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/incline.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/incline.svg deleted file mode 100644 index e5f1ce2c1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/incline.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/keyring.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/keyring.png deleted file mode 100644 index d749af4f8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/keyring.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/keyring.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/keyring.svg deleted file mode 100644 index fa71dc4d8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/keyring.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/kitchen.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/kitchen.png deleted file mode 100644 index 752930515..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/kitchen.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/kitchen.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/kitchen.svg deleted file mode 100644 index 20f830635..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/kitchen.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-off.png deleted file mode 100644 index f581dd94c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-off.svg deleted file mode 100644 index 3853ad06b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-off.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-on.png deleted file mode 100644 index 0e9964872..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-on.svg deleted file mode 100644 index a2797c506..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light-on.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light.png deleted file mode 100644 index 0e9964872..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light.svg deleted file mode 100644 index a2797c506..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/light.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-decline.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-decline.png deleted file mode 100644 index 065102dfd..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-decline.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-decline.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-decline.svg deleted file mode 100644 index 2e147aa43..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-decline.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-incline.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-incline.png deleted file mode 100644 index d72bfe7ac..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-incline.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-incline.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-incline.svg deleted file mode 100644 index a175851c1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-incline.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-stagnation.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-stagnation.png deleted file mode 100644 index 3ad0ba429..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-stagnation.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-stagnation.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-stagnation.svg deleted file mode 100644 index a2f85f4c4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line-stagnation.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line.png deleted file mode 100644 index 2e834936f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line.svg deleted file mode 100644 index df32f8d43..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/line.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-closed.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-closed.png deleted file mode 100644 index e533f717f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-closed.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-closed.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-closed.svg deleted file mode 100644 index 2e88b59ad..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-closed.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-open.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-open.png deleted file mode 100644 index 518f8a813..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-open.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-open.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-open.svg deleted file mode 100644 index d5c9e3e57..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock-open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock.png deleted file mode 100644 index e533f717f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock.svg deleted file mode 100644 index 2e88b59ad..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/lock.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_1.png deleted file mode 100644 index 89c294070..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_1.svg deleted file mode 100644 index e06019f74..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_1.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_2.png deleted file mode 100644 index 84a38844e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_2.svg deleted file mode 100644 index 41bcfdabd..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_2.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_3.png deleted file mode 100644 index 4e2450f19..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_3.svg deleted file mode 100644 index 03d637f4a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_3.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_4.png deleted file mode 100644 index c3b8c1e92..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_4.svg deleted file mode 100644 index 6ada7545a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_4.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_5.png deleted file mode 100644 index d4873c9dc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_5.svg deleted file mode 100644 index e70b57b2b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_5.svg +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_6.png deleted file mode 100644 index 3c8f63a7a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_6.svg deleted file mode 100644 index ef90c4544..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/man_6.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/microphone.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/microphone.png deleted file mode 100644 index c1bbba7f2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/microphone.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/microphone.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/microphone.svg deleted file mode 100644 index c8f05303b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/microphone.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/moon.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/moon.png deleted file mode 100644 index d569dd9b5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/moon.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/moon.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/moon.svg deleted file mode 100644 index 11fb3acfb..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/moon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/motion.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/motion.png deleted file mode 100644 index 0d6be3d37..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/motion.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/motion.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/motion.svg deleted file mode 100644 index f628483f4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/motion.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/movecontrol.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/movecontrol.png deleted file mode 100644 index 4f7f2ea3a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/movecontrol.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/movecontrol.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/movecontrol.svg deleted file mode 100644 index 94e696dae..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/movecontrol.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-off.png deleted file mode 100644 index d8aa7c8da..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-off.svg deleted file mode 100644 index 38535ba73..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-off.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-on.png deleted file mode 100644 index 87f6e06a2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-on.svg deleted file mode 100644 index 0fa706a7c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network-on.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network.png deleted file mode 100644 index f463f248d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network.svg deleted file mode 100644 index 0580abcdc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/network.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/niveau.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/niveau.png deleted file mode 100644 index 65d64e5d6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/niveau.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/niveau.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/niveau.svg deleted file mode 100644 index f3c744c97..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/niveau.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/none.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/none.png deleted file mode 100644 index 0d93883e2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/none.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/none.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/none.svg deleted file mode 100644 index a9984321c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/none.svg +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/office.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/office.png deleted file mode 100644 index 88ad2530e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/office.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/office.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/office.svg deleted file mode 100644 index 2c220830c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/office.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/oil.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/oil.png deleted file mode 100644 index 6153e128c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/oil.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/oil.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/oil.svg deleted file mode 100644 index 0ef1d4281..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/oil.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/outdoorlight.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/outdoorlight.png deleted file mode 100644 index 40f9f03a9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/outdoorlight.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/outdoorlight.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/outdoorlight.svg deleted file mode 100644 index 129807060..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/outdoorlight.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pantry.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pantry.png deleted file mode 100644 index 444b02e75..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pantry.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pantry.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pantry.svg deleted file mode 100644 index f809341b5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pantry.svg +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents-off.png deleted file mode 100644 index 3d0435d21..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents-off.svg deleted file mode 100644 index 3cae6a594..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents-off.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_1.png deleted file mode 100644 index 5c8d0bc3b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_1.svg deleted file mode 100644 index 48a9d98c3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_1.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_2.png deleted file mode 100644 index 1abe63d31..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_2.svg deleted file mode 100644 index 512d6a81f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_2.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_3.png deleted file mode 100644 index ecd0ef4a7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_3.svg deleted file mode 100644 index 1c6f955e4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_3.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_4.png deleted file mode 100644 index fccc4706a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_4.svg deleted file mode 100644 index 2ebed5986..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_4.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_5.png deleted file mode 100644 index 51655daf7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_5.svg deleted file mode 100644 index 243222d45..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_5.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_6.png deleted file mode 100644 index e573a1c3f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_6.svg deleted file mode 100644 index 536258e6d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_1_6.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_1.png deleted file mode 100644 index 12ff163cb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_1.svg deleted file mode 100644 index 91a3f8544..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_1.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_2.png deleted file mode 100644 index 174a44a99..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_2.svg deleted file mode 100644 index bb7d6f586..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_2.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_3.png deleted file mode 100644 index bce02af0c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_3.svg deleted file mode 100644 index bcfa0b5c6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_3.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_4.png deleted file mode 100644 index 3b02ae348..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_4.svg deleted file mode 100644 index e298d0f7b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_4.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_5.png deleted file mode 100644 index 538acab5d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_5.svg deleted file mode 100644 index 4107a8113..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_5.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_6.png deleted file mode 100644 index dec144bb6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_6.svg deleted file mode 100644 index 6030e3af5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_2_6.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_1.png deleted file mode 100644 index 491a891af..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_1.svg deleted file mode 100644 index f1d1afd66..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_1.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_2.png deleted file mode 100644 index 97fdffe82..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_2.svg deleted file mode 100644 index 382c37a5a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_2.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_3.png deleted file mode 100644 index db57101e2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_3.svg deleted file mode 100644 index 4acea8b2e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_3.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_4.png deleted file mode 100644 index cdd71013c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_4.svg deleted file mode 100644 index f29de5ac9..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_4.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_5.png deleted file mode 100644 index 704bbeffb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_5.svg deleted file mode 100644 index b241e857c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_5.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_6.png deleted file mode 100644 index 43bd7faa4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_6.svg deleted file mode 100644 index 4ba459346..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_3_6.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_1.png deleted file mode 100644 index 9b77a8ecf..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_1.svg deleted file mode 100644 index 519d7d291..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_1.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_2.png deleted file mode 100644 index 0c2def841..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_2.svg deleted file mode 100644 index 377b84e90..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_2.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_3.png deleted file mode 100644 index b1836bf18..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_3.svg deleted file mode 100644 index e45f00f78..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_3.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_4.png deleted file mode 100644 index 9c1ca3aea..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_4.svg deleted file mode 100644 index 9394eb785..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_4.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_5.png deleted file mode 100644 index 7cc9ffa16..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_5.svg deleted file mode 100644 index dd890181a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_5.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_6.png deleted file mode 100644 index 55c5e21fb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_6.svg deleted file mode 100644 index 631544049..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_4_6.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_1.png deleted file mode 100644 index 339a804c6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_1.svg deleted file mode 100644 index 81c4a25e7..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_1.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_2.png deleted file mode 100644 index e3683a1ab..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_2.svg deleted file mode 100644 index 783eb1e98..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_2.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_3.png deleted file mode 100644 index f27bce9e2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_3.svg deleted file mode 100644 index aa1f92fd3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_3.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_4.png deleted file mode 100644 index 1b9438d08..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_4.svg deleted file mode 100644 index 14c3ba0e5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_4.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_5.png deleted file mode 100644 index ea2a3d742..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_5.svg deleted file mode 100644 index df8af225a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_5.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_6.png deleted file mode 100644 index 0880b0e55..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_6.svg deleted file mode 100644 index 9890fad77..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_5_6.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_1.png deleted file mode 100644 index ca6a571a1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_1.svg deleted file mode 100644 index 6a9451107..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_1.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_2.png deleted file mode 100644 index 3459bc417..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_2.svg deleted file mode 100644 index b6e1aaf6c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_2.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_3.png deleted file mode 100644 index 340874fe0..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_3.svg deleted file mode 100644 index 53efb7410..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_3.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_4.png deleted file mode 100644 index 4e3f2d247..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_4.svg deleted file mode 100644 index 6e3786b59..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_4.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_5.png deleted file mode 100644 index ded80ff0e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_5.svg deleted file mode 100644 index af87513b0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_5.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_6.png deleted file mode 100644 index 52ee69b69..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_6.svg deleted file mode 100644 index f5ca7a22a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/parents_6_6.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/party.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/party.png deleted file mode 100644 index e3e6d4f29..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/party.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/party.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/party.svg deleted file mode 100644 index 20cb21e26..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/party.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pie.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pie.png deleted file mode 100644 index 1b897c180..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pie.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pie.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pie.svg deleted file mode 100644 index e269418a5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pie.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/piggybank.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/piggybank.png deleted file mode 100644 index 369ac6293..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/piggybank.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/piggybank.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/piggybank.svg deleted file mode 100644 index 11d91fb81..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/piggybank.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - 1 - EURO - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/player.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/player.png deleted file mode 100644 index 9ba2bacfb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/player.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/player.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/player.svg deleted file mode 100644 index 108824cee..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/player.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - POWER ON - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-au.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-au.png deleted file mode 100644 index f476b43d3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-au.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-au.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-au.svg deleted file mode 100644 index 6a81bbf80..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-au.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-eu.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-eu.png deleted file mode 100644 index 8c9c0c8f6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-eu.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-eu.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-eu.svg deleted file mode 100644 index ceb8d17b3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-eu.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-off.png deleted file mode 100644 index 79102c04a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-off.svg deleted file mode 100644 index e54794d27..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-off.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-on.png deleted file mode 100644 index 05d6922de..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-on.svg deleted file mode 100644 index 92b7854ad..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-on.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-uk.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-uk.png deleted file mode 100644 index 9ae5e6118..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-uk.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-uk.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-uk.svg deleted file mode 100644 index 2312cfa41..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-uk.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-us.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-us.png deleted file mode 100644 index d8a02283c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-us.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-us.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-us.svg deleted file mode 100644 index bd54a6b59..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet-us.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet.png deleted file mode 100644 index 13fe074e6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet.svg deleted file mode 100644 index 7dc9449f0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/poweroutlet.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present-off.png deleted file mode 100644 index dff5a610f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present-off.svg deleted file mode 100644 index 7dbdf0035..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present-off.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present.png deleted file mode 100644 index 0240eeef6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present.svg deleted file mode 100644 index 905a666f0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/present.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pressure.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pressure.png deleted file mode 100644 index 33320386f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pressure.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pressure.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pressure.svg deleted file mode 100644 index 73517d0f5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pressure.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/projector_benq.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/projector_benq.png deleted file mode 100644 index 8f378abc6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/projector_benq.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/projector_benq.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/projector_benq.svg deleted file mode 100644 index e1a1d6e34..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/projector_benq.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pump.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pump.png deleted file mode 100644 index 130e68e6f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pump.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pump.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pump.svg deleted file mode 100644 index afb2267b5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/pump.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-0.png deleted file mode 100644 index f6b863b35..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-0.svg deleted file mode 100644 index f99a0a6ad..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-0.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-1.png deleted file mode 100644 index bad50efbb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-1.svg deleted file mode 100644 index 8c39ed13e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-1.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-2.png deleted file mode 100644 index 14d8bba37..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-2.svg deleted file mode 100644 index 7e453d965..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-2.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-3.png deleted file mode 100644 index ac693442a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-3.svg deleted file mode 100644 index 382e256e0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-3.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-4.png deleted file mode 100644 index b224da1cc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-4.svg deleted file mode 100644 index 706468276..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice-4.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice.png deleted file mode 100644 index b224da1cc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice.svg deleted file mode 100644 index 706468276..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/qualityofservice.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/radiator.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/radiator.png deleted file mode 100644 index ded5bbf2a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/radiator.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/radiator.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/radiator.svg deleted file mode 100644 index 9ea82ed6a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/radiator.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rain.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rain.png deleted file mode 100644 index f46b6eb3c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rain.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rain.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rain.svg deleted file mode 100644 index 3c5dd287c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rain.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-off.png deleted file mode 100644 index 8339d680e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-off.svg deleted file mode 100644 index fea71552a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-off.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-on.png deleted file mode 100644 index 9ba2bacfb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-on.svg deleted file mode 100644 index 108824cee..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver-on.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - POWER ON - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver.png deleted file mode 100644 index 9ba2bacfb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver.svg deleted file mode 100644 index 108824cee..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/receiver.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - POWER ON - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/recorder.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/recorder.png deleted file mode 100644 index c1bbba7f2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/recorder.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/recorder.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/recorder.svg deleted file mode 100644 index c8f05303b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/recorder.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/returnpipe.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/returnpipe.png deleted file mode 100644 index c1d2859cc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/returnpipe.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/returnpipe.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/returnpipe.svg deleted file mode 100644 index c9fe853db..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/returnpipe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rgb.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rgb.png deleted file mode 100644 index 7877f1496..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rgb.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rgb.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rgb.svg deleted file mode 100644 index 50cd84993..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rgb.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-0.png deleted file mode 100644 index 451aa241d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-0.svg deleted file mode 100644 index d22be37ed..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-0.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-10.png deleted file mode 100644 index 1ccd1e95b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-10.svg deleted file mode 100644 index cd808de5b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-10.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-100.png deleted file mode 100644 index cb1be9e94..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-100.svg deleted file mode 100644 index b8dfa323a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-100.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-20.png deleted file mode 100644 index 9c91afed6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-20.svg deleted file mode 100644 index f05db0f68..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-20.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-30.png deleted file mode 100644 index dbd602c09..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-30.svg deleted file mode 100644 index ecaccb327..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-30.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-40.png deleted file mode 100644 index 680931759..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-40.svg deleted file mode 100644 index 567a5bc07..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-40.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-50.png deleted file mode 100644 index 8567e3a50..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-50.svg deleted file mode 100644 index 517b70167..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-50.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-60.png deleted file mode 100644 index bcc40e6c9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-60.svg deleted file mode 100644 index 9a0900305..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-60.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-70.png deleted file mode 100644 index 55f9d28c2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-70.svg deleted file mode 100644 index 78b130269..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-70.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-80.png deleted file mode 100644 index 97ee1f2e5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-80.svg deleted file mode 100644 index 63c7dace8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-80.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-90.png deleted file mode 100644 index 1953b2053..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-90.svg deleted file mode 100644 index fdeb17174..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter-90.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter.png deleted file mode 100644 index 55f9d28c2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter.svg deleted file mode 100644 index 78b130269..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/rollershutter.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/settings.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/settings.png deleted file mode 100644 index bea0f1e66..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/settings.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/settings.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/settings.svg deleted file mode 100644 index 7269223a5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/settings.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-0.png deleted file mode 100644 index 21cec1b17..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-0.svg deleted file mode 100644 index 1c4006eff..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-0.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-10.png deleted file mode 100644 index 6543145e3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-10.svg deleted file mode 100644 index b756d0ab9..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-10.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-100.png deleted file mode 100644 index 3adf7ba47..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-100.svg deleted file mode 100644 index d6dcffd9a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-100.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-20.png deleted file mode 100644 index 3f2af2c1d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-20.svg deleted file mode 100644 index 1e82a22d7..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-20.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-30.png deleted file mode 100644 index 2d1b68508..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-30.svg deleted file mode 100644 index d6071780b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-30.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-40.png deleted file mode 100644 index be76aafb6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-40.svg deleted file mode 100644 index bf4ceb8f3..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-40.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-50.png deleted file mode 100644 index a805d2a1a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-50.svg deleted file mode 100644 index e5a7ad655..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-50.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-60.png deleted file mode 100644 index 5222c7e89..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-60.svg deleted file mode 100644 index 5e6850b84..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-60.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-70.png deleted file mode 100644 index 18e8f4a3c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-70.svg deleted file mode 100644 index 0f0901bcc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-70.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-80.png deleted file mode 100644 index be45b152e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-80.svg deleted file mode 100644 index 836d8326b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-80.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-90.png deleted file mode 100644 index b622a2c0b..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-90.svg deleted file mode 100644 index 491bbfd30..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage-90.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage.png deleted file mode 100644 index b5c87d9c7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage.svg deleted file mode 100644 index a41d5f526..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sewerage.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-0.png deleted file mode 100644 index f42293f8f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-0.svg deleted file mode 100644 index b27035092..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-0.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-1.png deleted file mode 100644 index 25b37c9e1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-1.svg deleted file mode 100644 index 940afd839..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield-1.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield.png deleted file mode 100644 index 853e96444..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield.svg deleted file mode 100644 index 69f277ae0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/shield.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-0.png deleted file mode 100644 index f6b863b35..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-0.svg deleted file mode 100644 index f99a0a6ad..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-0.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-1.png deleted file mode 100644 index bad50efbb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-1.svg deleted file mode 100644 index 8c39ed13e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-1.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-2.png deleted file mode 100644 index 14d8bba37..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-2.svg deleted file mode 100644 index 7e453d965..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-2.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-3.png deleted file mode 100644 index ac693442a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-3.svg deleted file mode 100644 index 382e256e0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-3.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-4.png deleted file mode 100644 index b224da1cc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-4.svg deleted file mode 100644 index 706468276..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal-4.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal.png deleted file mode 100644 index b224da1cc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal.svg deleted file mode 100644 index 706468276..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/signal.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-off.png deleted file mode 100644 index cb41fd2c6..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-off.svg deleted file mode 100644 index 1c01c241c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-off.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-on.png deleted file mode 100644 index f4ac89270..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-on.svg deleted file mode 100644 index ca0ea0ba5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren-on.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren.png deleted file mode 100644 index f4ac89270..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren.svg deleted file mode 100644 index ca0ea0ba5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/siren.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-0.png deleted file mode 100644 index f581dd94c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-0.svg deleted file mode 100644 index 3853ad06b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-0.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-10.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-10.png deleted file mode 100644 index 6a6641d37..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-10.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-10.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-10.svg deleted file mode 100644 index 101b5b236..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-10.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-100.png deleted file mode 100644 index 0e9964872..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-100.svg deleted file mode 100644 index a2797c506..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-100.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-20.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-20.png deleted file mode 100644 index b3a2c19ee..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-20.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-20.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-20.svg deleted file mode 100644 index 3c3ca481c..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-20.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-30.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-30.png deleted file mode 100644 index 82bdc8a49..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-30.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-30.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-30.svg deleted file mode 100644 index 5625e61d9..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-30.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-40.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-40.png deleted file mode 100644 index b2bc5b190..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-40.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-40.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-40.svg deleted file mode 100644 index 1bc4e909e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-40.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-50.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-50.png deleted file mode 100644 index c2bda42a1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-50.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-50.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-50.svg deleted file mode 100644 index d0391a0dc..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-50.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-60.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-60.png deleted file mode 100644 index a5ba164a1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-60.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-60.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-60.svg deleted file mode 100644 index 49e35c04f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-60.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-70.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-70.png deleted file mode 100644 index a4ac4ceba..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-70.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-70.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-70.svg deleted file mode 100644 index 2b348e730..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-70.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-80.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-80.png deleted file mode 100644 index 4f97751b2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-80.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-80.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-80.svg deleted file mode 100644 index 8818b22a1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-80.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-90.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-90.png deleted file mode 100644 index f07ce5e7d..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-90.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-90.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-90.svg deleted file mode 100644 index 3d7f919a0..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider-90.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider.png deleted file mode 100644 index 0e9964872..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider.svg deleted file mode 100644 index a2797c506..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/slider.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smiley.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smiley.png deleted file mode 100644 index a7cedf10e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smiley.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smiley.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smiley.svg deleted file mode 100644 index 966543150..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smiley.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smoke.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smoke.png deleted file mode 100644 index f1f9e3cc5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smoke.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smoke.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smoke.svg deleted file mode 100644 index 8a8970b1d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/smoke.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sofa.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sofa.png deleted file mode 100644 index 8b0c89cd2..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sofa.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sofa.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sofa.svg deleted file mode 100644 index d1ded1622..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sofa.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/softener.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/softener.png deleted file mode 100644 index ddba4fc00..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/softener.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/softener.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/softener.svg deleted file mode 100644 index 8d718a0e6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/softener.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/solarplant.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/solarplant.png deleted file mode 100644 index ac802f7c5..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/solarplant.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/solarplant.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/solarplant.svg deleted file mode 100644 index 88697196f..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/solarplant.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-0.png deleted file mode 100644 index 00b7c73b4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-0.svg deleted file mode 100644 index c4c6a8fd4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-0.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-100.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-100.png deleted file mode 100644 index a002d09ae..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-100.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-100.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-100.svg deleted file mode 100644 index 46125af69..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-100.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-33.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-33.png deleted file mode 100644 index 558b351bd..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-33.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-33.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-33.svg deleted file mode 100644 index b5a53de61..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-33.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-66.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-66.png deleted file mode 100644 index f78db4712..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-66.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-66.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-66.svg deleted file mode 100644 index 08fcbabf7..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume-66.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume.png deleted file mode 100644 index a002d09ae..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume.svg deleted file mode 100644 index 46125af69..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume_mute.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume_mute.png deleted file mode 100644 index 0cf4440c9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume_mute.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume_mute.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume_mute.svg deleted file mode 100644 index 701785d15..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/soundvolume_mute.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/status.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/status.png deleted file mode 100644 index fe4661d3e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/status.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/status.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/status.svg deleted file mode 100644 index 554924513..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/status.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/suitcase.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/suitcase.png deleted file mode 100644 index 87ae7c25a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/suitcase.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/suitcase.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/suitcase.svg deleted file mode 100644 index 0f6014834..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/suitcase.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun.png deleted file mode 100644 index 8cde0aa64..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun.svg deleted file mode 100644 index 391a7a31a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun_clouds.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun_clouds.png deleted file mode 100644 index 8a63263cb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun_clouds.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun_clouds.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun_clouds.svg deleted file mode 100644 index 84d8de4b4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sun_clouds.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunrise.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunrise.png deleted file mode 100644 index f59062258..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunrise.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunrise.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunrise.svg deleted file mode 100644 index 7caff13a4..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunrise.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunset.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunset.png deleted file mode 100644 index 340411530..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunset.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunset.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunset.svg deleted file mode 100644 index e238d1de6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/sunset.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-off.png deleted file mode 100644 index 80091fa02..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-off.svg deleted file mode 100644 index 714172c87..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-off.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-on.png deleted file mode 100644 index eef0e9bbe..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-on.svg deleted file mode 100644 index 920b7bba5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch-on.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch.png deleted file mode 100644 index 37dc380cf..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch.svg deleted file mode 100644 index 7f87bf14b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/switch.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/television-on.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/television-on.png deleted file mode 100644 index fe2019a76..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/television-on.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/television-on.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/television-on.svg deleted file mode 100644 index dc5b049f5..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/television-on.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/televison-off.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/televison-off.png deleted file mode 100644 index 15a1ff240..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/televison-off.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/televison-off.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/televison-off.svg deleted file mode 100644 index e8cc52c45..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/televison-off.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature.png deleted file mode 100644 index 46851d751..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature.svg deleted file mode 100644 index b6d434e2b..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_cold.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_cold.png deleted file mode 100644 index 785dc9ad4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_cold.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_cold.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_cold.svg deleted file mode 100644 index 610f1c560..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_cold.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_hot.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_hot.png deleted file mode 100644 index 2f620cb2e..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_hot.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_hot.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_hot.svg deleted file mode 100644 index cae85bf4e..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/temperature_hot.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/terrace.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/terrace.png deleted file mode 100644 index 0be2bf98f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/terrace.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/terrace.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/terrace.svg deleted file mode 100644 index 2c9735e25..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/terrace.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/text.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/text.png deleted file mode 100644 index 3ccc8bf5f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/text.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/text.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/text.svg deleted file mode 100644 index d8c138243..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/text.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/toilet.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/toilet.png deleted file mode 100644 index 41446c3f8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/toilet.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/toilet.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/toilet.svg deleted file mode 100644 index f9e1c3f18..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/toilet.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/vacation.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/vacation.png deleted file mode 100644 index f46614034..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/vacation.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/vacation.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/vacation.svg deleted file mode 100644 index 969fcc135..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/vacation.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/video.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/video.png deleted file mode 100644 index 4a792becb..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/video.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/video.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/video.svg deleted file mode 100644 index b2dbe086d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/video.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wardrobe.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wardrobe.png deleted file mode 100644 index a8394c5a3..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wardrobe.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wardrobe.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wardrobe.svg deleted file mode 100644 index b37e650c1..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wardrobe.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine.png deleted file mode 100644 index b53aded48..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine.svg deleted file mode 100644 index 0cef7157d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - W - aschen - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-0.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-0.png deleted file mode 100644 index 71fcd64ff..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-0.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-0.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-0.svg deleted file mode 100644 index 09f0cc122..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-0.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-1.png deleted file mode 100644 index c3f132883..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-1.svg deleted file mode 100644 index fa7b9e6ae..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-1.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-2.png deleted file mode 100644 index c5a0d37cd..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-2.svg deleted file mode 100644 index cce1294cb..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-2.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-3.png deleted file mode 100644 index de228b5cc..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-3.svg deleted file mode 100644 index a44eace41..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2-3.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2.png deleted file mode 100644 index f0b30a0c8..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2.svg deleted file mode 100644 index 616a40869..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/washingmachine_2.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/water.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/water.png deleted file mode 100644 index c3deef616..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/water.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/water.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/water.svg deleted file mode 100644 index d4aa29c71..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/water.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wind.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wind.png deleted file mode 100644 index c24c63650..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wind.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wind.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wind.svg deleted file mode 100644 index c23ffedd2..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/wind.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-ajar.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-ajar.png deleted file mode 100644 index 14178b6e4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-ajar.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-ajar.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-ajar.svg deleted file mode 100644 index 987c0f1e6..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-ajar.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-closed.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-closed.png deleted file mode 100644 index 2734184a7..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-closed.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-closed.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-closed.svg deleted file mode 100644 index bc0a688b8..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-closed.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-open.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-open.png deleted file mode 100644 index 82aea4ee1..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-open.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-open.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-open.svg deleted file mode 100644 index 0d780641d..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window-open.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window.png deleted file mode 100644 index c3aade1f9..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window.svg deleted file mode 100644 index 5f871f096..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/window.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_1.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_1.png deleted file mode 100644 index 4e38e21c4..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_1.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_1.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_1.svg deleted file mode 100644 index 663035f95..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_1.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_2.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_2.png deleted file mode 100644 index 9d9705c6c..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_2.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_2.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_2.svg deleted file mode 100644 index 1bc91b02a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_2.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_3.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_3.png deleted file mode 100644 index ea2d3f77a..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_3.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_3.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_3.svg deleted file mode 100644 index e2aa46368..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_3.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_4.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_4.png deleted file mode 100644 index b7dd8a186..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_4.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_4.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_4.svg deleted file mode 100644 index 8c608ec89..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_4.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_5.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_5.png deleted file mode 100644 index 1bec49b32..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_5.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_5.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_5.svg deleted file mode 100644 index 7e385d93a..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_5.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_6.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_6.png deleted file mode 100644 index 9f9df4935..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_6.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_6.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_6.svg deleted file mode 100644 index 2cd5cf305..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/woman_6.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/zoom.png b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/zoom.png deleted file mode 100644 index 92226b08f..000000000 Binary files a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/zoom.png and /dev/null differ diff --git a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/zoom.svg b/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/zoom.svg deleted file mode 100644 index 272ff2c78..000000000 --- a/features/iconsets/org.eclipse.smarthome.ui.iconset.classic/icons/zoom.svg +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/features/uis/basic/readme.md b/features/uis/basic/readme.md index 2367bdd5e..57d67cf1c 100644 --- a/features/uis/basic/readme.md +++ b/features/uis/basic/readme.md @@ -4,12 +4,11 @@ layout: documentation {% include base.html %} -## Basic UI +## Eclipse Smarthome BasicUI -The Basic UI is a web interface based on Material Design Lite from Google. +BasicUI is a web interface for Eclipse Smarthome based on Material Design Lite from Google. Features: - * Responsive layout suitable for various screen sizes * AJAX navigation * Live update1 @@ -17,7 +16,6 @@ Features: 1: as for now, only control states and icons are updated. Visibility changes require a page reload. Configuration: - ``` org.eclipse.smarthome.basicui:defaultSitemap=demo # Icons can be disabled diff --git a/features/uis/org.eclipse.smarthome.ui.basic/README.md b/features/uis/org.eclipse.smarthome.ui.basic/README.md deleted file mode 100644 index 57d67cf1c..000000000 --- a/features/uis/org.eclipse.smarthome.ui.basic/README.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: documentation ---- - -{% include base.html %} - -## Eclipse Smarthome BasicUI - -BasicUI is a web interface for Eclipse Smarthome based on Material Design Lite from Google. - -Features: -* Responsive layout suitable for various screen sizes -* AJAX navigation -* Live update1 - -1: as for now, only control states and icons are updated. Visibility changes require a page reload. - -Configuration: -``` -org.eclipse.smarthome.basicui:defaultSitemap=demo -# Icons can be disabled -org.eclipse.smarthome.basicui:enableIcons=true -# Icons can be shown as PNG or SVG images -# Default: PNG -org.eclipse.smarthome.basicui:iconType=svg -``` - -Screenshots: - -[![Screenshot 1](doc/screenshot-1.png)](doc/screenshot-1-full.png) -[![Screenshot 2](doc/screenshot-2.png)](doc/screenshot-2-full.png) - diff --git a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-1-full.png b/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-1-full.png deleted file mode 100644 index 27de40518..000000000 Binary files a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-1-full.png and /dev/null differ diff --git a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-1.png b/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-1.png deleted file mode 100644 index 396a8b915..000000000 Binary files a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-1.png and /dev/null differ diff --git a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-2-full.png b/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-2-full.png deleted file mode 100644 index 7e94fb4a1..000000000 Binary files a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-2-full.png and /dev/null differ diff --git a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-2.png b/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-2.png deleted file mode 100644 index 52edc2c25..000000000 Binary files a/features/uis/org.eclipse.smarthome.ui.basic/doc/screenshot-2.png and /dev/null differ diff --git a/index.md b/index.md index 415885933..fe052fe0b 100644 --- a/index.md +++ b/index.md @@ -1,5 +1,5 @@ --- -layout: gettingstarted +layout: documentation --- {% include base.html %} @@ -12,10 +12,13 @@ openHAB 2 is the successor of [openHAB 1](https://github.com/openhab/openhab/wik openHAB is a highly modular software, which means that the base installation (the "runtime") can be extended through different kinds of "add-ons". -# User's documentation +# User Documentation -The _user’s manual_ has been built in order to guide you for your first contact with OpenHAB. It guides you step by step in your discovery of OpenHAB mechanisms. +The [_User Manual_](users/introduction/introduction.html) has been built in order to guide you for your first contact with openHAB. It guides you step by step in your discovery of openHAB mechanisms. +This manual is an on-going work. + + -# Developer's documentation +# Developer Documentation -The _developer's guide_ contains practical and technical information for people willing to contribute to the development of openHAB or of one of its add-ons. +The [_Developer Guide_](developers/introduction/introduction) contains practical and technical information for people willing to contribute to the development of openHAB or of one of its add-ons. This manual is an on-going work. \ No newline at end of file diff --git a/users/appendix/introduction/introduction.md b/users/appendix/introduction/introduction.md index 1c18984e3..8535394c5 100644 --- a/users/appendix/introduction/introduction.md +++ b/users/appendix/introduction/introduction.md @@ -4,7 +4,7 @@ layout: usersmanual {% include base.html %} -# About of this part +# Overview This part contains some extra information that are placed here in order to keep the manual content as simple as possible. diff --git a/users/basics/introduction/introduction.md b/users/basics/introduction/introduction.md index 6adc2e4f1..c7520425c 100644 --- a/users/basics/introduction/introduction.md +++ b/users/basics/introduction/introduction.md @@ -5,7 +5,7 @@ layout: usersmanual {% include base.html %} -# About of this part +# Overview This first part of the user's manual presents the concept you need to understand before going in more practical aspects. diff --git a/users/installing/introduction/introduction.md b/users/installing/introduction/introduction.md index c5adaa3e6..71dac1647 100644 --- a/users/installing/introduction/introduction.md +++ b/users/installing/introduction/introduction.md @@ -4,7 +4,7 @@ layout: usersmanual {% include base.html %} -# About this part +# Overview This parts covers the different steps needed to have a working install of openHAB 2. diff --git a/users/installing/openhab/gettingstarted.md b/users/installing/openhab/gettingstarted.md new file mode 100644 index 000000000..0abbedd55 --- /dev/null +++ b/users/installing/openhab/gettingstarted.md @@ -0,0 +1,185 @@ +--- +layout: documentation +--- + +{% include base.html %} + +# Installing openHAB + +## Installation + +openHAB comes as a [platform independent zip file](https://openhab.ci.cloudbees.com/job/openHAB-Distribution/lastSuccessfulBuild/artifact/distributions/openhab-offline/target/openhab-offline-2.0.0-SNAPSHOT.zip), which you only need to extract to some folder. + +You will find the following folders: + + - `conf`: This contains all your user specific configuration files. + - `runtime`: This contains the openHAB binaries, there should normally be no need to touch anything in here - the whole folder can be considered to be read-only. + - `userdata`: Here you will find all the data that is generated during runtime: log files, database files, etc. In theory this should be the only folder where openHAB needs write permission on. + - `addons`: Here you can drop add-ons (or any other OSGi bundles) that you want to be deployed in your instance. These can be add-ons for openHAB 1.x and 2.x likewise. Note that all "normal" add-ons are already included in the openHAB distribution and all you need is to name them in your 'addons.cfg' file (see below). Hence the `addons` folder is mainly useful if you have received jars from other sources and want to install and test them. + +## Choosing a Base Package and Add-ons to be Installed + +If you do not do any changes to the distribution, it will by default install a standard package, which comes with the most common UIs. + +If you are starting and want the demo package, which consists out of demo configuration files (for items, sitemaps, etc.) and a selection of add-ons and UIs, you should directly edit the file 'conf/services/addons.cfg'. +It allows you to choose a base package and any add-on that you might want to install. Note that all required dependencies (e.g. io.transport bundles) will automatically be installed, so you do not need to worry about this anymore. You also do not have to get hold of the jar file yourself as the openHAB distribution either includes it already locally (offline distro) or knows from where to download it (online distro). + +``` +# The base installation package of this openHAB instance (default is "standard") +# Valid options: +# - minimal : Installation only with dashboard, but no UIs or other addons +# - standard : Typical installation with all standards UIs +# - demo : A demo setup which includes UIs, a few bindings, config files etc. +package = standard + +# A comma-separated list of bindings to install (e.g. "sonos,knx,zwave") +binding = knx,sonos,http + +# A comma-separated list of UIs to install (e.g. "basic,paper") +ui = paper,basic + +# A comma-separated list of persistence services to install (e.g. "rrd4j,jpa") +persistence = rrd4j + +# A comma-separated list of actions to install (e.g. "mail,pushover") +action = + +# A comma-separated list of transformation services to install (e.g. "map,jsonpath") +transformation = map + +# A comma-separated list of voice services to install (e.g. "marytts,freetts") +voice = + +# A comma-separated list of miscellaneous services to install (e.g. "myopenhab") +misc = myopenhab +``` + +Many add-ons require some configuration. In openHAB 1.x, this was done in the central `openhab.cfg` file. In openHAB 2.x this has changed to separate files in the folder `conf/services`, e.g. the add-on 'acme' is configured in the file `conf/services/acme.cfg`. + +Likewise, the syntax in the configuration files has changed to not require the namespace anymore, i.e. instead of + +``` +acme:host=192.168.0.2 +``` + +in `openhab.cfg` you would now simply enter + +``` +host=192.168.0.2 +``` + +in the `acme.cfg` file. + +If an add-on provides configuration options, the according cfg file will be automatically created in `conf/services`, when installing the add-on (as long as the `conf` folder is writable for openHAB). + +## Configuring which HTTP(s) ports to use + +The Jetty webserver in openHAB has been preconfigured to use ports 8080 (http) and 8443 (https). You can change these default ports by specifying the environment variables OPENHAB_HTTP_PORT and OPENHAB_HTTPS_PORT. + +For example: + +``` +export OPENHAB_HTTP_PORT=8011 +export OPENHAB_HTTPS_PORT=8444 +``` + +## Configuring additional JVM options + +In a standard setup, you don't need to configure JVM arguments. There may however be cases where bindings require additional JVM settings, for example to use non standard serial ports. +When additional JVM arguments are needed, these can be set using the ```EXTRA_JAVA_OPTS``` environment variable. + +For example: + +``` +export EXTRA_JAVA_OPTS=-Dgnu.io.rxtx.SerialPorts=/dev/ttyAMA0 +``` + +## Starting the Runtime + +Once you have configured your runtime, you can simply start openHAB by calling `start.sh` resp. `start.bat` on Windows. Point your browser to ```http://:8080``` (allow the runtime some time to start before the HTTP server is available, especially on the very first start) and you will be welcomed by the openHAB Dashboard. + +Logfiles are written to `userdata/logs`, so please check these in case of any problem. + +## Using the Shell + +openHAB uses Apache Karaf and thus comes with a very powerful shell for managing the installation. Please check the [Karaf command reference](http://karaf.apache.org/manual/latest/commands/commands.html) for details. Useful commands e.g. include: + + - `log:tail`: Show the live logging output, end it by pressing ctrl+c. + - `log:exception-display`: Show the last exception of the log file. + - `log:set DEBUG org.openhab.binding.sonos`: Enables debug logging for a certain binding. + - `feature:list`: Lists all features available and shows there status. openHAB add-ons are made available as such Karaf features. + - `feature:install openhab-binding-knx`: Installs a certain add-on (here KNX). + - `bundle:list -s`: Lists all installed bundles with their symbolic name. + - `logout`: Shuts down openHAB. + +## Registering openHAB as a System Service in the OS + +Karaf provides the possibility to be automatically started on system startup as a service. As different mechanisms are required for the different operating systems, Karaf detects your OS and generates the required files. + +This capability is currently not available for ARM based devices (e.g. Raspberry Pi 1 and 2) but further below shows the manual steps needed. On Linux systems, you can use the command ```arch``` to show which CPU architecture is being used. + +To install openHAB as a service, call + +``` +openhab:install-service +``` + +in the shell and make sure that the folder `/runtime/karaf` is writable (only required at this time, you can make it read-only again afterwards). +The files are then generated for you and a short guide is displayed on what further actions you need to take to register it as a system service. + +### Raspberry Pi + +If you're running Raspbian Jessie and have systemd installed the following steps will allow you to register openHAB as a service so that it runs at startup and automatically restarts if openHAB crashes. + + 1. Make sure openHAB is installed somewhere, for the purpose of this guide it's installed in /opt/openhab2. + 2. Create the following file called "openhab.service" in /lib/systemd/system/ replacing the username with whichever user runs openHAB on your setup. + +``` +[Unit] +Description=Starts and stops the openHAB Home Automation Bus +Documentation=http://www.openhab.org +Wants=network-online.target +After=network-online.target + +[Service] +Type=simple +GuessMainPID=yes +User=**enter your openhab username here** +ExecStart=/opt/openhab2/start.sh +ExecStop=kill -SIGINT $MAINPID +Restart=on-failure +WorkingDirectory=/opt/openhab2 + +[Install] +WantedBy=multi-user.target +``` + + 3. Run the following commands to enable the service, start the service and check the status of the service respectively. + +``` +sudo systemctl enable openhab +sudo systemctl start openhab +sudo systemctl status openhab +``` + + 4. Assuming all looks good when you checked the status of the service, i.e. you see something like the below on your command line, then it should now be setup to run as a service. + +``` + openhab.service - Starts and stops the openHAB Home Automation Bus + Loaded: loaded (/etc/systemd/system/openhab.service; enabled) + Active: active (running) since Thu 2016-01-14 01:16:00 GMT; 18h ago + Docs: http://www.openhab.org +``` + + 5. If you need to stop openHAB use the following command. + +``` + sudo systemctl stop openhab +``` + + 6. If you need to disable the service so that it doesn't run at startup use the following command. + +``` + sudo systemctl disable openhab +``` + diff --git a/users/introduction/introduction.md b/users/introduction/introduction.md index 3fb770eae..f9da64f7b 100644 --- a/users/introduction/introduction.md +++ b/users/introduction/introduction.md @@ -13,21 +13,3 @@ openHAB is a software for integrating different home automation systems and tech openHAB 2 is the successor of [openHAB 1](https://github.com/openhab/openhab/wiki). It is an open-source solution based on the [Eclipse SmartHome]() framework. openHAB is a highly modular software, which means that the base installation (the "runtime") can be extended through different kinds of "add-ons". - -## The documentation - -The _user’s manual_ has been built in order to guide you for your first contact with OpenHAB. It guides you step by step in your discovery of OpenHAB mechanisms. - -Two companion books will help you while you will need more information. - -The _Reference manual_ is an extensive reference of what is presented in the user’s manual. This manual is useful for you when you need to know all the details of something you have learnt in the User’s manual. - -The _Cookbook_ is a set of ready-to-use (or as ready as possible) recipes and “tricks”. - -For example, speaking of the scripting language: - -- the _user’s manual_ presents the scripting language thru some use cases, -- the _reference manual_ details the complete syntax, -- the _cookbook_ contains real-life use cases that you can use for your own setup. - -This set of manuals is an on-going work. diff --git a/users/working1/introduction/introduction.md b/users/working1/introduction/introduction.md index aabed7aae..469a24cb7 100644 --- a/users/working1/introduction/introduction.md +++ b/users/working1/introduction/introduction.md @@ -4,7 +4,7 @@ layout: usersmanual {% include base.html %} -# About of this part +# Overview This part covers all the basic use of OpenHAB: how to install a binding, how to configure them, the inbox.... diff --git a/users/working2/introduction/introduction.md b/users/working2/introduction/introduction.md index ed859081f..536beada3 100644 --- a/users/working2/introduction/introduction.md +++ b/users/working2/introduction/introduction.md @@ -4,7 +4,7 @@ layout: usersmanual {% include base.html %} -# About of this part +# Overview The goal of this part is to present a second level of use of openHAB 2 with a more complex binding: the z-wave binding.