mirror of
https://github.com/logseq/logseq.git
synced 2026-04-24 22:25:01 +00:00
Added
1. All configurations of current graph.
App.getCurrentGraphConfigs: () => Promise<any>
2. All favorite pages list of current graph.
App.getCurrentGraphFavorites: () => Promise<Array<string> | null>
3. All recent pages list of current graph.
App.getCurrentGraphRecent: () => Promise<Array<string> | null>
4. Clear right sidebar blocks.
App.clearRightSidebarBlocks: (opts?: { close: boolean }) => void
5. Support register CodeMirror enhancer. #Experiment feature
Experiments.registerExtensionsEnhancer<T = any>(type: 'katex' | 'codemirror', enhancer: (v: T) => Promise<any>)
6. Support hooks for app search service. #Alpha stage
App.registerSearchService<T extends IPluginSearchServiceHooks>(s: T): void
7. Support focus option for App.insertBlock. Credit to [[tennox]] #PR
Fixed
1. Adjust build script to be compatible for shadow-cljs bundler.
How to set up a clojurescript project with shadow-cljs?
https://github.com/rlhk/logseq-url-plus/blob/main/doc/dev-notes.md
1.2 KiB
1.2 KiB
Changelog
All notable changes to this project will be documented in this file.
[Unreleased]
[0.0.11]
Added
- All configurations of current graph.
App.getCurrentGraphConfigs: () => Promise<any> - All favorite pages list of current graph.
App.getCurrentGraphFavorites: () => Promise<Array<string> | null> - All recent pages list of current graph.
App.getCurrentGraphRecent: () => Promise<Array<string> | null> - Clear right sidebar blocks.
App.clearRightSidebarBlocks: (opts?: { close: boolean }) => void - Support register
CodeMirrorenhancer. #Experiment featureExperiments.registerExtensionsEnhancer<T = any>(type: 'katex' | 'codemirror', enhancer: (v: T) => Promise<any>) - Support hooks for app search service. #Alpha stage
App.registerSearchService<T extends IPluginSearchServiceHooks>(s: T): void - Support
focusoption forApp.insertBlock. Credit to [[tennox]] #PR
Fixed
- Adjust build script to be compatible for
shadow-cljsbundler.How to set up a clojurescript project with shadow-cljs? https://github.com/rlhk/logseq-url-plus/blob/main/doc/dev-notes.md