diff --git a/chrome/content/duplicateContactsManager.js b/chrome/content/duplicateContactsManager.js
new file mode 100644
index 0000000..f680f20
--- /dev/null
+++ b/chrome/content/duplicateContactsManager.js
@@ -0,0 +1,11 @@
+var DuplicateContactsManager = {
+ manageDuplicatesIsRunning: false,
+ menuButtonAction: function() {
+ this.manageDuplicates();
+ },
+ manageDuplicates: function() {
+ this.manageDuplicatesIsRunning = true;
+ var dupwindow = window.open('chrome://duplicatecontactsmanager/content/duplicateEntriesWindow.xul', "Duplicate Contacts Manager", "chrome,centerscreen");
+ dupwindow.focus();
+ }
+}
diff --git a/chrome/content/duplicateContactsManager.xul b/chrome/content/duplicateContactsManager.xul
new file mode 100644
index 0000000..4a60b90
--- /dev/null
+++ b/chrome/content/duplicateContactsManager.xul
@@ -0,0 +1,28 @@
+
+
+
+
+
diff --git a/chrome/content/duplicateEntriesWindow.js b/chrome/content/duplicateEntriesWindow.js
index a5c68e6..0341fc5 100644
--- a/chrome/content/duplicateEntriesWindow.js
+++ b/chrome/content/duplicateEntriesWindow.js
@@ -4,12 +4,14 @@
// This file includes UTF-8 encoding. Please make sure your text editor can deal with this prior to saving any changes!
/* Change history:
+ * Version 1.0.5:
+ * - correction of mistake in packaging version 1.0.4 that prevented it from running
* Version 1.0.4:
* - various small UI improvments: indication for card matching, layout, language, doc
* Version 1.0.3:
* - fixed syntax error in de-DE locale that lead to obscure initialization error
* - minor improvements of localization in the extension and of the entry in the TB add-ons list
- * Version 1.0.2 and 1.0.2:
+ * Version 1.0.1 and 1.0.2:
* - improved label of DCM menu entry for address book window
* Version 1.0:
* - major speedup in particular when searching for duplicates in large address books
diff --git a/chrome/content/duplicateEntriesWindow.xul b/chrome/content/duplicateEntriesWindow.xul
index ddfdc3d..bcab8ee 100644
--- a/chrome/content/duplicateEntriesWindow.xul
+++ b/chrome/content/duplicateEntriesWindow.xul
@@ -2,6 +2,7 @@
+
+ oncommand="DuplicateEntriesWindow.keepAndSearchNextDuplicate()" />
+ oncommand="DuplicateEntriesWindow.applyAndSearchNextDuplicate()" />
+ oncommand="DuplicateEntriesWindow.endSearch()" />
+ oncommand="window.close()" />
diff --git a/install.rdf b/install.rdf
index 95eb348..e169191 100644
--- a/install.rdf
+++ b/install.rdf
@@ -6,7 +6,7 @@
Duplicate Contacts Manager
duplicateContactsManager@ddvo.net
- 1.0.4
+ 1.0.5
Facilitates handling of redundant entries in address books.
Marian Steinbach and David von Oheimb
François Godin (Copelnug)
@@ -22,7 +22,7 @@
{3550f703-e582-4d05-9a08-453d09bdfdc6}
3.0
- 61.*
+ 60.*
diff --git a/zip.sh b/zip.sh
index 9ba1e44..fbf633e 100755
--- a/zip.sh
+++ b/zip.sh
@@ -1,2 +1,3 @@
#cd duplicateContactsManager@ddvo.net
-zip -r ../duplicatecontactsmanager-1.0.xpi . -x \*~ .git/\* .git README.md zip.sh .gitignore doc/\* chrome/content/duplicateContactsManager\* @
+zip -r ../duplicatecontactsmanager-1.0.xpi . -x \*~ .git/\* .git README.md zip.sh .gitignore doc/\*
+#chrome/content/duplicateContactsManager\* @