cockpit-navigator/el/cockpit-navigator.spec

79 lines
3.0 KiB
Plaintext
Raw Normal View History

2021-05-28 21:11:29 +02:00
Name: cockpit-navigator
2021-06-17 15:26:25 +02:00
Version: 0.4.5
2021-05-28 21:11:29 +02:00
Release: 1%{?dist}
Summary: A File System Browser for Cockpit.
License: GPL-3.0+
URL: github.com/45drives/cockpit-navigator/blob/main/README.md
Source0: %{name}-%{version}.tar.gz
BuildArch: noarch
Requires: cockpit python3 rsync zip
2021-05-28 21:11:29 +02:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
%description
Cockpit Navigator
A File System Browser for Cockpit.
%prep
%setup -q
%build
# empty
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}
cp -a * %{buildroot}
%clean
rm -rf %{buildroot}
%files
2021-05-28 21:22:18 +02:00
/usr/share/cockpit/navigator/*
2021-05-28 21:11:29 +02:00
%changelog
2021-06-17 15:26:25 +02:00
* 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.
2021-06-10 17:15:40 +02:00
* 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.
2021-06-08 21:11:47 +02:00
* 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.
2021-06-07 22:29:57 +02:00
* Mon Jun 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.2-1
- Implement list view.
- Fix opening symlinks to files for editing.
2021-06-07 18:09:44 +02:00
* Mon Jun 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.1-1
- Use smaller chunk size while uploading for older versions of Cockpit.
2021-06-07 17:17:31 +02:00
* Mon Jun 07 2021 Josh Boudreau <jboudreau@45drives.com> 0.4.0-1
2021-06-03 22:31:45 +02:00
- Add icons to right click menu.
- Add ability to download files and directories.
2021-06-07 17:17:31 +02:00
- Show transfer rate and ETA while uploading files.
2021-06-03 21:33:26 +02:00
* 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.
2021-06-02 18:57:54 +02:00
* 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.
2021-06-02 17:55:55 +02:00
* Wed Jun 02 2021 Josh Boudreau <jboudreau@45drives.com> 0.2.2-1
- Set default value in rename prompt to current filename.
2021-06-02 17:13:54 +02:00
* 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.
2021-06-01 18:50:58 +02:00
* 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.
2021-06-01 22:06:53 +02:00
- Add custom right click menu.
2021-05-28 21:11:29 +02:00
* Fri May 28 2021 Josh Boudreau <jboudreau@45drives.com> 0.1.0-1
- First Build