diff --git a/CHANGELOG.md b/CHANGELOG.md index e4ea28b..957553e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.0.7 +* \#31: New installation displays 'Mount location is not set' on Windows + ## 1.0.6 * Additional Linux distribution support: * Antergos diff --git a/src/constants.js b/src/constants.js index 8d19813..f295fd1 100644 --- a/src/constants.js +++ b/src/constants.js @@ -28,7 +28,7 @@ exports.DEV_PUBLIC_KEY = '-----BEGIN PUBLIC KEY-----\n' + '-----END PUBLIC KEY-----'; -const REPERTORY_BRANCH = '1.0.1-release_branch'; +const REPERTORY_BRANCH = '1.0.2-release_branch'; const REPERTORY_UI_BRANCH = '1.0.7_branch'; exports.RELEASES_URL = 'https://bitbucket.org/blockstorage/repertory/raw/' + REPERTORY_BRANCH + '/releases.json'; diff --git a/src/containers/MountItems/MountItems.js b/src/containers/MountItems/MountItems.js index 2317438..58a84ce 100644 --- a/src/containers/MountItems/MountItems.js +++ b/src/containers/MountItems/MountItems.js @@ -223,7 +223,10 @@ class MountItems extends IPCContainer { } if (location !== providerState.MountLocation) { - this.handleMountLocationChanged(provider, location); + const value = (this.props.Platform === 'win32') ? + data.DriveLetters[provider].indexOf(location) : + location; + this.handleMountLocationChanged(provider, value); } if (!this.props.AutoMountProcessed &&