balbusm/xul-ext-eds-calendar

Latest version works with TB 107 but need to manual edit .xpi

Closed this issue · 2 comments

cphyc commented

This is to let you know the latest version (1.0.1) works like a charm with TB 107 (beta channel). Unfortunately, there is a hard check in place in the xpi that prevents its installation.
I managed to install it after modifying manifest.json into

{
  "manifest_version": 2,
  "author": "Mateusz Balbus",
  "homepage_url": "https://github.com/balbusm/xul-ext-eds-calendar",
  "applications": {
    "gecko": {
      "id": "{e6696d02-466a-11e3-a162-04e36188709b}",
      "strict_min_version": "102.0",
      "strict_max_version": "107.*" // <- change here
    }
  },
  ...
}

Quick git blame points to 3edbff0, but is there any reason to not include versions up to 107?

I bumped up max version on Thunderbird store.
I think it's sufficient. Pls verify.

cphyc commented