mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-03 01:04:35 +08:00
28 lines
1.2 KiB
QML
28 lines
1.2 KiB
QML
// Copyright (c) 2022 UltiMaker
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import UM 1.4 as UM
|
|
|
|
Packages
|
|
{
|
|
pageTitle: catalog.i18nc("@header", "Manage packages")
|
|
|
|
bannerVisible: UM.Preferences.getValue("cura/market_place_show_manage_packages_banner");
|
|
bannerIcon: UM.Theme.getIcon("ArrowDoubleCircleRight")
|
|
bannerText: catalog.i18nc("@text", "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly.")
|
|
bannerReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/4411125921426/?utm_source=cura&utm_medium=software&utm_campaign=marketplace-learn-manage"
|
|
onRemoveBanner: function() {
|
|
UM.Preferences.setValue("cura/market_place_show_manage_packages_banner", false);
|
|
bannerVisible = false;
|
|
}
|
|
searchInBrowserUrl: "https://marketplace.ultimaker.com/app/cura/plugins?utm_source=cura&utm_medium=software&utm_campaign=marketplace-search-plugins-browser"
|
|
showUpdateButton: true
|
|
showInstallButton: true
|
|
showDisableButton: true
|
|
model: manager.LocalPackageList
|
|
}
|