diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c94137..03cec29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ -## Cockpit Navigator 0.5.6-1 +## Cockpit Navigator 0.5.7-1 -* Fix mangling of large files during upload. \ No newline at end of file +* 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. \ No newline at end of file diff --git a/README.md b/README.md index 4a5d543..d07bde4 100644 --- a/README.md +++ b/README.md @@ -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 ` (v0.5.6 is latest) +1. `$ git checkout ` (v0.5.7 is latest) 1. `# make install` ## From 45Drives Repositories ### Automatic Repo Setup with Script diff --git a/manifest.json b/manifest.json index 60b3151..5a82a26 100644 --- a/manifest.json +++ b/manifest.json @@ -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 ", "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 ", - "changes": [ - "Fix bug where loading spinner doesn't go away after upload dialog is cancelled." - ] + "date": null, + "packager": "Josh Boudreau ", + "changes": [] } } \ No newline at end of file diff --git a/packaging/el7/main.spec b/packaging/el7/main.spec index d1afa39..98a14e5 100644 --- a/packaging/el7/main.spec +++ b/packaging/el7/main.spec @@ -32,6 +32,9 @@ rm -rf %{buildroot} /usr/share/cockpit/navigator/* %changelog +* Mon Nov 29 2021 Joshua Boudreau 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 0.5.6-1 - Fix mangling of large files during upload. * Mon Oct 04 2021 Joshua Boudreau 0.5.5-2 diff --git a/packaging/el8/main.spec b/packaging/el8/main.spec index d1afa39..98a14e5 100644 --- a/packaging/el8/main.spec +++ b/packaging/el8/main.spec @@ -32,6 +32,9 @@ rm -rf %{buildroot} /usr/share/cockpit/navigator/* %changelog +* Mon Nov 29 2021 Joshua Boudreau 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 0.5.6-1 - Fix mangling of large files during upload. * Mon Oct 04 2021 Joshua Boudreau 0.5.5-2 diff --git a/packaging/focal/changelog b/packaging/focal/changelog index 57a7e5e..af8876d 100644 --- a/packaging/focal/changelog +++ b/packaging/focal/changelog @@ -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 Mon, 29 Nov 2021 08:52:51 -0400 + cockpit-navigator (0.5.6-1focal) focal; urgency=medium * Fix mangling of large files during upload.