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": {
"productName": "Nothing",
"version": "1.3.1"
"version": "1.4.0"
},
"tauri": {
"systemTray": {

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

Loading…
Cancel
Save