Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding plugins support for the webgui #107

Draft
wants to merge 30 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
9470f8a
change Rc calls to rclone-api
negative0 Jun 6, 2020
7702ddf
Video Plugin: Integration
negative0 May 22, 2020
91174f0
plugins: Added plugin dashboard
negative0 May 22, 2020
28c6b7d
plugins: load plugins dynamically
negative0 May 27, 2020
258481f
Tools: Minor changes.
negative0 Jun 6, 2020
0cf5135
Add plugin Handler
negative0 Jun 8, 2020
83525bf
Add plugin dashboard
negative0 Jun 10, 2020
73443b2
Add plugin dashboard
negative0 Jun 10, 2020
b3623eb
mount: Add mount dashboard.
negative0 Jun 14, 2020
ae48d3a
Switch to rclone-api
negative0 Jun 8, 2020
61e3309
Video Plugin: Integration
negative0 May 22, 2020
6ac3f09
plugins: Added plugin dashboard
negative0 May 22, 2020
c5cc7de
plugins: load plugins dynamically
negative0 May 27, 2020
90496c6
Add plugin Handler
negative0 Jun 8, 2020
49294da
Add plugin dashboard
negative0 Jun 10, 2020
0ccb6cd
Add new plugin modal
negative0 Jun 15, 2020
bbd7593
Add Plugin Store
negative0 Jun 17, 2020
41dfd76
Delete function for loaded plugins, minor fixes
negative0 Jun 23, 2020
1173333
Delete function for loaded plugins, minor fixes
negative0 Jun 23, 2020
71239a0
Minor changes
negative0 Jun 23, 2020
23353bc
Check if rclone or handlesType is null.
negative0 Jun 25, 2020
d061361
Update: Update packages to latest
negative0 Jul 16, 2020
69cacc9
Terminal: Add terminal plugin handler.
negative0 Jul 18, 2020
d1ec2e3
Corrections after rebase
negative0 Jul 28, 2020
0483a4c
Add dashboard plugins
negative0 Jul 28, 2020
5e9df67
Add search filter for store dashboard
negative0 Aug 22, 2020
88c76e3
Change color of Button for add plugin and add icon for delete plugin …
negative0 Aug 22, 2020
4016f2a
Fix loading of plugins upon add/delete
negative0 Aug 23, 2020
6dee82d
Add support for directory type plugins
negative0 Aug 23, 2020
44561f5
Fix failing tests
negative0 Aug 24, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion Utils/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import checkPropTypes from 'check-prop-types';
import {applyMiddleware, createStore} from 'redux';
import rootReducer from './../src/reducers';
import {middleware} from './../src/store';
import {middleware} from '../src/store';

export const findByTestAttr = (component, attr) => {
const wrapper = component.find(`[data-test='${attr}']`);
Expand Down
Loading