Renamed .png files

README.md: added
Fixed images.qrc
Fixed qmldir
This commit is contained in:
Oscar Andreasson 2015-06-18 21:27:32 -07:00
parent 11dae670ca
commit 2dca04fe35
18 changed files with 37 additions and 25 deletions

16
README.md Normal file
View 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

View file

@ -39,7 +39,7 @@
****************************************************************************/
import QtQuick 2.0
import net.weatherinfo.weatherinfo 1.0
import net.frozentux.weatherinfo 1.0
Item {
id: container

View file

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

Before After
Before After

View file

@ -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>

View file

@ -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