diff --git a/repo/icon-sets/mod.json b/repo/icon-sets/mod.json index 048d2c3..72c616b 100644 --- a/repo/icon-sets/mod.json +++ b/repo/icon-sets/mod.json @@ -2,7 +2,7 @@ "name": "icon sets", "id": "2d1f4809-9581-40dd-9bf3-4239db406483", "version": "0.4.0", - "description": "upload, save and reuse custom icons directly from the icon picker. check out the [icons page](https://notion-enhancer.github.io/mods/icon-sets) for instructions on loading entire sets.", + "description": "upload, save and reuse custom icons directly from the icon picker. check out the [icons page](https://notion-enhancer.github.io/advanced/icons) for instructions on loading entire sets.", "preview": "icon-sets.jpg", "tags": ["integration", "customisation"], "authors": [ @@ -37,7 +37,7 @@ "type": "file", "key": "json", "label": "custom icon sets (.json)", - "extensions": ["json"] + "extensions": [".json"] } ] } diff --git a/repo/integrated-titlebar/createWindow.cjs b/repo/integrated-titlebar/createWindow.cjs index 3b52680..39e42e6 100644 --- a/repo/integrated-titlebar/createWindow.cjs +++ b/repo/integrated-titlebar/createWindow.cjs @@ -6,7 +6,7 @@ 'use strict'; -module.exports = async function (api, db, __exports, __eval) { +module.exports = function (api, db, __exports, __eval) { __eval(` const notionRectFromFocusedWindow = getRectFromFocusedWindow; getRectFromFocusedWindow = (windowState) => { diff --git a/repo/menu/components.mjs b/repo/menu/components.mjs index 20d1b23..0e9d876 100644 --- a/repo/menu/components.mjs +++ b/repo/menu/components.mjs @@ -78,7 +78,7 @@ export const options = { maxLines: 3, }); } - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.checked); notifications.onChange(); }); @@ -109,7 +109,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $select.addEventListener('change', async (event) => { + $select.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $select.value); notifications.onChange(); }); @@ -131,7 +131,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.value); notifications.onChange(); }); @@ -153,7 +153,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.value); notifications.onChange(); }); @@ -172,7 +172,7 @@ export const options = { $icon = web.html`${await components.feather('droplet', { class: 'input-icon' })}`, paint = () => { $input.style.background = $picker.toBackground(); - const [r, g, b, a] = $picker + const [r, g, b] = $picker .toRGBAString() .slice(5, -1) .split(',') @@ -196,7 +196,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.value); notifications.onChange(); }); @@ -237,7 +237,7 @@ export const options = { }; reader.readAsText(file); }); - $latest.addEventListener('click', (event) => { + $latest.addEventListener('click', (_event) => { $filename.innerText = 'none'; profileDB.set([mod.id, opt.key], {}); }); diff --git a/repo/menu/menu.mjs b/repo/menu/menu.mjs index 4a27539..ab8105b 100644 --- a/repo/menu/menu.mjs +++ b/repo/menu/menu.mjs @@ -41,7 +41,7 @@ import './styles.mjs'; web.addHotkeyListener(await db.get(['hotkey']), env.focusNotion); - window.addEventListener('beforeunload', (event) => { + globalThis.addEventListener('beforeunload', (_event) => { // trigger input save document.activeElement.blur(); }); @@ -98,7 +98,7 @@ import './styles.mjs'; `, $error = web.html`

`; - $export.addEventListener('click', async (event) => { + $export.addEventListener('click', async (_event) => { const now = new Date(), $a = web.html`