diff --git a/lib/utils/notify.js b/lib/utils/notify.js index 6b66ad54..06c053b7 100644 --- a/lib/utils/notify.js +++ b/lib/utils/notify.js @@ -122,11 +122,11 @@ Do you want to back up this file anyway?`.trim(), let message, detail if (diffData.localTime === diffData.backupTime) { message = 'Your settings have changed since your last backup.' - detail = 'Last Backup: ' + new Date(diffData.localTime).toLocaleString() + detail = 'Last Local Sync: ' + new Date(diffData.localTime).toLocaleString() } else { message = 'Your backup has changed since your last restore.' - detail = 'Last Backup: ' + new Date(diffData.localTime).toLocaleString() - detail += '\nBackup Created: ' + new Date(diffData.backupTime).toLocaleString() + detail = 'Last Local Sync: ' + new Date(diffData.localTime).toLocaleString() + detail += '\nLast Remote Backup Change: ' + new Date(diffData.backupTime).toLocaleString() } const notification = notify.warning(`Sync-Settings: ${message}`, { dismissable: true, diff --git a/lib/views/diff-view.js b/lib/views/diff-view.js index 2916ea53..725775b7 100644 --- a/lib/views/diff-view.js +++ b/lib/views/diff-view.js @@ -155,8 +155,8 @@ module.exports = class DiffView { return (
-					
Local - Last Backup: {diff.localTime ? new Date(diff.localTime).toLocaleString() : 'Never'}
-
Backup - Backup Created: {new Date(diff.backupTime).toLocaleString()}
+
Local - Last Local Sync: {diff.localTime ? new Date(diff.localTime).toLocaleString() : 'Never'}
+
Backup - Last Remote Backup Change: {new Date(diff.backupTime).toLocaleString()}
{diff.settings ? this.renderSettings(diff.settings) : null} {diff.packages ? this.renderPackages(diff.packages) : null}