diff --git a/ChangeLog b/ChangeLog index cd02993..cf081e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ # ChangeLog for bookmarkdupes +*bookmarkdupes-6.3: + Martin Väth : + - Fix strip bookmarks and moving to "Dupes" folder: Regresion from 6.1 + https://github.com/vaeth/bookmarkdupes/issues/93 + *bookmarkdupes-6.2: Martin Väth : - Slight clarification in English/German formulation for count messages diff --git a/background.js b/background.js index a74bf6c..74a2bab 100644 --- a/background.js +++ b/background.js @@ -1,4 +1,4 @@ -/* Copyright (C) 2017-2020 Martin Väth , +/* Copyright (C) 2017-2020 Martin Väth * This project is under the GNU public license 2.0 */ diff --git a/data/options/options.js b/data/options/options.js index 8a34c7d..75ecac1 100644 --- a/data/options/options.js +++ b/data/options/options.js @@ -1,4 +1,4 @@ -/* Copyright (C) 2017-2020 Martin Väth , +/* Copyright (C) 2017-2020 Martin Väth * This project is under the GNU public license 2.0 */ diff --git a/data/tab/dupes.js b/data/tab/dupes.js index ebe9ccd..0783833 100644 --- a/data/tab/dupes.js +++ b/data/tab/dupes.js @@ -1,4 +1,4 @@ -/* Copyright (C) 2017-2020 Martin Väth , +/* Copyright (C) 2017-2020 Martin Väth * This project is under the GNU public license 2.0 */ @@ -25,7 +25,7 @@ const compatible = (typeof(browser) != "undefined" bookmarksMove: function(id, destination, callback, errorCallback) { browser.bookmarks.move(id, destination).then(callback, errorCallback); }, - bookmarksCreate: function(callback, errorCallback) { + bookmarksCreate: function(bookmarkData, callback, errorCallback) { browser.bookmarks.create(bookmarkData).then(callback, errorCallback); } } : { @@ -56,7 +56,7 @@ const compatible = (typeof(browser) != "undefined" chrome.bookmarks.move(id, destination, compatible.callbackOrError(callback, errorCallback)); }, - bookmarksCreate: function(callback, errorCallback) { + bookmarksCreate: function(bookmarkData, callback, errorCallback) { chrome.bookmarks.create(bookmarkData, compatible.callbackOrError(callback, errorCallback)); } diff --git a/manifest.json b/manifest.json index c9596cb..b12b377 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "short_name": "bookmarkdupes", "description": "__MSG_extensionDescription__", "author": "Martin Väth", - "version": "6.2", + "version": "6.3", "manifest_version": 2, "homepage_url": "https://addons.mozilla.org/en-US/firefox/addon/bookmark-dupes/", "default_locale": "en",