[Pkg-mozext-commits] [automatic-save-folder] 114/133: Fix: Fixed other installed add-ons detection
David Prévot
taffit at moszumanska.debian.org
Mon Apr 27 20:33:57 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch wip
in repository automatic-save-folder.
commit 3e23be93484c35e705d4c52f096e865893ee1484
Author: Cyan <Cyan at d0063192-6b2e-11de-89a9-0b20f3e2dceb>
Date: Sun Dec 16 13:50:44 2012 +0000
Fix: Fixed other installed add-ons detection
git-svn-id: http://automatic-save-folder.googlecode.com/svn/trunk@123 d0063192-6b2e-11de-89a9-0b20f3e2dceb
---
content/asf.js | 8 ++++----
content/asf_download.js | 2 +-
content/asf_right_click.js | 2 +-
content/common.dtd | 2 +-
defaults/preferences/asf.js | 2 +-
locale/cs/about.dtd | 4 +++-
locale/en-US/about.dtd | 4 +++-
locale/fr/about.dtd | 4 +++-
locale/it/about.dtd | 4 +++-
locale/ru/about.dtd | 4 +++-
locale/sv-SE/about.dtd | 4 +++-
11 files changed, 26 insertions(+), 14 deletions(-)
diff --git a/content/asf.js b/content/asf.js
index 1b95e9e..8ca3733 100644
--- a/content/asf.js
+++ b/content/asf.js
@@ -1717,7 +1717,7 @@ var automatic_save_folder = {
var enabledItems = this.prefManager.getCharPref("extensions.enabledItems");
}
- var addon_GUUID = "{D9808C4D-1CF5-4f67-8DB2-12CF78BBA23F}";
+ var addon_GUUID = "D9808C4D-1CF5-4f67-8DB2-12CF78BBA23F";
var DownloadSort = enabledItems.indexOf(addon_GUUID,0);
if (DownloadSort >= 0) return true;
@@ -1738,13 +1738,13 @@ var automatic_save_folder = {
var enabledItems = this.prefManager.getCharPref("extensions.enabledItems");
}
- var addon_GUUID = "{DDC359D1-844A-42a7-9AA1-88A850A938A8}";
+ var addon_GUUID = "DDC359D1-844A-42a7-9AA1-88A850A938A8";
var DTA = enabledItems.indexOf(addon_GUUID,0);
if (DTA >= 0) return true;
//Same but for beta, nighly release of dTa
- var addon_GUUID = "dta at downthemall.net";
- var DTA = enabledItems.indexOf(addon_GUUID,0);
+ addon_GUUID = "dta at downthemall.net";
+ DTA = enabledItems.indexOf(addon_GUUID,0);
if (DTA >= 0) return true;
return false;
diff --git a/content/asf_download.js b/content/asf_download.js
index f707006..891805a 100644
--- a/content/asf_download.js
+++ b/content/asf_download.js
@@ -1295,7 +1295,7 @@ Copyright (C) 2007-2012 Éric Cassar (Cyan).
var enabledItems = this.prefManager.getCharPref("extensions.enabledItems");
}
- var addon_GUUID = "{DDC359D1-844A-42a7-9AA1-88A850A938A8}";
+ var addon_GUUID = "DDC359D1-844A-42a7-9AA1-88A850A938A8";
var DTA = enabledItems.indexOf(addon_GUUID,0);
if (DTA >= 0) return true;
diff --git a/content/asf_right_click.js b/content/asf_right_click.js
index 0c6eab3..4ee2674 100644
--- a/content/asf_right_click.js
+++ b/content/asf_right_click.js
@@ -895,7 +895,7 @@ var automatic_save_folder = {
var enabledItems = this.prefManager.getCharPref("extensions.enabledItems");
}
- var addon_GUUID = "{D9808C4D-1CF5-4f67-8DB2-12CF78BBA23F}";
+ var addon_GUUID = "D9808C4D-1CF5-4f67-8DB2-12CF78BBA23F";
var DownloadSort = enabledItems.indexOf(addon_GUUID,0);
if (DownloadSort >= 0) return true;
diff --git a/content/common.dtd b/content/common.dtd
index 3f72f0f..f4d2351 100644
--- a/content/common.dtd
+++ b/content/common.dtd
@@ -1,7 +1,7 @@
<!-- Strings which don't need a translation -->
<!-- Current version -->
-<!ENTITY asf.version "1.0.5bRev122">
+<!ENTITY asf.version "1.0.5bRev123">
<!ENTITY about.translators "
- cs : Stanislav Horáček<br />
diff --git a/defaults/preferences/asf.js b/defaults/preferences/asf.js
index 7ab5949..c3de710 100644
--- a/defaults/preferences/asf.js
+++ b/defaults/preferences/asf.js
@@ -1,4 +1,4 @@
- pref("extensions.asf.currentVersion", "1.0.5bRev122");
+ pref("extensions.asf.currentVersion", "1.0.5bRev123");
pref("extensions.asf.lastdir", true);
pref("extensions.asf.keeptemp", true);
pref("extensions.asf.viewdloption", false);
diff --git a/locale/cs/about.dtd b/locale/cs/about.dtd
index 00ff771..87a1fa1 100644
--- a/locale/cs/about.dtd
+++ b/locale/cs/about.dtd
@@ -36,7 +36,9 @@
! Fixed the suggested folder's display if the saved folder is forced to Desktop or Download.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.
! Fixed memorized state of "Force the radio choice to..." option.
-! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+">
+! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+
+! Fixed Automatic Save Folder's version detection on Firefox 19+
+! Fixed other installed add-ons detection.">
<!ENTITY about.version.104 "* Prevent duplicated suggested folders on the save window.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.">
diff --git a/locale/en-US/about.dtd b/locale/en-US/about.dtd
index fe422e8..3234232 100644
--- a/locale/en-US/about.dtd
+++ b/locale/en-US/about.dtd
@@ -36,7 +36,9 @@
! Fixed the suggested folder's display if the saved folder is forced to Desktop or Download.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.
! Fixed memorized state of "Force the radio choice to..." option.
-! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+">
+! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+
+! Fixed Automatic Save Folder's version detection on Firefox 19+
+! Fixed other installed add-ons detection.">
<!ENTITY about.version.104 "* Prevent duplicated suggested folders on the save window.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.">
diff --git a/locale/fr/about.dtd b/locale/fr/about.dtd
index 0fcc224..3ac7846 100644
--- a/locale/fr/about.dtd
+++ b/locale/fr/about.dtd
@@ -36,7 +36,9 @@
! Correction de l'affichage des propositions de dossiers lorsque le dossier de sauvegarde est forcé sur l'option Bureau ou Téléchargement.
! Correction de l'enregistrement d'un fichier avec simple-clic pour Firefox 7.0.1+ si l'URI du site n'est pas présent dans la base de donnée.
! Correction de la mémorisation de l'option "Forcer le choix sur..."
-! Correction de la suggestion du dossier d'enregistrement lors d'un téléchargement utilisant clic-droit avec Firefox 7.0.1+".>
+! Correction de la suggestion du dossier d'enregistrement lors d'un téléchargement utilisant clic-droit avec Firefox 7.0.1+
+! Correction de la détection de la version d'Automatic Save Folder avec Firefox 19+
+! Correction de la détection des extensions installées.">
<!ENTITY about.version.104 "* Vérification des dossiers proposés sur la fenêtre d'enregistrement afin d'éviter les doublons.
! Correction de l'enregistrement d'un fichier avec simple-clic pour Firefox 7.0.1+ si l'URI du site n'est pas présent dans la base de donnée.">
diff --git a/locale/it/about.dtd b/locale/it/about.dtd
index 4e0541a..a6ceca0 100644
--- a/locale/it/about.dtd
+++ b/locale/it/about.dtd
@@ -36,7 +36,9 @@
! Fixed the suggested folder's display if the saved folder is forced to Desktop or Download.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.
! Fixed memorized state of "Force the radio choice to..." option.
-! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+">
+! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+
+! Fixed Automatic Save Folder's version detection on Firefox 19+
+! Fixed other installed add-ons detection.">
<!ENTITY about.version.104 "* Prevent duplicated suggested folders on the save window.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.">
diff --git a/locale/ru/about.dtd b/locale/ru/about.dtd
index 118fd0c..df3d605 100644
--- a/locale/ru/about.dtd
+++ b/locale/ru/about.dtd
@@ -36,7 +36,9 @@
! Fixed the suggested folder's display if the saved folder is forced to Desktop or Download.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.
! Fixed memorized state of "Force the radio choice to..." option.
-! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+">
+! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+
+! Fixed Automatic Save Folder's version detection on Firefox 19+
+! Fixed other installed add-ons detection.">
<!ENTITY about.version.104 "* Prevent duplicated suggested folders on the save window.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.">
diff --git a/locale/sv-SE/about.dtd b/locale/sv-SE/about.dtd
index e6b40fb..a9100ef 100644
--- a/locale/sv-SE/about.dtd
+++ b/locale/sv-SE/about.dtd
@@ -36,7 +36,9 @@
! Fixed the suggested folder's display if the saved folder is forced to Desktop or Download.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.
! Fixed memorized state of "Force the radio choice to..." option.
-! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+">
+! Fixed suggested save path when using right-click downloads with Firefox 7.0.1+
+! Fixed Automatic Save Folder's version detection on Firefox 19+
+! Fixed other installed add-ons detection.">
<!ENTITY about.version.104 "* Prevent duplicated suggested folders on the save window.
! Fixed single-click saving on Firefox 7.0.1+ if the current website URI is not in the database.">
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/automatic-save-folder.git
More information about the Pkg-mozext-commits
mailing list