Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
5.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam A. Horvath-Hunt committed Jun 15, 2019
1 parent dcdba6d commit 2577c8c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log
This project is versioned according to its compatibility with the [host](https://github.com/SamHH/bukubrow-host) from v4 onwards.

## [4.0.0.1] - 2015-05-04
## [5.0.0.1] - 2019-06-15
### Added
- Support for very large Buku databases that serialise to over 1MB in size.
- Settings option to configure the WebExtension's badge.

### Changed
- Bookmarks will now attempt to open in your active tab if it's a new tab page.

## [4.0.0.1] - 2019-05-04
### Changed
- Versioning has been changed to move in tandem with the [host](https://github.com/SamHH/bukubrow-host).

Expand All @@ -10,7 +18,6 @@ This project is versioned according to its compatibility with the [host](https:/
- Send browser tabs to a "staging area" via context menu, wherein they can be easily edited and added to Buku(brow).

### Changed
- Improved error handling.
- Removed fetch bookmarks button. They are now implictly fetched from the binary frequently - on load and upon any change.
- Improved keyboard navigation in bookmark form.
- Improved overflow behaviour of text in listed bookmarks.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bukubrow",
"version": "4.0.0.1",
"version": "5.0.0.1",
"description": "WebExtension for Buku",
"main": "webextension/backend.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Bukubrow",
"version": "4.0.0.1",
"version": "5.0.0.1",
"manifest_version": 2,
"description": "Synchronise your browser bookmarks with Buku",
"icons": {
Expand Down
3 changes: 2 additions & 1 deletion src/modules/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export const APP_NAME = 'com.samhh.bukubrow';
export const MINIMUM_BINARY_VERSION = '4.0.0';
export const MINIMUM_BINARY_VERSION = '5.0.0';
export const BOOKMARKS_SCHEMA_VERSION = 3;
export const MAX_BOOKMARKS_TO_RENDER = 10;

0 comments on commit 2577c8c

Please sign in to comment.