Skip to content

Commit

Permalink
add update podman menu option for non-mac
Browse files Browse the repository at this point in the history
  • Loading branch information
jgresham committed Nov 4, 2023
1 parent 7dc8741 commit 23b585e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,12 @@ export default class MenuBuilder {
checkNodePortsAndNotify();
},
},
{
label: t('Update Podman'),
click() {
checkForPodmanUpdate();
},
},
],
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const SystemMonitor = () => {
useEffect(() => {
// when new system data arrives
if (sData) {
console.log('systeminfo all: ', sData);
const newParsedData = [];
// todo: internet. storage IOPS.
if (Array.isArray(sData.diskLayout)) {
Expand Down

0 comments on commit 23b585e

Please sign in to comment.