-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.rdf.rb
36 lines (32 loc) · 1.16 KB
/
install.rdf.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env ruby
puts %Q{
<?xml version="1.0" encoding="utf-8"?>
<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:version>0.0.0.#{Time.now.utc.strftime '%Y%m%d'}.#{Time.now.utc.to_i}</em:version>
<em:type>2</em:type>
<!-- <em:bootstrap>true</em:bootstrap> -->
<em:unpack>false</em:unpack>
<em:targetApplication>
<Description>
<!-- Thunderbird -->
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
<em:minVersion>36.0</em:minVersion>
<em:maxVersion>37.0</em:maxVersion>
</Description>
</em:targetApplication>
<em:targetApplication>
<Description>
<!-- Instantbird -->
<em:id>{33cb9019-c295-46dd-be21-8c4936574bee}</em:id>
<em:minVersion>1.5</em:minVersion>
<em:maxVersion>1.*</em:maxVersion>
</Description>
</em:targetApplication>
<em:name>moslack</em:name>
<em:description>Slack for Thunderbird/Instantbird</em:description>
<em:creator>Mook</em:creator>
</Description>
</RDF>
}.strip