Merged master into 1.0.3_branch
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
### GUI for [Repertory](https://bitbucket.org/blockstorage/repertory) ###
|
### GUI for [Repertory](https://bitbucket.org/blockstorage/repertory) ###
|
||||||
Repertory allows you to mount Sia, SiaPrime and/or Hyperspace blockchain storage solutions via FUSE on Linux/OS X or via WinFSP on Windows.
|
Repertory allows you to mount Sia, SiaPrime and/or Hyperspace blockchain storage solutions via FUSE on Linux/OS X or via WinFSP on Windows.
|
||||||
# Downloads #
|
# Downloads #
|
||||||
* [Repertory UI v1.0.2 OS X](https://pixeldrain.com/u/YmWYpQJY)
|
* [Repertory UI v1.0.2 OS X](https://pixeldrain.com/u/sEz57mDP)
|
||||||
* [Repertory UI v1.0.2 Windows 64-bit](https://pixeldrain.com/u/4oJeVntd)
|
* [Repertory UI v1.0.2 Windows 64-bit](https://pixeldrain.com/u/4oJeVntd)
|
||||||
# Supported Platforms #
|
# Supported Platforms #
|
||||||
* OS X
|
* OS X
|
||||||
|
|||||||
18
electron.js
18
electron.js
@@ -517,18 +517,30 @@ ipcMain.on(Constants.IPC_Extract_Release, (event, data) => {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
}
|
}
|
||||||
stream.close();
|
stream.close();
|
||||||
if (os.platform() !== 'win32') {
|
|
||||||
helpers.executeAndWait("chmod +x \"" + path.join(destination, 'repertory') + "\"");
|
|
||||||
}
|
|
||||||
standardIPCReply(event, Constants.IPC_Extract_Release_Complete, {
|
standardIPCReply(event, Constants.IPC_Extract_Release_Complete, {
|
||||||
Source: data.Source,
|
Source: data.Source,
|
||||||
}, error);
|
}, error);
|
||||||
})
|
})
|
||||||
.on('finish', () => {
|
.on('finish', () => {
|
||||||
stream.close();
|
stream.close();
|
||||||
|
if (os.platform() !== 'win32') {
|
||||||
|
helpers
|
||||||
|
.executeAndWait("chmod +x \"" + path.join(destination, 'repertory') + "\"")
|
||||||
|
.then(() => {
|
||||||
standardIPCReply(event, Constants.IPC_Extract_Release_Complete, {
|
standardIPCReply(event, Constants.IPC_Extract_Release_Complete, {
|
||||||
Source: data.Source,
|
Source: data.Source,
|
||||||
});
|
});
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
standardIPCReply(event, Constants.IPC_Extract_Release_Complete, {
|
||||||
|
Source: data.Source,
|
||||||
|
}, error);
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
standardIPCReply(event, Constants.IPC_Extract_Release_Complete, {
|
||||||
|
Source: data.Source,
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"darwin": {
|
"darwin": {
|
||||||
"1.0.2": {
|
"1.0.2": {
|
||||||
"hash": "",
|
"hash": "",
|
||||||
"urls": ["https://pixeldrain.com/api/file/YmWYpQJY"]
|
"urls": ["https://pixeldrain.com/api/file/sEz57mDP"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user