Skip to content

Commit 98d0254

Browse files
committed
feat: add syncAt to settings so its easier to reset
1 parent 9eea6fb commit 98d0254

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/index.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -218,25 +218,27 @@ const main = async (baseInfo: LSPluginBaseInfo) => {
218218
{
219219
key: 'apiKey',
220220
type: 'string',
221-
title: 'Enter Omnivore Api Key',
222-
description: 'Enter Omnivore Api Key here',
221+
title: 'Enter your Omnivore Api Key',
222+
description:
223+
'You can create an API key at https://omnivore.app/settings/api',
223224
default: logseq.settings?.['api key'] as string,
224225
},
225226
{
226227
key: 'filter',
227228
type: 'enum',
228-
title: 'Select a filter for Omnivore articles',
229-
description: 'Select a filter for Omnivore articles',
229+
title: 'Select an Omnivore search filter type',
230+
description: 'Select an Omnivore search filter type',
230231
default: Filter.HIGHLIGHTS.toString(),
231232
enumPicker: 'select',
232233
enumChoices: Object.values(Filter),
233234
},
234235
{
235236
key: 'customQuery',
236237
type: 'string',
237-
title: 'Enter custom query if advanced filter is selected',
238+
title:
239+
'Enter an Omnivore custom search query if advanced filter is selected',
238240
description:
239-
'Enter a custom query for Omnivore articles here. e.g. "has:highlights"',
241+
'See https://omnivore.app/help/search for more info on search query syntax',
240242
default: '',
241243
},
242244
{

0 commit comments

Comments
 (0)