Plugins.qml 642 B

12345678910111213141516171819202122
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import Marketplace 1.0 as Marketplace
  4. Packages
  5. {
  6. pageTitle: catalog.i18nc("@header", "Install Plugins")
  7. bannerVisible: CuraApplication.shouldShowMarketPlacePluginBanner()
  8. bannerIcon: "Shop"
  9. bannerBody: catalog.i18nc("@text", "Select and install material profiles optimised for your Ultimaker 3D printers.")
  10. onRemoveBanner: function() {
  11. CuraApplication.closeMarketPlacePluginBanner();
  12. bannerVisible = false;
  13. }
  14. model: Marketplace.RemotePackageList
  15. {
  16. packageTypeFilter: "plugin"
  17. }
  18. }