package 0.5.7

This commit is contained in:
joshuaboud 2021-11-29 12:53:57 -04:00
parent 0a3f9d1f44
commit c02056f282
No known key found for this signature in database
GPG Key ID: 17EFB59E2A8BF50E
6 changed files with 25 additions and 13 deletions

View File

@ -1,3 +1,4 @@
## Cockpit Navigator 0.5.6-1
## Cockpit Navigator 0.5.7-1
* Fix mangling of large files during upload.
* Fix bug where loading spinner doesn't go away after upload dialog is cancelled.
* Add modification and creation time columns and allow sorting by them.

View File

@ -23,17 +23,17 @@ With no command line use needed, you can:
# Installation
## From Github Release
### Ubuntu
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.6/cockpit-navigator_0.5.6-1focal_all.deb`
1. `# apt install ./cockpit-navigator_0.5.6-1focal_all.deb`
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.7/cockpit-navigator_0.5.7-1focal_all.deb`
1. `# apt install ./cockpit-navigator_0.5.7-1focal_all.deb`
### EL7
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.6/cockpit-navigator-0.5.6-1.el7.noarch.rpm`
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.7/cockpit-navigator-0.5.7-1.el7.noarch.rpm`
### EL8
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.6/cockpit-navigator-0.5.6-1.el8.noarch.rpm`
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.7/cockpit-navigator-0.5.7-1.el8.noarch.rpm`
## From Source
1. Ensure dependencies are installed: `cockpit`, `python3`, `rsync`, `zip`.
1. `$ git clone https://github.com/45Drives/cockpit-navigator.git`
1. `$ cd cockpit-navigator`
1. `$ git checkout <version>` (v0.5.6 is latest)
1. `$ git checkout <version>` (v0.5.7 is latest)
1. `# make install`
## From 45Drives Repositories
### Automatic Repo Setup with Script

View File

@ -3,7 +3,7 @@
"name": "cockpit-navigator",
"title": "Cockpit Navigator",
"prerelease": false,
"version": "0.5.6",
"version": "0.5.7",
"buildVersion": "1",
"author": "Josh Boudreau <jboudreau@45drives.com>",
"url": "https://github.com/45Drives/cockpit-navigator",
@ -57,10 +57,8 @@
"version": "0.5.7",
"buildVersion": "1",
"ignore": [],
"date": "2021-11-15T15:53:53.820222",
"packager": "Joshua Boudreau <jboudreau@45drives.com>",
"changes": [
"Fix bug where loading spinner doesn't go away after upload dialog is cancelled."
]
"date": null,
"packager": "Josh Boudreau <jboudreau@45drives.com>",
"changes": []
}
}

View File

@ -32,6 +32,9 @@ rm -rf %{buildroot}
/usr/share/cockpit/navigator/*
%changelog
* Mon Nov 29 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.7-1
- Fix bug where loading spinner doesn't go away after upload dialog is cancelled.
- Add modification and creation time columns and allow sorting by them.
* Fri Nov 12 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.6-1
- Fix mangling of large files during upload.
* Mon Oct 04 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.5-2

View File

@ -32,6 +32,9 @@ rm -rf %{buildroot}
/usr/share/cockpit/navigator/*
%changelog
* Mon Nov 29 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.7-1
- Fix bug where loading spinner doesn't go away after upload dialog is cancelled.
- Add modification and creation time columns and allow sorting by them.
* Fri Nov 12 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.6-1
- Fix mangling of large files during upload.
* Mon Oct 04 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.5-2

View File

@ -1,3 +1,10 @@
cockpit-navigator (0.5.7-1focal) focal; urgency=medium
* Fix bug where loading spinner doesn't go away after upload dialog is cancelled.
* Add modification and creation time columns and allow sorting by them.
-- Joshua Boudreau <jboudreau@45drives.com> Mon, 29 Nov 2021 08:52:51 -0400
cockpit-navigator (0.5.6-1focal) focal; urgency=medium
* Fix mangling of large files during upload.