-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 1.0.5 (correction of mistake in packaging version 1.0.4 that …
…prevented it from running)
- Loading branch information
Showing
6 changed files
with
51 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE overlay SYSTEM "chrome://duplicatecontactsmanager/locale/duplicateContactsManager.dtd"> | ||
<?xml-stylesheet type="text/css" href="chrome://duplicatecontactsmanager/skin/duplicateContactsManager.css"?> | ||
|
||
<overlay id="duplicateContactsManager.overlay.menuitem" | ||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="init();"> | ||
|
||
<!--<script type="application/x-javascript" src="chrome://duplicatecontactsmanager/content/windowsregistry.js"/>--> | ||
<script type="application/x-javascript" src="chrome://duplicatecontactsmanager/content/duplicateContactsManager.js"/> | ||
<script type="application/x-javascript" src="chrome://duplicatecontactsmanager/content/duplicateEntriesWindow.js"/> | ||
<command id="cmd_handle_duplicates" disabled="false"/> | ||
<menu id="tasksMenu"> | ||
<menupopup id="taskPopup"> | ||
<menuitem id="duplicateContactsManagerMenu_manageDuplicates" | ||
label="&abookmenu.items.handleduplicates.label;" | ||
oncommand="DuplicateContactsManager.manageDuplicates();" | ||
accesskey="&abookmenu.items.handleduplicates.accesskey;" /> | ||
</menupopup> | ||
</menu> | ||
<!-- Thunderbird address book --> | ||
<toolbarpalette id="AddressBookToolbarPalette"> | ||
<toolbarbutton id="duplicatecontactsmanager-toolbarbutton-1" | ||
label="&abooktoolbar.label;" | ||
tooltiptext="&abooktoolbar.tooltip;" | ||
oncommand="DuplicateContactsManager.manageDuplicates();" | ||
class="toolbarbutton-1 chromeclass-toolbar-additional custombutton" /> | ||
</toolbarpalette> | ||
</overlay> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
<Description about="urn:mozilla:install-manifest"> | ||
<em:name>Duplicate Contacts Manager</em:name> | ||
<em:id>[email protected]</em:id> | ||
<em:version>1.0.4</em:version> | ||
<em:version>1.0.5</em:version> | ||
<em:description>Facilitates handling of redundant entries in address books.</em:description> | ||
<em:creator>Marian Steinbach and David von Oheimb</em:creator> | ||
<em:contributor>François Godin (Copelnug)</em:contributor> | ||
|
@@ -22,7 +22,7 @@ | |
<Description> | ||
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id> | ||
<em:minVersion>3.0</em:minVersion> | ||
<em:maxVersion>61.*</em:maxVersion> | ||
<em:maxVersion>60.*</em:maxVersion> | ||
</Description> | ||
</em:targetApplication> | ||
<em:localized> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#cd [email protected] | ||
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\* @ |