Added release notes display to updater. RPS-48

This commit is contained in:
Patrick Fic
2020-11-16 10:04:11 -08:00
parent b6ce94df08
commit ecf911bc43
14 changed files with 123 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
import ipcTypes from "../ipc.types";
import {
setReleaseNotes,
setSettings,
setUpdateAvailable,
setUpdateProgress,
@@ -89,3 +90,10 @@ ipcRenderer.on(
store.dispatch(signOutStart());
}
);
ipcRenderer.on(
ipcTypes.default.app.toRenderer.setReleaseNotes,
async (event, releaseNotes) => {
store.dispatch(setReleaseNotes(releaseNotes));
}
);