Plugins.qml 980 B

1234567891011121314151617181920212223
  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", "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users.")
  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?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-plugins-browser"
  17. packagesManageableInListView: false
  18. model: manager.PluginPackageList
  19. }