Plugins.qml 942 B

12345678910111213141516171819202122
  1. // Copyright (c) 2021 Ultimaker B.V.
  2. // Cura is released under the terms of the LGPLv3 or higher.
  3. import UM 1.4 as UM
  4. Packages
  5. {
  6. pageTitle: catalog.i18nc("@header", "Install Plugins")
  7. bannerVisible: UM.Preferences.getValue("cura/market_place_show_plugin_banner")
  8. bannerIcon: UM.Theme.getIcon("Shop")
  9. bannerText: catalog.i18nc("@text", "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users.")
  10. bannerReadMoreUrl: "" // TODO add when support page is ready
  11. onRemoveBanner: function() {
  12. UM.Preferences.setValue("cura/market_place_show_plugin_banner", false)
  13. bannerVisible = false;
  14. }
  15. searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/plugins?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-plugins-browser"
  16. packagesManageableInListView: false
  17. model: manager.PluginPackageList
  18. }