Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: Info.plist.tmpl

Issue 5457592327340032: Use full version number for the displayed version on Safari (Closed)
Patch Set: Created Jan. 16, 2014, 3:09 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | packagerSafari.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {%- macro str_or_real(value) -%} 1 {%- macro str_or_real(value) -%}
2 {%- if value is number -%} 2 {%- if value is number -%}
3 <real>{{ value }}</real> 3 <real>{{ value }}</real>
4 {%- else -%} 4 {%- else -%}
5 <string>{{ value }}</string> 5 <string>{{ value }}</string>
6 {%- endif -%} 6 {%- endif -%}
7 {%- endmacro -%} 7 {%- endmacro -%}
8 8
9 <?xml version="1.0" encoding="UTF-8"?> 9 <?xml version="1.0" encoding="UTF-8"?>
10 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd"> 10 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd">
11 <plist version="1.0"> 11 <plist version="1.0">
12 <dict> 12 <dict>
13 <key>CFBundleDisplayName</key> 13 <key>CFBundleDisplayName</key>
14 <string>{{ name }}</string> 14 <string>{{ name }}</string>
15 <key>CFBundleIdentifier</key> 15 <key>CFBundleIdentifier</key>
16 <string>org.adblockplus.{{ basename }}</string> 16 <string>org.adblockplus.{{ basename }}</string>
17 <key>CFBundleInfoDictionaryVersion</key> 17 <key>CFBundleInfoDictionaryVersion</key>
18 <string>6.0</string> 18 <string>6.0</string>
19 <key>CFBundleShortVersionString</key> 19 <key>CFBundleShortVersionString</key>
20 <string>{{ shortVersion }}</string> 20 <string>{{ version }}</string>
21 <key>CFBundleVersion</key> 21 <key>CFBundleVersion</key>
22 <string>{{ version }}</string> 22 <string>{{ version }}</string>
23 <key>Chrome</key> 23 <key>Chrome</key>
24 <dict> 24 <dict>
25 <key>Database Quota</key> 25 <key>Database Quota</key>
26 <real>104857600</real> 26 <real>104857600</real>
27 <key>Global Page</key> 27 <key>Global Page</key>
28 <string>background.html</string> 28 <string>background.html</string>
29 {%- if menus %} 29 {%- if menus %}
30 <key>Menus</key> 30 <key>Menus</key>
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 <string> 152 <string>
153 {%- if not releaseBuild -%} 153 {%- if not releaseBuild -%}
154 https://adblockplus.org/devbuilds/{{ basename }}/updates.plist 154 https://adblockplus.org/devbuilds/{{ basename }}/updates.plist
155 {%- else -%} 155 {%- else -%}
156 {{ updateURL }} 156 {{ updateURL }}
157 {%- endif -%} 157 {%- endif -%}
158 </string> 158 </string>
159 {%- endif %} 159 {%- endif %}
160 </dict> 160 </dict>
161 </plist> 161 </plist>
OLDNEW
« no previous file with comments | « no previous file | packagerSafari.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld