Plugins.qml 857 B

12345678910111213141516171819202122232425
  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. import UM 1.4 as UM
  5. Packages
  6. {
  7. pageTitle: catalog.i18nc("@header", "Install Plugins")
  8. bannerVisible: UM.Preferences.getValue("cura/market_place_show_plugin_banner")
  9. bannerIcon: UM.Theme.getIcon("Shop")
  10. bannerText: catalog.i18nc("@text", "Select and install material profiles optimised for your Ultimaker 3D printers.")
  11. bannerReadMoreUrl: "" // TODO add when support page is ready
  12. onRemoveBanner: function() {
  13. UM.Preferences.setValue("cura/market_place_show_plugin_banner", false)
  14. bannerVisible = false;
  15. }
  16. searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/plugins"
  17. model: Marketplace.RemotePackageList
  18. {
  19. packageTypeFilter: "plugin"
  20. }
  21. }