Reorganize project assets
@@ -32,4 +32,4 @@ configure_file(
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.bearwave.desktop DESTINATION share/applications)
|
||||
|
||||
# Install app icon
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/bearwave.png DESTINATION share/icons/hicolor/256x256/apps RENAME org.kde.bearwave.png)
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/assets/app/bearwave.png DESTINATION share/icons/hicolor/256x256/apps RENAME org.kde.bearwave.png)
|
||||
|
||||
|
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 252 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 840 B After Width: | Height: | Size: 840 B |
BIN
github.png
|
Before Width: | Height: | Size: 30 KiB |
BIN
linkedin.png
|
Before Width: | Height: | Size: 27 KiB |
BIN
screenshots/screen01.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
screenshots/screen02.png
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
screenshots/screen03.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
@@ -1,9 +1,9 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file alias="Main.qml">qml/Main.qml</file>
|
||||
<file alias="bearwave.png">../bearwave.png</file>
|
||||
<file alias="globe.svg">../globe.svg</file>
|
||||
<file alias="github.svg">../github.svg</file>
|
||||
<file alias="linkedin.svg">../linkedin.svg</file>
|
||||
<file alias="assets/app/bearwave.png">../assets/app/bearwave.png</file>
|
||||
<file alias="assets/ui/globe.svg">../assets/ui/globe.svg</file>
|
||||
<file alias="assets/ui/github.svg">../assets/ui/github.svg</file>
|
||||
<file alias="assets/ui/linkedin.svg">../assets/ui/linkedin.svg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||
@@ -573,7 +573,7 @@ ApplicationWindow {
|
||||
Image {
|
||||
id: coverImage
|
||||
anchors.fill: parent
|
||||
source: backend && backend.player && backend.player.currentCoverArtUrl ? backend.player.currentCoverArtUrl : "qrc:/bearwave.png"
|
||||
source: backend && backend.player && backend.player.currentCoverArtUrl ? backend.player.currentCoverArtUrl : "qrc:/assets/app/bearwave.png"
|
||||
fillMode: backend && backend.player && backend.player.currentCoverArtUrl ? Image.PreserveAspectCrop : Image.PreserveAspectFit
|
||||
smooth: true
|
||||
asynchronous: true
|
||||
@@ -761,7 +761,7 @@ ApplicationWindow {
|
||||
Layout.preferredHeight: 72
|
||||
sourceSize.width: 72
|
||||
sourceSize.height: 72
|
||||
source: "qrc:/bearwave.png"
|
||||
source: "qrc:/assets/app/bearwave.png"
|
||||
fillMode: Image.PreserveAspectFit
|
||||
smooth: true
|
||||
}
|
||||
@@ -804,7 +804,7 @@ ApplicationWindow {
|
||||
ToolButton {
|
||||
Layout.preferredWidth: 40
|
||||
Layout.preferredHeight: 40
|
||||
icon.source: "qrc:/globe.svg"
|
||||
icon.source: "qrc:/assets/ui/globe.svg"
|
||||
icon.width: 19
|
||||
icon.height: 19
|
||||
onClicked: Qt.openUrlExternally("https://palencsar.pro")
|
||||
@@ -821,7 +821,7 @@ ApplicationWindow {
|
||||
ToolButton {
|
||||
Layout.preferredWidth: 40
|
||||
Layout.preferredHeight: 40
|
||||
icon.source: "qrc:/github.svg"
|
||||
icon.source: "qrc:/assets/ui/github.svg"
|
||||
icon.width: 19
|
||||
icon.height: 19
|
||||
onClicked: Qt.openUrlExternally("https://github.com/spalencsar")
|
||||
@@ -838,7 +838,7 @@ ApplicationWindow {
|
||||
ToolButton {
|
||||
Layout.preferredWidth: 40
|
||||
Layout.preferredHeight: 40
|
||||
icon.source: "qrc:/linkedin.svg"
|
||||
icon.source: "qrc:/assets/ui/linkedin.svg"
|
||||
icon.width: 19
|
||||
icon.height: 19
|
||||
onClicked: Qt.openUrlExternally("https://www.linkedin.com/in/spalencsar/")
|
||||
|
||||