Updated CHANGELOG.md
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## 1.0.9
|
## 1.0.9
|
||||||
* \#40: Support for remote Windows mounts
|
* \#40: Support for remote Windows mounts
|
||||||
* ScPrime re-brand
|
* ScPrime re-brandcalhost:2000
|
||||||
* Fix VC runtime detection (detect additional GUID's)
|
* Fix VC runtime detection (detect additional GUID's)
|
||||||
|
|
||||||
## 1.0.8
|
## 1.0.8
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import {
|
|||||||
export const createMountReducer = state => {
|
export const createMountReducer = state => {
|
||||||
let providerList = [
|
let providerList = [
|
||||||
...Constants.PROVIDER_LIST,
|
...Constants.PROVIDER_LIST,
|
||||||
...(state.RemoteMounts||['Remotelocalhost:20000']),
|
...(state.RemoteMounts||[]),
|
||||||
];
|
];
|
||||||
const providerState = providerList.map(provider=> {
|
const providerState = providerList.map(provider=> {
|
||||||
return {
|
return {
|
||||||
@@ -55,7 +55,7 @@ export const createMountReducer = state => {
|
|||||||
MountsBusy: false,
|
MountsBusy: false,
|
||||||
MountState: mountState,
|
MountState: mountState,
|
||||||
ProviderState: providerState,
|
ProviderState: providerState,
|
||||||
RemoteMounts: state.RemoteMounts ? state.RemoteMounts : ['Remotelocalhost:20000'],
|
RemoteMounts: state.RemoteMounts ? state.RemoteMounts : [],
|
||||||
}, {
|
}, {
|
||||||
[addRemoteMount2]: (state, action) => {
|
[addRemoteMount2]: (state, action) => {
|
||||||
let mountState = {...state.MountState};
|
let mountState = {...state.MountState};
|
||||||
|
|||||||
Reference in New Issue
Block a user