Plugins.qml 1.0 KB

1234567891011121314151617181920212223
  1. // Copyright (c) 2022 UltiMaker
  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: "https://support.ultimaker.com/hc/en-us/articles/360011968360/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-plugins"
  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. showUpdateButton: true
  17. showInstallButton: true
  18. model: manager.PluginPackageList
  19. }