Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Marketplace/resources/qml/Materials.qml')
-rw-r--r--plugins/Marketplace/resources/qml/Materials.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/Marketplace/resources/qml/Materials.qml b/plugins/Marketplace/resources/qml/Materials.qml
new file mode 100644
index 0000000000..39fae7042a
--- /dev/null
+++ b/plugins/Marketplace/resources/qml/Materials.qml
@@ -0,0 +1,22 @@
+// Copyright (c) 2021 Ultimaker B.V.
+// Cura is released under the terms of the LGPLv3 or higher.
+
+import UM 1.4 as UM
+
+Packages
+{
+ pageTitle: catalog.i18nc("@header", "Install Materials")
+
+ bannerVisible: UM.Preferences.getValue("cura/market_place_show_material_banner")
+ bannerIcon: UM.Theme.getIcon("Spool")
+ bannerText: catalog.i18nc("@text", "Select and install material profiles optimised for your Ultimaker 3D printers.")
+ bannerReadMoreUrl: "" // TODO add when support page is ready
+ onRemoveBanner: function() {
+ UM.Preferences.setValue("cura/market_place_show_material_banner", false);
+ bannerVisible = false;
+ }
+ searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/materials?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-materials-browser"
+ packagesManageableInListView: false
+
+ model: manager.MaterialPackageList
+}