| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |