Skip to content

Commit

Permalink
adds py-libzfs to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanKeo45 committed Apr 23, 2024
1 parent 58bfff7 commit 1b0580e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## cockpit zfs 0.1.0-7
## cockpit zfs 0.1.0-8

* wip bug fixing for root_dataset property
* adds py-libzfs to dependencies
7 changes: 4 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "cockpit zfs",
"prerelease": true,
"version": "0.1.0",
"buildVersion": "7",
"buildVersion": "8",
"author": "Jordan Keough <[email protected]>",
"url": "https://github.com/45Drives/cockpit-zfs",
"category": "utils",
Expand All @@ -25,7 +25,8 @@
"el": {
"el8": [
"cockpit",
"python3"
"python3",
"python3-libzfs"
]
}
},
Expand All @@ -39,7 +40,7 @@
"changelog": {
"urgency": "medium",
"version": "0.1.0",
"buildVersion": "7",
"buildVersion": "8",
"ignore": [],
"date": null,
"packager": "Jordan Keough <[email protected]>",
Expand Down
2 changes: 2 additions & 0 deletions packaging/el8/main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ make DESTDIR=%{buildroot} install
/usr/share/cockpit/zfs/*

%changelog
* Tue Apr 23 2024 Jordan Keough <[email protected]> 0.1.0-8
- adds py-libzfs to dependencies
* Mon Mar 11 2024 Jordan Keough <[email protected]> 0.1.0-7
- wip bug fixing for root_dataset property
* Mon Mar 11 2024 Jordan Keough <[email protected]> 0.1.0-6
Expand Down
4 changes: 2 additions & 2 deletions zfs/src/components/snapshots/SendSnapshot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ const sendingData = ref<SendingDataset>({
function handleCheckboxChange(checkbox) {
// Ensure only one checkbox is selected at a time
if (checkbox === 'sendCompressed' && sendCompressed.value) {
sendRaw.value = false;
sendRaw.value = false;
} else if (checkbox === 'sendRaw' && sendRaw.value) {
sendCompressed.value = false;
sendCompressed.value = false;
}
}
Expand Down

0 comments on commit 1b0580e

Please sign in to comment.