add notarizing
Some checks are pending
Build Electron App / build (macos-latest, build:mac) (push) Waiting to run
Build Electron App / build (ubuntu-latest, build:linux) (push) Waiting to run
Build Electron App / build (windows-latest, build:win) (push) Waiting to run

This commit is contained in:
nicwands
2026-03-02 12:44:32 -05:00
parent 2609d73bbd
commit cc3ba79df0
2 changed files with 1 additions and 3 deletions

View File

@@ -24,7 +24,6 @@ mac:
- NSMicrophoneUsageDescription: Application requests access to the device's microphone. - NSMicrophoneUsageDescription: Application requests access to the device's microphone.
- NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder. - NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
- NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder. - NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
notarize: false
dmg: dmg:
artifactName: ${name}-${version}.${ext} artifactName: ${name}-${version}.${ext}
linux: linux:

View File

@@ -71,6 +71,7 @@ const updateTitle = _debounce(async (editor) => {
onMounted(async () => { onMounted(async () => {
const note = await loadNote(id) const note = await loadNote(id)
console.log(note)
lastTitle = note.title lastTitle = note.title
editor.value = new Editor({ editor.value = new Editor({
@@ -90,11 +91,9 @@ onMounted(async () => {
} }
}, },
}), }),
Markdown.configure({}),
Image, Image,
], ],
content: note.content, content: note.content,
contentType: 'markdown',
onUpdate: updateNote, onUpdate: updateNote,
}) })
}) })