Skip to content

Commit

Permalink
Fix strip and move to Dupes. #93
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeth committed Mar 5, 2020
1 parent 9fbc19c commit b1c5211
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog for bookmarkdupes

*bookmarkdupes-6.3:
Martin Väth <mvath at mvath.de>:
- 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 <mvath at mvath.de>:
- Slight clarification in English/German formulation for count messages
Expand Down
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>, <mvath@google.com>
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>
* This project is under the GNU public license 2.0
*/

Expand Down
2 changes: 1 addition & 1 deletion data/options/options.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>, <mvath@google.com>
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>
* This project is under the GNU public license 2.0
*/

Expand Down
6 changes: 3 additions & 3 deletions data/tab/dupes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>, <mvath@google.com>
/* Copyright (C) 2017-2020 Martin Väth <martin@mvath.de>
* This project is under the GNU public license 2.0
*/

Expand All @@ -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);
}
} : {
Expand Down Expand Up @@ -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));
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b1c5211

Please sign in to comment.