diff --git a/extension/CHANGELOG.md b/extension/CHANGELOG.md index 9cfcf15..0039b2f 100644 --- a/extension/CHANGELOG.md +++ b/extension/CHANGELOG.md @@ -15,6 +15,9 @@ a complete rework of the enhancer including a port to the browser as a chrome ex - improved: merged bracketed-links into tweaks. - improved: a redesigned menu with nicer ui, separate categories for mods and a sidebar for configuration. - improved: simplified and smoothened the side panel + moved it to the core so any mod can hook into it. +- improved: font chooser option for heading fonts. +- improved: renamed "property-layout" to "collapse properties", added per-page memory of collapse state. +- improved: chevron icon instead of arrow for scroll to top. - removed: integrated scrollbar tweak (notion now includes by default). - removed: js insert. css insert moved to tweaks mod. - removed: majority of layout and font size variables - better to leave former to notion and use `ctrl +` for latter. diff --git a/extension/env/env.mjs b/extension/env/env.mjs index af15ca2..98bc080 100644 --- a/extension/env/env.mjs +++ b/extension/env/env.mjs @@ -1,5 +1,5 @@ /* - * notion-enhancer: api + * notion-enhancer core: api * (c) 2021 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ diff --git a/extension/env/fs.mjs b/extension/env/fs.mjs index 8183ff3..376440f 100644 --- a/extension/env/fs.mjs +++ b/extension/env/fs.mjs @@ -1,5 +1,5 @@ /* - * notion-enhancer: api + * notion-enhancer core: api * (c) 2021 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ diff --git a/extension/env/storage.mjs b/extension/env/storage.mjs index 132f2f7..5204138 100644 --- a/extension/env/storage.mjs +++ b/extension/env/storage.mjs @@ -1,5 +1,5 @@ /* - * notion-enhancer: api + * notion-enhancer core: api * (c) 2021 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */