Skip to content

DataDeck 1.6.1

Choose a tag to compare

@SVM0N SVM0N released this 17 Jul 08:32

Compliance/bugfix release ahead of the community-plugin submission — no user-facing feature changes.

Fixed

  • Travel map now works on Community Plugins installs. The world map was previously read from a separate world-map.svg file placed in the plugin's vault folder — but Obsidian's installer only ever downloads main.js, styles.css, and manifest.json from a release, so the map silently failed to load for anyone who didn't manually copy the extra file. It's now bundled directly into main.js. Manual/BRAT installs only need the three standard files — world-map.svg is no longer required.
  • Delete confirmation in the note expander no longer uses a native confirm() dialog (unreliable on mobile); it's the same two-click "Confirm?" pattern used elsewhere in the plugin.
  • A handful of internal fixes flagged by Obsidian's plugin review: inline style mutations moved to CSS classes, unsafe innerHTML writes replaced with safe DOM APIs, and a few async callbacks that could silently swallow errors are now handled properly.

Internal

  • Added eslint-plugin-obsidianmd as a dev dependency (npm run lint) so these checks run locally before every release.