diff --git a/repo/always-on-top/always-on-top.jpg b/repo/always-on-top/always-on-top.jpg
new file mode 100644
index 0000000..a525d26
Binary files /dev/null and b/repo/always-on-top/always-on-top.jpg differ
diff --git a/repo/always-on-top/mod.json b/repo/always-on-top/mod.json
index 9f07bc2..efaee88 100644
--- a/repo/always-on-top/mod.json
+++ b/repo/always-on-top/mod.json
@@ -4,6 +4,7 @@
"environments": ["linux", "win32", "darwin"],
"version": "0.2.0",
"description": "adds a button that can be used to pin the notion window on top of all other windows at all times.",
+ "preview": "always-on-top.jpg",
"tags": ["extension", "app"],
"authors": [
{
diff --git a/repo/icon-sets/mod.json b/repo/icon-sets/mod.json
index ff163cc..048d2c3 100644
--- a/repo/icon-sets/mod.json
+++ b/repo/icon-sets/mod.json
@@ -30,7 +30,7 @@
"type": "toggle",
"key": "prevent_quality_reduction",
"label": "prevent icon quality reduction",
- "tooltip": "**this may break icons in widgets** - encodes and submits images as data urls to prevent notion from optimising them (reduces image quality by ~20%)",
+ "tooltip": "**this may break icons in widgets or be rejected by notion if images are too high quality** - encodes and submits images as data urls to prevent notion from optimising them (reduces image quality by ~20%)",
"value": true
},
{
diff --git a/repo/integrated-titlebar/client.mjs b/repo/integrated-titlebar/client.mjs
index 8a8924e..f217e60 100644
--- a/repo/integrated-titlebar/client.mjs
+++ b/repo/integrated-titlebar/client.mjs
@@ -23,7 +23,8 @@ export default async function (api, db) {
panelWidth = '0px';
const updateDragareaOffsets = () => {
const $sidebar = document.querySelector(sidebarSelector),
- newSidebarWidth = $sidebar.style.height === 'auto' ? '0px' : $sidebar.style.width,
+ newSidebarWidth =
+ !$sidebar || $sidebar.style.height === 'auto' ? '0px' : $sidebar.style.width,
$panel = document.querySelector(panelSelector),
newPanelWidth =
$panel && $panel.dataset.enhancerPanelPinned === 'true'
diff --git a/repo/integrated-titlebar/integrated-titlebar.jpg b/repo/integrated-titlebar/integrated-titlebar.jpg
new file mode 100644
index 0000000..d48528b
Binary files /dev/null and b/repo/integrated-titlebar/integrated-titlebar.jpg differ
diff --git a/repo/integrated-titlebar/mod.json b/repo/integrated-titlebar/mod.json
index 01a970b..c84d400 100644
--- a/repo/integrated-titlebar/mod.json
+++ b/repo/integrated-titlebar/mod.json
@@ -4,6 +4,7 @@
"environments": ["linux", "win32"],
"version": "0.11.0",
"description": "replaces the native window titlebar with buttons inset into the app.",
+ "preview": "integrated-titlebar.jpg",
"tags": ["extension", "layout"],
"authors": [
{
diff --git a/repo/tabs/client.mjs b/repo/tabs/client.mjs
index 9d9285b..4e1537b 100644
--- a/repo/tabs/client.mjs
+++ b/repo/tabs/client.mjs
@@ -28,7 +28,8 @@ export default async function ({ web, electron }, db) {
const breadcrumbSelector =
'.notion-topbar > div > :nth-child(2) > .notion-focusable:last-child',
- imgIconSelector = `${breadcrumbSelector} .notion-record-icon img`,
+ imgIconSelector = `${breadcrumbSelector} .notion-record-icon img:not(.notion-emoji)`,
+ emojiIconSelector = `${breadcrumbSelector} .notion-record-icon img.notion-emoji`,
nativeIconSelector = `${breadcrumbSelector} .notion-record-icon [role="image"]`,
titleSelector = `${breadcrumbSelector} > :not(.notion-record-icon)`,
viewSelector = '.notion-collection-view-select';
@@ -38,9 +39,13 @@ export default async function ({ web, electron }, db) {
const notionSetWindowTitle = __electronApi.setWindowTitle,
getIcon = () => {
const $imgIcon = document.querySelector(imgIconSelector),
+ $emojiIcon = document.querySelector(emojiIconSelector),
$nativeIcon = document.querySelector(nativeIconSelector);
if ($imgIcon) {
- return $imgIcon.style.background.replace(
+ return `url("${$imgIcon.src}") 0 / 100%`;
+ }
+ if ($emojiIcon) {
+ return $emojiIcon.style.background.replace(
/url\("\/images/,
'url("notion://www.notion.so/images'
);
diff --git a/repo/tabs/mod.json b/repo/tabs/mod.json
index 1adc7eb..29dc614 100644
--- a/repo/tabs/mod.json
+++ b/repo/tabs/mod.json
@@ -4,6 +4,7 @@
"environments": ["linux", "win32", "darwin"],
"version": "0.3.0",
"description": "open multiple notion pages in a single window.",
+ "preview": "tabs.jpg",
"tags": ["extension", "app"],
"authors": [
{
diff --git a/repo/tabs/tabs.jpg b/repo/tabs/tabs.jpg
new file mode 100644
index 0000000..42d6f4a
Binary files /dev/null and b/repo/tabs/tabs.jpg differ
diff --git a/repo/tray/mod.json b/repo/tray/mod.json
index df5aad4..7e3cc02 100644
--- a/repo/tray/mod.json
+++ b/repo/tray/mod.json
@@ -4,6 +4,7 @@
"environments": ["linux", "win32", "darwin"],
"version": "0.11.0",
"description": "adds an icon to the system tray/menubar for extra app/window management features (e.g. open on startup, a global hotkey).",
+ "preview": "tray.jpg",
"tags": ["extension", "app"],
"authors": [
{
diff --git a/repo/tray/tray.jpg b/repo/tray/tray.jpg
new file mode 100644
index 0000000..f3ccdca
Binary files /dev/null and b/repo/tray/tray.jpg differ
diff --git a/repo/truncated-titles/client.mjs b/repo/truncated-titles/client.mjs
index d79c827..b0fe2d6 100644
--- a/repo/truncated-titles/client.mjs
+++ b/repo/truncated-titles/client.mjs
@@ -21,7 +21,7 @@ export default async function ({ web, components }, db) {
if ($tableTitle.scrollWidth > $tableTitle.clientWidth) {
components.addTooltip(
$tableTitle.parentElement.parentElement.parentElement,
- web.html`${web.escape($tableTitle.innerText)}`,
+ web.html`${web.escape($tableTitle.innerText)}`,
750
);
$elements.push($tableTitle);
diff --git a/repo/truncated-titles/truncated-titles.jpg b/repo/truncated-titles/truncated-titles.jpg
index 57419f1..2c116d6 100644
Binary files a/repo/truncated-titles/truncated-titles.jpg and b/repo/truncated-titles/truncated-titles.jpg differ
diff --git a/repo/view-scale/mod.json b/repo/view-scale/mod.json
index 0a23141..0a9059c 100644
--- a/repo/view-scale/mod.json
+++ b/repo/view-scale/mod.json
@@ -4,6 +4,7 @@
"environments": ["linux", "win32", "darwin"],
"version": "0.1.0",
"description": "zoom in/out of the notion window with the mousewheel or a visual slider (`ctrl/cmd +/-` are available in-app by default).",
+ "preview": "view-scale.jpg",
"tags": ["extension", "app"],
"authors": [
{
diff --git a/repo/view-scale/view-scale.jpg b/repo/view-scale/view-scale.jpg
new file mode 100644
index 0000000..4e0a222
Binary files /dev/null and b/repo/view-scale/view-scale.jpg differ