9
0

Compare commits

1 Commits

Author SHA256 Message Date
64a503ebac Update to 337 2025-08-20 11:51:18 +01:00
8 changed files with 955 additions and 1469 deletions

BIN
cockpit-machines-333.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
cockpit-machines-337.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Wed Aug 20 10:04:47 UTC 2025 - Alice Brooks <alice.brooks@suse.com>
- Update to 337
* 337
- Bug fixes and translation updates
* 336
- Graphical VNC and serial consoles improvements
- Control VNC console resizing and scaling
- Bug fixes and translation updates
* 335
- Bug fixes and translation updates
* 334
- Bug fixes and translation updates
-------------------------------------------------------------------
Wed Jul 9 08:18:07 UTC 2025 - Miika Alikirri <miika.alikirri@suse.com>

View File

@@ -17,7 +17,7 @@
Name: cockpit-machines
Version: 333
Version: 337
Release: 0
Summary: Cockpit user interface for virtual machines
License: LGPL-2.1-or-later AND MIT

View File

@@ -13,11 +13,11 @@ page at the same time
src/components/vm/nics/vmNicsCard.tsx | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/components/vm/nics/vmNicsCard.jsx b/src/components/vm/nics/vmNicsCard.jsx
index 8b309ac0..79efe152 100644
--- a/src/components/vm/nics/vmNicsCard.jsx
+++ b/src/components/vm/nics/vmNicsCard.jsx
@@ -239,8 +239,15 @@ export class VmNetworkTab extends React.Component {
diff --git a/src/components/vm/nics/vmNicsCard.tsx b/src/components/vm/nics/vmNicsCard.tsx
index e45e14f..53674cc 100644
--- a/src/components/vm/nics/vmNicsCard.tsx
+++ b/src/components/vm/nics/vmNicsCard.tsx
@@ -301,8 +301,15 @@ export class VmNetworkTab extends React.Component<VmNetworkTabProps, VmNetworkTa
domainInterfaceAddresses({ connectionName: this.props.vm.connectionName, objPath: this.props.vm.id })
.then(domifaddressAllSources => {
const allRejected = !domifaddressAllSources.some(promise => promise.status == 'fulfilled');
@@ -28,9 +28,9 @@ index 8b309ac0..79efe152 100644
+ const domainNotFound = domifaddressAllSources.some(promise =>
+ promise.status === 'rejected' && promise.reason?.message.startsWith("Domain not found:")
+ );
- if (allRejected)
+ if (allRejected && !domainNotFound)
- if (allRejected) {
+ if (allRejected && !domainNotFound) {
this.props.onAddErrorNotification({
text: cockpit.format(_("Failed to fetch the IP addresses of the interfaces present in $0"), this.props.vm.name),
detail: [...new Set(domifaddressAllSources.map(promise => promise.reason ? promise.reason.message : ''))].join(', '),
detail: [...new Set(domifaddressAllSources.map(promise => promise.status == 'rejected' && promise.reason ? promise.reason.message : ''))].join(', '),

BIN
node_modules.obscpio (Stored with Git LFS)

Binary file not shown.

File diff suppressed because it is too large Load Diff

1348
package-lock.json generated

File diff suppressed because it is too large Load Diff