| OLD | NEW | 
|---|
| 1 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
    PropertyList-1.0.dtd"> | 1 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
    PropertyList-1.0.dtd"> | 
| 2 <plist version="1.0"> | 2 <plist version="1.0"> | 
| 3 <dict> | 3 <dict> | 
| 4    <key>Extension Updates</key> | 4    <key>Extension Updates</key> | 
| 5    <array> | 5    <array> | 
| 6      {%- for extension in extensions %} | 6      {%- for extension in extensions %} | 
| 7      <dict> | 7      <dict> | 
| 8        <key>CFBundleIdentifier</key> | 8        <key>CFBundleIdentifier</key> | 
| 9        <string>org.adblockplus.{{ extension.basename }}</string> | 9        <string>org.adblockplus.{{ extension.basename }}</string> | 
| 10        <key>Developer Identifier</key> | 10        <key>Developer Identifier</key> | 
| 11        <string>{{ extension.certificateID }}</string> | 11        <string>{{ extension.certificateID }}</string> | 
| 12        <key>CFBundleVersion</key> | 12        <key>CFBundleVersion</key> | 
| 13        <string>{{ extension.version }}</string> | 13        <string>{{ extension.version }}</string> | 
| 14        <key>CFBundleShortVersionString</key> | 14        <key>CFBundleShortVersionString</key> | 
| 15        <string>{{ extension.shortVersion }}</string> | 15        <string>{{ extension.shortVersion }}</string> | 
| 16        <key>URL</key> | 16        <key>URL</key> | 
| 17        <string>{{ extension.updateURL }}</string> | 17        <string>{{ extension.updateURL }}</string> | 
|  | 18        {%- if extension.updatedFromGallery %} | 
|  | 19        <key>Update From Gallery</key> | 
|  | 20        <true/> | 
|  | 21        {%- endif %} | 
| 18      </dict> | 22      </dict> | 
| 19      {%- endfor %} | 23      {%- endfor %} | 
| 20    </array> | 24    </array> | 
| 21 </dict> | 25 </dict> | 
| 22 </plist> | 26 </plist> | 
| OLD | NEW | 
|---|