zoteroRoam
Report an issueRoadmap
v0.6
v0.6
  • Introduction
  • โ–ถ๏ธDemo by Cortex Futura
  • ๐Ÿ”„Updating from older versions
  • ๐Ÿš€Changelog
  • ๐Ÿ†˜Help/Getting Support
  • ๐Ÿ Getting Started
    • 1.1 Pre-requisites
    • 1.2 Installation in {{roam/js}}
    • 1.3 Basic Setup
  • ๐ŸงชUsing the extension
    • 2a. The search panel
    • 2b. In-text references
    • 2c. On-page menu
    • 2d. Contextual buttons
  • ๐Ÿ› ๏ธCustomizations
    • 3.1 What's Available
    • 3.2 Constructing data requests
    • 3.3 Creating your own formatting functions
      • Nesting metadata
      • Code snippets
    • 3.4 Creating custom shortcuts
    • 3.5 Customizing on-page displays
    • 3.6 Other Settings
      • autoload / autoupdate
      • autocomplete
      • funcmap
      • typemap
      • notes
      • Copying an item's reference
      • theme
    • Advanced : using event hooks
    • Extension defaults
  • About the Zotero API
    • Zotero API Docs (v3)
  • Support the project
    • How to support/contribute
    • Buy me a (virtual) coffee
    • GitHub Sponsorship
Powered by GitBook
On this page
  • autoload
  • autoupdate

Was this helpful?

  1. Customizations
  2. 3.6 Other Settings

autoload / autoupdate

autoload

Setting autoload: true will make the extension turn itself on whenever the Roam graph is loaded. Any other value won't do anything.

autoupdate

Setting autoupdate: true will make the extension check every 60s if there is new or modified data to be pulled from Zotero. If there is, the data will be updated accordingly.

The two types of changes that are not synced by updates are : - modifying an item's citekey : since the extension matches items' data based on their citekey, modifying it in Zotero will result in the creation of a duplicate item in the extension's dataset. - deleting an item : since the extension requests Zotero items with a more recent version than the last one that was retrieved, this excludes deleted items automatically.

zoteroRoam_settings = {
    // dataRequests: {...},
    autoload: true,
    autoupdate: true
}

Last updated 3 years ago

Was this helpful?

๐Ÿ› ๏ธ