Skip to content

Commit b1c5211

Browse files
committed
Fix strip and move to Dupes. #93
1 parent 9fbc19c commit b1c5211

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ChangeLog for bookmarkdupes
22

3+
*bookmarkdupes-6.3:
4+
Martin Väth <mvath at mvath.de>:
5+
- Fix strip bookmarks and moving to "Dupes" folder: Regresion from 6.1
6+
https://github.com/vaeth/bookmarkdupes/issues/93
7+
38
*bookmarkdupes-6.2:
49
Martin Väth <mvath at mvath.de>:
510
- Slight clarification in English/German formulation for count messages

background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>, <mvath@google.com>
1+
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>
22
* This project is under the GNU public license 2.0
33
*/
44

data/options/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>, <mvath@google.com>
1+
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>
22
* This project is under the GNU public license 2.0
33
*/
44

data/tab/dupes.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>, <mvath@google.com>
1+
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>
22
* This project is under the GNU public license 2.0
33
*/
44

@@ -25,7 +25,7 @@ const compatible = (typeof(browser) != "undefined"
2525
bookmarksMove: function(id, destination, callback, errorCallback) {
2626
browser.bookmarks.move(id, destination).then(callback, errorCallback);
2727
},
28-
bookmarksCreate: function(callback, errorCallback) {
28+
bookmarksCreate: function(bookmarkData, callback, errorCallback) {
2929
browser.bookmarks.create(bookmarkData).then(callback, errorCallback);
3030
}
3131
} : {
@@ -56,7 +56,7 @@ const compatible = (typeof(browser) != "undefined"
5656
chrome.bookmarks.move(id, destination,
5757
compatible.callbackOrError(callback, errorCallback));
5858
},
59-
bookmarksCreate: function(callback, errorCallback) {
59+
bookmarksCreate: function(bookmarkData, callback, errorCallback) {
6060
chrome.bookmarks.create(bookmarkData,
6161
compatible.callbackOrError(callback, errorCallback));
6262
}

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"short_name": "bookmarkdupes",
44
"description": "__MSG_extensionDescription__",
55
"author": "Martin Väth",
6-
"version": "6.2",
6+
"version": "6.3",
77
"manifest_version": 2,
88
"homepage_url": "https://addons.mozilla.org/en-US/firefox/addon/bookmark-dupes/",
99
"default_locale": "en",

0 commit comments

Comments
 (0)