Materials.qml 702 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 Materials")
  7. bannerVisible: CuraApplication.shouldShowMarketPlaceMaterialBanner()
  8. bannerIcon: "Spool"
  9. bannerBody: catalog.i18nc("@text", "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users.")
  10. onRemoveBanner: function() {
  11. CuraApplication.closeMarketPlaceMaterialBanner();
  12. bannerVisible = false;
  13. }
  14. model: Marketplace.RemotePackageList
  15. {
  16. packageTypeFilter: "material"
  17. }
  18. }