mirror of
https://github.com/45Drives/cockpit-navigator.git
synced 2025-07-29 00:24:52 +02:00
prepare for packaging
This commit is contained in:
parent
d5a8f457b2
commit
d4fcf47a82
@ -1,3 +1,4 @@
|
|||||||
## Cockpit Navigator 0.5.0-1
|
## Cockpit Navigator 0.5.1-1
|
||||||
|
|
||||||
* Implement custom modal style popups to replace browser dialogs.
|
* Allow modal popups to scroll if overflowing past page.
|
||||||
|
* Moves focus to next input in modal popup when enter is pressed.
|
10
README.md
10
README.md
@ -23,17 +23,17 @@ With no command line use needed, you can:
|
|||||||
# Installation
|
# Installation
|
||||||
## From Github Release
|
## From Github Release
|
||||||
### Ubuntu
|
### Ubuntu
|
||||||
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.0/cockpit-navigator_0.5.0-1focal_all.deb`
|
1. `$ wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.1/cockpit-navigator_0.5.1-1focal_all.deb`
|
||||||
1. `# apt install ./cockpit-navigator_0.5.0-1focal_all.deb`
|
1. `# apt install ./cockpit-navigator_0.5.1-1focal_all.deb`
|
||||||
### EL7
|
### EL7
|
||||||
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.0/cockpit-navigator-0.5.0-1.el7.noarch.rpm`
|
1. `# yum install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.1/cockpit-navigator-0.5.1-1.el7.noarch.rpm`
|
||||||
### EL8
|
### EL8
|
||||||
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.0/cockpit-navigator-0.5.0-1.el8.noarch.rpm`
|
1. `# dnf install https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.1/cockpit-navigator-0.5.1-1.el8.noarch.rpm`
|
||||||
## From Source
|
## From Source
|
||||||
1. Ensure dependencies are installed: `cockpit`, `python3`, `rsync`, `zip`.
|
1. Ensure dependencies are installed: `cockpit`, `python3`, `rsync`, `zip`.
|
||||||
1. `$ git clone https://github.com/45Drives/cockpit-navigator.git`
|
1. `$ git clone https://github.com/45Drives/cockpit-navigator.git`
|
||||||
1. `$ cd cockpit-navigator`
|
1. `$ cd cockpit-navigator`
|
||||||
1. `$ git checkout <version>` (v0.5.0 is latest)
|
1. `$ git checkout <version>` (v0.5.1 is latest)
|
||||||
1. `# make install`
|
1. `# make install`
|
||||||
## From 45Drives Repositories
|
## From 45Drives Repositories
|
||||||
### Ubuntu
|
### Ubuntu
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "cockpit-navigator",
|
"name": "cockpit-navigator",
|
||||||
"title": "Cockpit Navigator",
|
"title": "Cockpit Navigator",
|
||||||
"prerelease": false,
|
"prerelease": false,
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"buildVersion": "1",
|
"buildVersion": "1",
|
||||||
"author": "Josh Boudreau <jboudreau@45drives.com>",
|
"author": "Josh Boudreau <jboudreau@45drives.com>",
|
||||||
"url": "https://github.com/45Drives/cockpit-navigator",
|
"url": "https://github.com/45Drives/cockpit-navigator",
|
||||||
@ -54,7 +54,7 @@
|
|||||||
],
|
],
|
||||||
"changelog": {
|
"changelog": {
|
||||||
"urgency": "medium",
|
"urgency": "medium",
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"buildVersion": "1",
|
"buildVersion": "1",
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"date": null,
|
"date": null,
|
||||||
|
@ -32,6 +32,9 @@ rm -rf %{buildroot}
|
|||||||
/usr/share/cockpit/navigator/*
|
/usr/share/cockpit/navigator/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.1-1
|
||||||
|
- Allow modal popups to scroll if overflowing past page.
|
||||||
|
- Moves focus to next input in modal popup when enter is pressed.
|
||||||
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.0-1
|
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.0-1
|
||||||
- Implement custom modal style popups to replace browser dialogs.
|
- Implement custom modal style popups to replace browser dialogs.
|
||||||
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
||||||
|
@ -32,6 +32,9 @@ rm -rf %{buildroot}
|
|||||||
/usr/share/cockpit/navigator/*
|
/usr/share/cockpit/navigator/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.1-1
|
||||||
|
- Allow modal popups to scroll if overflowing past page.
|
||||||
|
- Moves focus to next input in modal popup when enter is pressed.
|
||||||
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.0-1
|
* Thu Jul 15 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.0-1
|
||||||
- Implement custom modal style popups to replace browser dialogs.
|
- Implement custom modal style popups to replace browser dialogs.
|
||||||
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
cockpit-navigator (0.5.1-1focal) focal; urgency=medium
|
||||||
|
|
||||||
|
* Allow modal popups to scroll if overflowing past page.
|
||||||
|
* Moves focus to next input in modal popup when enter is pressed.
|
||||||
|
|
||||||
|
-- Josh Boudreau <jboudreau@45drives.com> Thu, 15 Jul 2021 13:29:15 -0300
|
||||||
|
|
||||||
cockpit-navigator (0.5.0-1focal) focal; urgency=medium
|
cockpit-navigator (0.5.0-1focal) focal; urgency=medium
|
||||||
|
|
||||||
* Implement custom modal style popups to replace browser dialogs.
|
* Implement custom modal style popups to replace browser dialogs.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user