Client OPDS per Calibre Web (Sailfish OS): core C++ testato, UI Silica, packaging RPM

This commit is contained in:
2026-08-12 01:45:31 +02:00
commit 85b4f8e9b9
25 changed files with 1518 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import QtQuick 2.0
import Sailfish.Silica 1.0
CoverBackground {
Column {
anchors.centerIn: parent
spacing: Theme.paddingMedium
Image {
anchors.horizontalCenter: parent.horizontalCenter
source: "/usr/share/harbour-calibreweb/icons/harbour-calibreweb.png"
sourceSize.width: 86
sourceSize.height: 86
}
Label {
anchors.horizontalCenter: parent.horizontalCenter
text: "Calibre Web"
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeSmall
}
}
}