Renamed .png files
README.md: added Fixed images.qrc Fixed qmldir
16
README.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
QmlMirror
|
||||
=========
|
||||
|
||||
This is yet another Magic Mirror project I guess. It's designed to run behind
|
||||
a 2 way mirror, letting light through the mirror and hence showing everything
|
||||
bright through the mirror.
|
||||
|
||||
Install instructions
|
||||
--------------------
|
||||
1. Run qmake
|
||||
2. Run make
|
||||
3. Run make install
|
||||
|
||||
Running instructions
|
||||
--------------------
|
||||
1. qmlscene QmlMirror.qml
|
|
@ -39,7 +39,7 @@
|
|||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.0
|
||||
import net.weatherinfo.weatherinfo 1.0
|
||||
import net.frozentux.weatherinfo 1.0
|
||||
|
||||
Item {
|
||||
id: container
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
|
@ -1,24 +1,20 @@
|
|||
<RCC>
|
||||
<qresource prefix="/icons">
|
||||
<file>weather-few-clouds.png</file>
|
||||
<file>weather-fog.png</file>
|
||||
<file>weather-haze.png</file>
|
||||
<file>weather-icy.png</file>
|
||||
<file>weather-overcast.png</file>
|
||||
<file>weather-showers.png</file>
|
||||
<file>weather-sleet.png</file>
|
||||
<file>weather-snow.png</file>
|
||||
<file>weather-storm.png</file>
|
||||
<file>weather-sunny.png</file>
|
||||
<file>weather-sunny-very-few-clouds.png</file>
|
||||
<file>weather-thundershower.png</file>
|
||||
</qresource>
|
||||
<qresource prefix="/components">
|
||||
<file>BigForecastIcon.qml</file>
|
||||
<file>ForecastIcon.qml</file>
|
||||
<file>WeatherIcon.qml</file>
|
||||
</qresource>
|
||||
<qresource prefix="/">
|
||||
<file>icons/weather-few-clouds.png</file>
|
||||
<file>icons/weather-fog.png</file>
|
||||
<file>icons/weather-haze.png</file>
|
||||
<file>icons/weather-icy.png</file>
|
||||
<file>icons/weather-overcast.png</file>
|
||||
<file>icons/weather-showers.png</file>
|
||||
<file>icons/weather-sleet.png</file>
|
||||
<file>icons/weather-snow.png</file>
|
||||
<file>icons/weather-storm.png</file>
|
||||
<file>icons/weather-sunny.png</file>
|
||||
<file>icons/weather-sunny-very-few-clouds.png</file>
|
||||
<file>icons/weather-thundershower.png</file>
|
||||
<file>components/BigForecastIcon.qml</file>
|
||||
<file>components/ForecastIcon.qml</file>
|
||||
<file>components/WeatherIcon.qml</file>
|
||||
<file>WeatherInfo.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
module net.frozentux.weatherinfo
|
||||
plugin WeatherData
|
||||
plugin AppModel
|
||||
WeatherInfo 1.0 qrc:///WeatherInfo.qml
|
||||
BigForecastIcon 1.0 qrc:///components/BigForecastIcon.qml
|
||||
ForecastIcon 1.0 qrc:///components/ForecastIcon.qml
|
||||
WeatherIcon 1.0 qrc:///components/WeatherIcon.qml
|
||||
classname AppModel
|
||||
WeatherInfo 1.0 qrc:/WeatherInfo.qml
|
||||
BigForecastIcon 1.0 qrc:/components/BigForecastIcon.qml
|
||||
ForecastIcon 1.0 qrc:/components/ForecastIcon.qml
|
||||
WeatherIcon 1.0 qrc:/components/WeatherIcon.qml
|
||||
weather-few-clouds.png 1.0 qrc:///icons/weather-few-clouds.png
|
||||
weather-fog.png 1.0 qrc:///icons/weather-fog.png
|
||||
weather-haze.png 1.0 qrc:///icons/weather-haze.png
|
||||
|
|