mirror of
https://github.com/45Drives/cockpit-navigator.git
synced 2025-08-20 00:58:33 +02:00
120 lines
5.1 KiB
Django/Jinja
120 lines
5.1 KiB
Django/Jinja
%global debug_package %{nil}
|
|
|
|
Name: {{ name }}
|
|
Version: {{ version }}
|
|
Release: {{ build_number }}%{?dist}
|
|
Summary: {{ description }}
|
|
License: {{ license }}
|
|
URL: {{ git_url }}
|
|
Source0: %{name}-%{version}.tar.gz
|
|
BuildArch: {{ architecture.rocky }}
|
|
Requires: {{ dependencies.rocky_common | join(',') }}
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
%description
|
|
{{ title }}
|
|
{{ description }}
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
# empty
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} DIST=%{dist} NAV_VERS="%{version}-%{release}" install
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
/usr/share/cockpit/navigator/*
|
|
|
|
%changelog
|
|
* Wed Oct 26 2022 Joshua Boudreau <jboudreau@45drives.com> 0.5.10-1
|
|
- Disallow changing selected file/folder while editing permissions
|
|
- Allow opening non-text file for editing via prompt
|
|
* Fri Aug 05 2022 Joshua Boudreau <jboudreau@45drives.com> 0.5.9-1
|
|
- Fix CSS for Cockpit 273 and greater
|
|
* Mon Jun 06 2022 Joshua Boudreau <jboudreau@45drives.com> 0.5.8-2
|
|
- Add file and coreutils dependencies.
|
|
* Wed Dec 01 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.8-1
|
|
- Fix non-root user file downloads.
|
|
* 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
|
|
- Fix sed command for packaging EL7.
|
|
* Mon Oct 04 2021 Joshua Boudreau <jboudreau@45drives.com> 0.5.5-1
|
|
- Fix maintaining file permissions and ownership after editing file.
|
|
- Add file upload button to top bar.
|
|
* Tue Jul 20 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.4-1
|
|
- Add fuzzy search.
|
|
- Optimize folder uploads.
|
|
- Fix bugs with selecting entries and renaming files.
|
|
- Stop user from deleting or renaming system-critical paths.
|
|
* Mon Jul 19 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.3-1
|
|
- Implement inline filename editing.
|
|
- Add information popup button.
|
|
* Fri Jul 16 2021 Josh Boudreau <jboudreau@45drives.com> 0.5.2-1
|
|
- Implement uploading of entire directories.
|
|
- Add cancel option to in-progress file uploads.
|
|
* 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
|
|
- Implement custom modal style popups to replace browser dialogs.
|
|
* Wed Jul 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-3
|
|
- Add release for el7
|
|
* Wed Jun 30 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-2
|
|
- First build with auto packaging
|
|
* Fri Jun 18 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.6-1
|
|
- Disable navigation buttons when invalid.
|
|
* Thu Jun 17 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.5-1
|
|
- Fix downloading a single file when the contextmenu
|
|
event target is not the file.
|
|
* Thu Jun 10 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.4-1
|
|
- Hide download option in right click context menu when no items
|
|
are explicitly selected.
|
|
* Tue Jun 08 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.3-1
|
|
- Add sort options for list view.
|
|
- Add search bar to filter items.
|
|
- Fix file size error after upload by refreshing after write process exits.
|
|
- Fix input of tab characters and copy and pasting in file editor.
|
|
* Mon Jun 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.2-1
|
|
- Implement list view.
|
|
- Fix opening symlinks to files for editing.
|
|
* Mon Jun 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.1-1
|
|
- Use smaller chunk size while uploading for older versions of Cockpit.
|
|
* Mon Jun 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.0-1
|
|
- Add icons to right click menu.
|
|
- Add ability to download files and directories.
|
|
- Show transfer rate and ETA while uploading files.
|
|
* Thu Jun 03 2021 Josh Boudreau <jboudreau@45drives.com> 0.3.0-1
|
|
- Add drag and drop uploading of files.
|
|
- Add event listeners for ctrl+a to select all, ctrl+x to cut,
|
|
ctrl+c to copy, ctrl+v to paste, and delete to remove a file.
|
|
* Wed Jun 02 2021 Josh Boudreau <jboudreau@45drives.com> 0.2.3-1
|
|
- Fix closing contextmenu in el7.
|
|
- Hide rename in right click menu with multiple selected entries.
|
|
- Populate default link target to selected item from right click menu.
|
|
* Wed Jun 02 2021 Josh Boudreau <jboudreau@45drives.com> 0.2.2-1
|
|
- Set default value in rename prompt to current filename.
|
|
* Wed Jun 02 2021 Josh Boudreau <jboudreau@45drives.com> 0.2.1-1
|
|
- Rename "Move" to "Cut" in right click context menu.
|
|
- Improve pasting files after copying/cutting with a custom python
|
|
script to handle checking for file conflicts before calling rsync.
|
|
- Control+S saves file that's open for editing.
|
|
- Moved renaming file from properties to right click menu with prompt.
|
|
- Creating files now fails verbosely if the destination exists.
|
|
* Tue Jun 01 2021 Josh Boudreau <jboudreau@45drives.com> 0.2.0-1
|
|
- Allow for batch editing permissions and deletion by
|
|
holding shift or control while clicking to select multiple
|
|
entries.
|
|
- Add custom right click menu.
|
|
* Fri May 28 2021 Josh Boudreau <jboudreau@45drives.com> 0.1.0-1
|
|
- First Build |