1.4.0, updated base plan and support for not marking non-edits as edited

merge-notes 1.4.0
isark 2 years ago
parent c1354236c7
commit 91d93711cc

File diff suppressed because one or more lines are too long

@ -8,7 +8,7 @@
}, },
"package": { "package": {
"productName": "Nothing", "productName": "Nothing",
"version": "1.3.1" "version": "1.4.0"
}, },
"tauri": { "tauri": {
"systemTray": { "systemTray": {

@ -255,8 +255,10 @@ export class EditorComponent implements OnInit {
dialogRef.afterClosed().subscribe(note => { dialogRef.afterClosed().subscribe(note => {
if(note) { if(note) {
if (item.notes !== note) {
item.edited = true;
}
item.notes = note; item.notes = note;
item.edited = true;
} }
}) })

Loading…
Cancel
Save