Skip to content

Commit

Permalink
Merge pull request #39 from echofox-team/renaming-addon
Browse files Browse the repository at this point in the history
Update install.rdf for publishing
  • Loading branch information
ath0mas committed Jan 27, 2016
2 parents fb178cd + 2b30c93 commit 53017bd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
22 changes: 10 additions & 12 deletions install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>[email protected]</em:id>
<em:name>Echofon</em:name>
<em:version>2.5.4</em:version>
<em:id>echofon-unofficial@echofox-team</em:id>
<em:name>Echofon Unofficial</em:name>
<em:version>2.6</em:version>
<em:type>2</em:type>
<em:unpack>true</em:unpack>
<em:creator>naan studio, Inc.</em:creator>
<em:creator>Echofox Team</em:creator>
<em:contributor>naan studio, Inc.</em:contributor>
<em:developer>Kazuho Okui</em:developer>
<em:translator>Fingli(bg)</em:translator>
<em:translator>animarval(ca)</em:translator>
Expand All @@ -27,20 +28,17 @@
<em:translator>guzelmu(tr)</em:translator>
<em:translator>yfdyh000(zh-CN)</em:translator>
<em:translator>velociraptor(zh-TW)</em:translator>
<em:description>Full featured, super clean Twitter app for Firefox.</em:description>
<em:homepageURL>http://www.echofon.com/</em:homepageURL>
<em:description>Maintained version of Echofon: full featured, super clean Twitter app for Firefox.</em:description>
<em:homepageURL>https://github.com/echofox-team/echofon-firefox-unofficial</em:homepageURL>
<em:iconURL>chrome://echofon/content/images/icon.png</em:iconURL>

<em:optionsURL>chrome://echofon/content/preferences/preferences.xul</em:optionsURL>

kPlAyq0+OyuuYCL0SRGv7/oJAMUkkEc+AI0BA/timyAutwMixSQtK7Q7OAIJ4
Fqw1z42l04wihoiddUqaxvkzRBefrMeQRohOIw6IIAJG9zfjp+WHcxtsXFiUf

<!-- Firefox -->
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!-- firefox -->
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>3.6.4</em:minVersion>
<em:maxVersion>30.0a1</em:maxVersion>
<em:maxVersion>47.0</em:maxVersion>
</Description>
</em:targetApplication>
</Description>
Expand Down
2 changes: 1 addition & 1 deletion modules/EchofonDatabase.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const {classes:Cc, interfaces:Ci} = Components;

const SQLITE_DB_FILENAME = "echofon_2.0.sqlite";
const SQLITE_IMAGE_CACHE = "echofon_image_cache.sqlite";
const ECHOFON_UUID = "[email protected]";
const ECHOFON_UUID = "echofon-unofficial@echofox-team";

function EchofonDatabase()
{
Expand Down
1 change: 0 additions & 1 deletion modules/EchofonSign.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
var EXPORTED_SYMBOLS = ["EchofonSign"];

const {classes:Cc, interfaces:Ci, utils:Cu} = Components;
const ECHOFON_UUID = "[email protected]";

Cu.import("resource://echofon/Models.jsm")

Expand Down
4 changes: 2 additions & 2 deletions modules/EchofonUtils.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const EchofonUtils = {
var appInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
return appInfo.version;
}
var guid = '[email protected]';
var guid = 'echofon-unofficial@echofox-team';
try {
var addon = Cc["@mozilla.org/extensions/manager;1"];
ADDON_VERSION = addon.getService(Ci.nsIExtensionManager).getItemForID(guid).version;
Expand Down Expand Up @@ -200,7 +200,7 @@ const EchofonUtils = {
},

readFile: function(path, filename) {
const TWITTERFOX_UUID = "[email protected]";
const TWITTERFOX_UUID = "echofon-unofficial@echofox-team";

var manager = Cc["@mozilla.org/extensions/manager;1"].getService(Ci.nsIExtensionManager);
var file = manager.getInstallLocation(TWITTERFOX_UUID).getItemLocation(TWITTERFOX_UUID);
Expand Down
2 changes: 1 addition & 1 deletion modules/Models.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ EchofonModel.init = function() {
var appInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
if (appInfo.name != "Echofon") {
Components.utils.import("resource://gre/modules/AddonManager.jsm");
AddonManager.getAddonByID("[email protected]", didGetAddon);
AddonManager.getAddonByID("echofon-unofficial@echofox-team", didGetAddon);
}
else {
if (login) {
Expand Down

0 comments on commit 53017bd

Please sign in to comment.