mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-04-02 19:02:41 +00:00
Adjusted C++ code to handle with new and renamed objects, as well as properties with different types. As a result of changing types, the QML side had to be updated as well. I hope I found everything by manually testing. Additionally, the Qt Quick application has been updated to test the remote sessions more easily and to make it launch again.
9 lines
251 B
QML
9 lines
251 B
QML
pragma Singleton
|
|
import QtQuick 2.12
|
|
import nl.netsoj.chris.Jellyfin 1.0 as J
|
|
|
|
J.ApiClient {
|
|
appName: "Sailfin QtQuick"
|
|
supportedCommands: [J.GeneralCommandType.Play, J.GeneralCommandType.DisplayContent, J.GeneralCommandType.DisplayMessage]
|
|
}
|