Skip to content

Commit ec36915

Browse files
committed
add install.rdf manually and not auto-generate it by jpm
because jpm messes up indentation and doesn't comply to the manifest standard...
1 parent 40144f9 commit ec36915

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ XPI := old-search-fixed.xpi
55
JS := index.js prefs.js
66
ICO := data/icon-64.png data/icon-48.png data/icon-32.png
77
OPTIONS := options.xul locale/en-US/options.dtd locale/de-DE/options.dtd defaults/preferences/prefs.js
8-
PROJECT := package.json chrome.manifest .jpmignore $(JS) $(OPTIONS) README.md LICENSE.md
8+
PROJECT := package.json install.rdf chrome.manifest .jpmignore $(JS) $(OPTIONS) README.md LICENSE.md
99

1010
$(XPI): $(NPM) $(PROJECT)
1111
$(JPM) xpi

install.rdf

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#">
3+
<Description about="urn:mozilla:install-manifest">
4+
<!-- basic -->
5+
<em:id>[email protected]</em:id>
6+
<em:type>2</em:type>
7+
<em:version>3.0.3</em:version>
8+
9+
<!-- texts -->
10+
<em:name>Old Search Fixed 3</em:name>
11+
<em:creator>Robin Christopher Ladiges</em:creator>
12+
<em:translator>Robin Christopher Ladiges</em:translator>
13+
<em:description>Remembers the search engine selected by setting it as the default engine. Like before Firefox 43.</em:description>
14+
<em:homepageURL>https://github.com/istador/old-search-fixed/</em:homepageURL>
15+
<em:localized>
16+
<Description>
17+
<em:locale>de-DE</em:locale>
18+
<em:name>Old Search Fixed 3</em:name>
19+
<em:description>Merkt sich den ausgewählten Suchanbieter und setzt ihn als Standard. So wie vor Firefox 43.</em:description>
20+
</Description>
21+
</em:localized>
22+
23+
<!-- icon -->
24+
<em:iconURL>resource://old-search-fixed-at-blackpinguin-dot-de/data/icon-48.png</em:iconURL>
25+
<em:icon64URL>resource://old-search-fixed-at-blackpinguin-dot-de/data/icon-64.png</em:icon64URL>
26+
27+
<!-- technical -->
28+
<em:bootstrap>true</em:bootstrap>
29+
<em:hasEmbeddedWebExtension>false</em:hasEmbeddedWebExtension>
30+
<em:multiprocessCompatible>true</em:multiprocessCompatible>
31+
<em:optionsType>2</em:optionsType>
32+
<em:skinnable>false</em:skinnable>
33+
<em:strictCompatibility>false</em:strictCompatibility>
34+
<em:unpack>false</em:unpack>
35+
<em:updateURL>https://xpi.blackpinguin.de/old-search-fixed/updates.rdf</em:updateURL>
36+
37+
<!-- Firefox -->
38+
<em:targetApplication>
39+
<Description>
40+
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
41+
<em:minVersion>56.0</em:minVersion>
42+
<em:maxVersion>*</em:maxVersion>
43+
</Description>
44+
</em:targetApplication>
45+
</Description>
46+
</RDF>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "old-search-fixed",
33
4-
"version": "3.0.2",
4+
"version": "3.0.3",
55
"license": "MPL-2.0",
66
"keywords": [ "firefox", "extension", "add-on", "search", "waterfox" ],
77
"homepage": "https://github.com/istador/old-search-fixed/",

0 commit comments

Comments
 (0)