logseq/libs/CHANGELOG.md

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 CodeMirror enhancer. #Experiment feature Experiments.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 focus option for App.insertBlock. Credit to [[tennox]] #PR

Fixed