mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-17 11:47:50 -06:00
Further simplify the data being sent over to the package manager
CURA-8587
This commit is contained in:
parent
fa7ad7ddb1
commit
477f62916c
3 changed files with 5 additions and 6 deletions
|
@ -85,7 +85,4 @@ class CuraPackageManager(PackageManager):
|
|||
return item == self["package_id"]
|
||||
|
||||
packages = [PkgInfo(package_info) for package in self.getAllInstalledPackagesInfo().values() for package_info in package]
|
||||
packages.extend([PkgInfo(package["package_info"]) for package in self.getPackagesToRemove().values() if package["package_info"]["package_id"] not in packages])
|
||||
packages.extend([PkgInfo(package["package_info"]) for package in self.getPackagesToInstall().values() if package["package_info"]["package_id"] not in packages])
|
||||
|
||||
return [dict(package) for package in packages]
|
||||
|
|
|
@ -49,7 +49,7 @@ class LocalPackageList(PackageList):
|
|||
|
||||
def _removePackageModel(self, package_id):
|
||||
package = self.getPackageModel(package_id)
|
||||
if not package.canUpdate and package_id in self._package_manager.getPackagesToRemove() and package_id not in self._package_manager.getPackagesToInstall():
|
||||
if not package.canUpdate and package_id in self._package_manager.getToRemovePackageIDs() and package_id not in self._package_manager.getPackagesToInstall():
|
||||
index = self.find("package", package_id)
|
||||
if index < 0:
|
||||
Logger.error(f"Could not find card in Listview corresponding with {package_id}")
|
||||
|
@ -110,5 +110,7 @@ class LocalPackageList(PackageList):
|
|||
return
|
||||
|
||||
packages = response_data["data"]
|
||||
self._package_manager.setPackagesWithUpdate(dict(zip([p['package_id'] for p in packages], [p for p in packages])))
|
||||
|
||||
self._package_manager.setPackagesWithUpdate({p['package_id'] for p in packages})
|
||||
|
||||
self._ongoing_requests["check_updates"] = None
|
||||
|
|
|
@ -635,7 +635,7 @@ class Toolbox(QObject, Extension):
|
|||
elif request_type == "updates":
|
||||
# Tell the package manager that there's a new set of updates available.
|
||||
packages = self._server_response_data[request_type]
|
||||
self._package_manager.setPackagesWithUpdate(dict(zip([p['package_id'] for p in packages], [p for p in packages])))
|
||||
self._package_manager.setPackagesWithUpdate({p['package_id'] for p in packages})
|
||||
|
||||
self.metadataChanged.emit()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue