readded resources folder (as the js files are needed) and moved the images someplace else
|
|
@ -40,6 +40,8 @@ qml_1.files = qml/ttrss/sailfish
|
|||
qml_1.path = $$INSTALL_ROOT/usr/share/$$TARGET/qml
|
||||
qml_2.files = qml/ttrss/models
|
||||
qml_2.path = $$INSTALL_ROOT/usr/share/$$TARGET/qml
|
||||
qml_3.files = qml/ttrss/resources
|
||||
qml_3.path = $$INSTALL_ROOT/usr/share/$$TARGET/qml
|
||||
INSTALLS += qml_1 qml_2
|
||||
|
||||
icon.files = images/$${TARGET}.png
|
||||
|
|
|
|||
21
images.qrc
|
|
@ -1,14 +1,15 @@
|
|||
<RCC>
|
||||
<qresource prefix="/images">
|
||||
<file alias="ic_all.png">qml/ttrss/resources/ic_all.png</file>
|
||||
<file alias="ic_archived.png">qml/ttrss/resources/ic_archive.png</file>
|
||||
<file alias="ic_fresh.png">qml/ttrss/resources/ic_fresh.png</file>
|
||||
<file alias="ic_read.png">qml/ttrss/resources/ic_read.png</file>
|
||||
<file alias="ic_recently.png">qml/ttrss/resources/ic_recently.png</file>
|
||||
<file alias="ic_rss_disabled.png">qml/ttrss/resources/ic_rss_disabled.png</file>
|
||||
<file alias="ic_rss_enabled.png">qml/ttrss/resources/ic_rss_enabled.png</file>
|
||||
<file alias="ic_star_disabled.png">qml/ttrss/resources/ic_star_disabled.png</file>
|
||||
<file alias="ic_star_enabled.png">qml/ttrss/resources/ic_star_enabled.png</file>
|
||||
<file alias="ic_unread.png">qml/ttrss/resources/ic_unread.png</file>
|
||||
<file alias="ic_all.png">images/resources/ic_all.png</file>
|
||||
<file alias="ic_archived.png">images/resources/ic_archive.png</file>
|
||||
<file alias="ic_fresh.png">images/resources/ic_fresh.png</file>
|
||||
<file alias="ic_read.png">images/resources/ic_read.png</file>
|
||||
<file alias="ic_recently.png">images/resources/ic_recently.png</file>
|
||||
<file alias="ic_rss_disabled.png">images/resources/ic_rss_disabled.png</file>
|
||||
<file alias="ic_rss_enabled.png">images/resources/ic_rss_enabled.png</file>
|
||||
<file alias="ic_star_disabled.png">images/resources/ic_star_disabled.png</file>
|
||||
<file alias="ic_star_enabled.png">images/resources/ic_star_enabled.png</file>
|
||||
<file alias="ic_unread.png">images/resources/ic_unread.png</file>
|
||||
<file alias="ttrss256.png">images/resources/ttrss256.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 537 B |
|
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 555 B |
|
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 793 B After Width: | Height: | Size: 793 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 723 B After Width: | Height: | Size: 723 B |
|
Before Width: | Height: | Size: 811 B After Width: | Height: | Size: 811 B |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
|
@ -42,7 +42,7 @@ Page {
|
|||
width: 256
|
||||
height: 256
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
source: "../resources/ttrss256.png"
|
||||
source: "qrc:///images/ttrss256.png"
|
||||
|
||||
anchors.bottomMargin: 50
|
||||
}
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ Dialog {
|
|||
width: 256
|
||||
height: 256
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
source: "../../resources/ttrss256.png"
|
||||
source: "qrc:///images/ttrss256.png"
|
||||
}
|
||||
|
||||
TextField {
|
||||
|
|
|
|||