Telescope Bookmarks.nvim Versions Save

A Neovim plugin to open your browser bookmarks right from the editor!

v1.0.0

1 year ago

This marks the first stable release of the project.

Changelog

There are other minor bug fixes in the release as well. The README was updated to recommend using tags instead of the latest master and added detail usage.

New Contributors

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.5.2...v1.0.0

v0.5.2

1 year ago

Changelog:

  • Debugging messages using the debug config option. If the value is true, the plugin will print debug messages to the message area. Currently, only basic information is printed like the config, state and Telescope options.
require('telescope').setup {
  extensions = {
    bookmarks = {
      -- ... other config options
      debug = true,
    },
  }
}
  • For chrome based browsers, the extension will return if the bookmarks file is empty with a warning message. Previously, it would continue and when trying to decode the JSON data inside the file, it would error out.
  • For Firefox browser, if the bookmarks database file is not present, it will return with a warning message. Previously, it would continue and when opening the database file, it would error out with not so friendly message. (https://github.com/dhruvmanila/telescope-bookmarks.nvim/issues/20)

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.5.1...v0.5.2

v0.5.1

1 year ago

Changelog:

Fixes:

  • (#5) Use the immutable flag when opening the database to extract bookmarks for Firefox. This is required as when the browser is opened, the database is locked. This signals sqlite that the database is read-only and no writes will be made. (3cb5b6a027d95fb16178d95bce80968a65ddf4b5).

    This fix requires this commit from sqlite.lua extension: https://github.com/kkharji/sqlite.lua/commit/56c5aacd5e31496d9b3cd3d1b0e570bb9a65d35b

For more info: https://sqlite.org/c3ref/open.html#urifilenamesinsqlite3open

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.5.0...v0.5.1

v0.5.0

2 years ago

v0.4.0

2 years ago

Changelog:

  • Add coverage config, report generation and uploading to https://codecov.io
  • Add test cases for custom actions in 1dde7b40bdcd1bc2328bf14d2cd1d049359de1c6

Breaking Changes:

  • Remove deprecation warning for Google Chrome browser rename in b81e3b24f3b0a224b8aa6a1c1bf87c9887bd06ef. selected_browser value for Google Chrome was changed from google_chrome to chrome

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.3.2...v0.4.0

v0.3.2

2 years ago

Summary: A few bug fixes found while writing tests and completing every major scenario for testing.

What's changed:

Test cases:

  • Plist parser (2023c4614f02f8d2eda267944b7f689df47d45d7)
  • Chrome based browser bookmarks (439cd087f6a967e7ccd99eef4f11d7f7c9ce6fcf)
  • Safari browser bookmarks (5940d89586ca90afc6176137d420fada81361db2)
  • Firefox browser bookmarks (d534dd321cc14f3627fc12038a5833f8bcf378f8)
  • buku bookmark manager (2c2595830eab288b449745332060a05ec53c3fa8)

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.3.1...v0.3.2

v0.3.0

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.2.1...v0.3.0

v0.2.1

2 years ago

Fixes

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.2.0...v0.2.1

v0.2.0

2 years ago

Features

New Contributors

Full Changelog: https://github.com/dhruvmanila/telescope-bookmarks.nvim/compare/v0.1.0...v0.2.0