Skip to content

Commit

Permalink
The terminology is typically 'release notes'
Browse files Browse the repository at this point in the history
  • Loading branch information
jnm2 committed Oct 11, 2023
1 parent 3f7bc99 commit 5a7f983
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/main/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
SET_UI_THEME,
SET_NATIVE_TITLEBAR,
SET_SHOW,
RELEASED_NOTES_LINK,
RELEASE_NOTES_LINK,
TRAY_ICON_UPDATE,
SET_COMPACT_MODE,
SET_OPEN_AT_LOGIN,
Expand Down Expand Up @@ -334,11 +334,11 @@ if (!onlySingleInstance) {
notify({
title: "NEW UPDATE IS AVAILABLE",
message: `App version ${info.version} ready to be downloaded.`,
actions: ["View Released Notes"],
actions: ["View Release Notes"],
callback: (err, response) => {
if (!err) {
if (response === "view released notes") {
shell.openExternal(RELEASED_NOTES_LINK);
if (response === "view release notes") {
shell.openExternal(RELEASE_NOTES_LINK);
}
}
},
Expand Down

0 comments on commit 5a7f983

Please sign in to comment.