Merge remote-tracking branch 'origin/1.1.x_branch' into 1.2.x_branch
This commit is contained in:
33
package.json
33
package.json
@@ -5,34 +5,37 @@
|
|||||||
"author": "scott.e.graves@protonmail.com",
|
"author": "scott.e.graves@protonmail.com",
|
||||||
"description": "GUI for Repertory - Repertory allows you to mount Sia, Goobox S3 and/or ScPrime blockchain storage solutions via FUSE on Linux/OS X or via WinFSP on Windows.",
|
"description": "GUI for Repertory - Repertory allows you to mount Sia, Goobox S3 and/or ScPrime blockchain storage solutions via FUSE on Linux/OS X or via WinFSP on Windows.",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^1.2.25",
|
"@fortawesome/fontawesome-svg-core": "^1.2.26",
|
||||||
"@fortawesome/free-solid-svg-icons": "^5.11.2",
|
"@fortawesome/free-solid-svg-icons": "^5.12.0",
|
||||||
"@fortawesome/react-fontawesome": "^0.1.7",
|
"@fortawesome/react-fontawesome": "^0.1.8",
|
||||||
|
"@reduxjs/toolkit": "^1.2.3",
|
||||||
"auto-launch": "^5.0.5",
|
"auto-launch": "^5.0.5",
|
||||||
"axios": "^0.19.0",
|
"axios": "^0.19.2",
|
||||||
"devtron": "^1.4.0",
|
"devtron": "^1.4.0",
|
||||||
"electron-debug": "^3.0.1",
|
"electron-debug": "^3.0.1",
|
||||||
"font-awesome": "^4.7.0",
|
"font-awesome": "^4.7.0",
|
||||||
"node-schedule": "^1.3.2",
|
"node-schedule": "^1.3.2",
|
||||||
"randomstring": "^1.1.5",
|
"randomstring": "^1.1.5",
|
||||||
"react": "^16.11.0",
|
"react": "^16.12.0",
|
||||||
"react-dom": "^16.11.0",
|
"react-dom": "^16.12.0",
|
||||||
"react-loader-spinner": "^3.1.4",
|
"react-loader-spinner": "^3.1.5",
|
||||||
"react-redux": "^7.1.3",
|
"react-redux": "^7.1.3",
|
||||||
"react-scripts": "3.2.0",
|
"react-scripts": "3.3.1",
|
||||||
"react-tooltip": "^3.11.1",
|
"react-tooltip": "^3.11.4",
|
||||||
"redux": "^4.0.4",
|
"redux": "^4.0.5",
|
||||||
"redux-starter-kit": "^1.0.1",
|
|
||||||
"redux-thunk": "^2.3.0",
|
"redux-thunk": "^2.3.0",
|
||||||
"unzipper": "^0.10.5",
|
"unzipper": "^0.10.7",
|
||||||
"winreg": "^1.2.4"
|
"winreg": "^1.2.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cross-env": "^6.0.3",
|
"cross-env": "^7.0.0",
|
||||||
"electron": "^5.0.12",
|
"electron": "^5.0.13",
|
||||||
"electron-builder": "^20.44.4",
|
"electron-builder": "^20.44.4",
|
||||||
"extract-text-webpack-plugin": "^3.0.2",
|
"extract-text-webpack-plugin": "^3.0.2",
|
||||||
"typescript": "^3.7.2",
|
"fibers": "^4.0.2",
|
||||||
|
"node-sass": "^4.13.1",
|
||||||
|
"sass": "^1.25.0",
|
||||||
|
"typescript": "^3.7.5",
|
||||||
"webpack-browser-plugin": "^1.0.20"
|
"webpack-browser-plugin": "^1.0.20"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
import {createAction} from 'redux-starter-kit';
|
import {createAction} from '@reduxjs/toolkit';
|
||||||
import {getIPCRenderer} from '../../utils';
|
import {getIPCRenderer} from '../../utils';
|
||||||
|
|
||||||
const ipcRenderer = getIPCRenderer();
|
const ipcRenderer = getIPCRenderer();
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
import {createAction} from 'redux-starter-kit';
|
import {createAction} from '@reduxjs/toolkit';
|
||||||
import {getIPCRenderer} from '../../utils';
|
import {getIPCRenderer} from '../../utils';
|
||||||
import {notifyError} from './error_actions';
|
import {notifyError} from './error_actions';
|
||||||
import {
|
import {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
import {createAction} from 'redux-starter-kit';
|
import {createAction} from '@reduxjs/toolkit';
|
||||||
import {
|
import {
|
||||||
getIPCRenderer,
|
getIPCRenderer,
|
||||||
getSelectedVersionFromState
|
getSelectedVersionFromState
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
import {createAction} from 'redux-starter-kit';
|
import {createAction} from '@reduxjs/toolkit';
|
||||||
import {getIPCRenderer} from '../../utils';
|
import {getIPCRenderer} from '../../utils';
|
||||||
import {
|
import {
|
||||||
confirmYesNo,
|
confirmYesNo,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
import {createAction} from 'redux-starter-kit';
|
import {createAction} from '@reduxjs/toolkit';
|
||||||
import {notifyError} from './error_actions';
|
import {notifyError} from './error_actions';
|
||||||
import {
|
import {
|
||||||
saveState,
|
saveState,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {createReducer} from 'redux-starter-kit';
|
import {createReducer} from '@reduxjs/toolkit';
|
||||||
import {
|
import {
|
||||||
DISPLAY_CONFIRM_YES_NO,
|
DISPLAY_CONFIRM_YES_NO,
|
||||||
notifyRebootRequired,
|
notifyRebootRequired,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {createReducer} from 'redux-starter-kit';
|
import {createReducer} from '@reduxjs/toolkit';
|
||||||
import {
|
import {
|
||||||
setAllowDownload,
|
setAllowDownload,
|
||||||
SET_DOWNLOAD_BEGIN,
|
SET_DOWNLOAD_BEGIN,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {createReducer} from 'redux-starter-kit';
|
import {createReducer} from '@reduxjs/toolkit';
|
||||||
import {
|
import {
|
||||||
CLEAR_ERROR,
|
CLEAR_ERROR,
|
||||||
CLEAR_INFO,
|
CLEAR_INFO,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {createReducer} from 'redux-starter-kit';
|
import {createReducer} from '@reduxjs/toolkit';
|
||||||
import {
|
import {
|
||||||
setDismissDependencies,
|
setDismissDependencies,
|
||||||
setInstallActive,
|
setInstallActive,
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
import {createReducer} from 'redux-starter-kit';
|
import {createReducer} from '@reduxjs/toolkit';
|
||||||
import {
|
import {
|
||||||
addRemoteMount2,
|
addRemoteMount2,
|
||||||
DISPLAY_CONFIGURATION,
|
DISPLAY_CONFIGURATION,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {createReducer} from 'redux-starter-kit';
|
import {createReducer} from '@reduxjs/toolkit';
|
||||||
import * as Actions from '../actions/release_version_actions';
|
import * as Actions from '../actions/release_version_actions';
|
||||||
import * as Constants from '../../constants';
|
import * as Constants from '../../constants';
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import {configureStore, getDefaultMiddleware} from 'redux-starter-kit';
|
import {configureStore, getDefaultMiddleware} from '@reduxjs/toolkit';
|
||||||
import {createCommonReducer} from '../reducers/common_reducer';
|
import {createCommonReducer} from '../reducers/common_reducer';
|
||||||
import {downloadReducer} from '../reducers/download_reducer';
|
import {downloadReducer} from '../reducers/download_reducer';
|
||||||
import {errorReducer} from '../reducers/error_reducer';
|
import {errorReducer} from '../reducers/error_reducer';
|
||||||
|
|||||||
Reference in New Issue
Block a user