Cura/plugins/Marketplace/resources/qml/Plugins.qml
casper 815aadb0d7
Add links to read me support pages
Note that since the support pages are not yet ready the "read more"
buttons are hidden. Once the correct link is added they become visible
again.
2021-12-03 13:26:14 +01:00

23 lines
701 B
QML

// Copyright (c) 2021 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import Marketplace 1.0 as Marketplace
Packages
{
pageTitle: catalog.i18nc("@header", "Install Plugins")
bannerVisible: CuraApplication.shouldShowMarketPlacePluginBanner()
bannerIcon: "Shop"
bannerBody: catalog.i18nc("@text", "Select and install material profiles optimised for your Ultimaker 3D printers.")
readMoreUrl: "" // TODO add when support page is ready
onRemoveBanner: function() {
CuraApplication.closeMarketPlacePluginBanner();
bannerVisible = false;
}
model: Marketplace.RemotePackageList
{
packageTypeFilter: "plugin"
}
}