Skip to content

Releases: zolrath/obsidian-auto-link-title

1.2.7

15 Jan 07:27
Compare
Choose a tag to compare

What's Changed

  • Allow new lines for Blacklist entries, in addition to commas for separation. (also fixes an issue with empty blacklists 😅)

Full Changelog: 1.2.6...1.2.7

1.2.6

15 Jan 07:08
Compare
Choose a tag to compare

Thanks again to community contributors for making this release happen!

What's Changed

  • Canvas Support 🎉This version adds Canvas support! (Thanks to @Krakor92 in #61)
  • Mute browser as it retrieves tab name to prevent video audio from leaking (Thanks @XRain777 in #43)
  • Destroy browser window when the tabs name fails to parse, speculative fix for #44 and #37 (let me know if you still see these problems!)
  • Add ability to blacklist specific websites/terms. Closes #51

New Contributors

Full Changelog: 1.2.5...1.2.6

1.2.5

20 Jan 01:01
Compare
Choose a tag to compare

This release moves the required version of Obsidian to 12.17 to allow access to the "editor-paste" event, this lets us only intercept paste events when it takes place in the editor, stopping us from intercepting pastes into Find dialogues.

Fixes #13

1.2.4

20 Jan 00:07
Compare
Choose a tag to compare

Huge thank you to a number of community contributors adding features and fixing issues for this release!

What's Changed

New Contributors

Full Changelog: 1.2.3...1.2.4

1.2.3

27 Apr 17:26
Compare
Choose a tag to compare
  • Correct issue with electron import breaking mobile.

1.2.2

24 Apr 18:21
Compare
Choose a tag to compare
  • Use window.webContent.getTitle() instead of executing javascript to extract the title - Fixes issue on baidu as reported by user wongFanx.

1.2.1

23 Apr 17:55
Compare
Choose a tag to compare
  • Remove new lines and spaces from the start/end of page titles.

1.2.0

23 Apr 17:48
Compare
Choose a tag to compare
  • Use electron.remote.BrowserWindow on desktop to allow user to grab title without external CORS proxy.
    • This corrects the issue #2 and #3 as the CORS proxy does not support these charsets.
    • It also allows javascript execution like a normal browser so more titles should be retrievable.
    • Continue to use CORS proxy on mobile as it is not built on electron

Note: As it allows execution of javascript the local fetch will take slightly longer to show the title result, waiting to see if the title gets modified by javascript execution.

1.1.1

22 Apr 20:31
Compare
Choose a tag to compare
  • Remove nanoid as it has a process.node.env check which causes the plugin to fail on Mobile.

1.1.0

22 Apr 19:54
Compare
Choose a tag to compare
  • Swapped entirely off CodeMirror 5 dependencies, only using the Obsidian.Editor interface.
    • Use nanoid and find/replace instead of Markers
    • Use regex instead of Tokens
  • This means we can enable Mobile support!