diff --git a/package.json b/package.json index d73fca9..76b87f4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "notion-enhancer", "version": "0.11.1", "author": "dragonwocky (https://dragonwocky.me/)", - "description": "an enhancer/customiser for the all-in-one productivity workspace notion.so", + "description": "An enhancer/customiser for the all-in-one productivity workspace Notion", "homepage": "https://notion-enhancer.github.io", "repository": "github:notion-enhancer/desktop", "bugs": "https://github.com/notion-enhancer/desktop/issues", diff --git a/src/core/menu/menu.mjs b/src/core/menu/menu.mjs index 4775339..d17d384 100644 --- a/src/core/menu/menu.mjs +++ b/src/core/menu/menu.mjs @@ -14,6 +14,7 @@ import { List } from "./islands/List.mjs"; import { Mod } from "./islands/Mod.mjs"; import { Options } from "./islands/Options.mjs"; import { Profiles } from "./islands/Profiles.mjs"; +import { Description } from "./islands/Description.mjs"; let _apiImport, // _renderStarted, @@ -136,19 +137,86 @@ const renderMenu = async () => { isDevelopmentBuild=${await isDevelopmentBuild()} /> <${Onboarding} /> +
+ Hi there! Before you go any further, please note that this update is + not feature complete. As part of an internal overhaul and the Chrome + extension's upgrade to manifest v3, all themes and extensions must be + ported manually across to the new version. +
+
+ The following extensions have not been updated yet but will be + soon: + +
+ The theming system is incomplete and only mostly recolours the + app's interface. The following themes have not been updated + yet but will be soon: + +
+ In the meantime, the styling for these themes can be + found here and + copy/pasted into your custom styles alongside the old theming system, if you wish. +
+
+ The following extensions have been deprecated as their feature + offerings are now available within Notion by default. Some + features that belonged to these extensions have been merged + into the notion-enhancer's core or into the tweaks extension: + +
+ A full changelog and updated documentation will be made + available on the website as soon as possible. This release is + being made available early in order to comply with Chrome's + deprecation of manifest v2. +
<${View} id="core"> <${Options} mod=${mods.find(({ _src }) => _src === "core")} /> <${Profiles} /> - - ${[...categories, ...mods] + + ${[...categories, ...mods] .filter(({ view }) => view) .map(({ view }) => view)} <${Footer} categories=${categories} /> - `; + `; useState(["footerOpen"], ([footerOpen]) => { $main.style.height = footerOpen ? "100%" : "calc(100% + 65px)"; }); diff --git a/src/manifest.json b/src/manifest.json index 1c79e37..f8600ce 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -3,7 +3,7 @@ "name": "notion-enhancer", "version": "0.11.1", "author": "dragonwocky (https://dragonwocky.me/)", - "description": "an enhancer/customiser for the all-in-one productivity workspace notion.so", + "description": "An enhancer/customiser for the all-in-one productivity workspace Notion", "homepage_url": "https://notion-enhancer.github.io", "content_scripts": [{ "matches": ["*://*.notion.so/*"], "js": ["/init.js"] }], "background": { "service_worker": "/worker.js" },