<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=windows-1252">
  </head>
  <body smarttemplateinserted="true" text="#000000" bgcolor="#FFFFFF">
    <div id="smartTemplate4-template">
      <p>Dear Geoff,</p>
      <p>please don't confuse ESR60 with Thunderbird beta. (tb63) - the
        ESR (thunderbird 60.*) supports using install.rdf - so you can
        keep using that unless you want to support beta versions. <br>
      </p>
      <p>For testing beta versions I would suggest creating a separate
        batch script for buildng. I haven't managed to get mine fully
        compatible yet but it should be definitely possible to start
        from the same sources without being forced to "fork" code at
        this stage - let the batch script do the rest. You will need to
        build 2 different versions but you can use minver & maxver
        to control the behavior on ATN. Nothing stops you from releasing
        both versions alternately - they should be picked up by the
        update mechanism based on minver / maxver.</p>
      <p>As regards having a separate beta trail, I think this would be
        the best option (we had this on AMO but I think it was removed
        again). Is this something that ATN could reintroduce?<br>
      </p>
      <p>Axel<br>
      </p>
      <style type="text/css">
.myName {
  text-shadow: 1px 1px 2px #DDD; 
  transition:font-size 0.5s;
}
.myName:hover, .myName a:hover 
{ font-size:13pt; text-shadow: 3px 3px 4px rgba(200,250,200,0.7);}
.moz-signature {opacity: 1.0 !important;}
.myName a { cursor: pointer !important; transition:font-size 0.5s;}
.myLogo {
  transition: all .4s ease-out;
}

.myLogo:hover {
  transform: scale(3) translate(-30px,-5px);
}
#mySignature, :not(blockquote) #mySignature {
  background: rgb(230,240,163); 
  background-image: linear-gradient(to bottom, rgba(230,240,163,1) 0%,rgba(210,230,56,1) 50%,rgba(195,216,37,1) 51%,rgba(219,240,67,1) 100%);
  color: #444; 
  box-shadow: 4px 4px 9px -2px rgba(0,0,0,0.65); 
  border-radius: 0.7em; padding: 0.8em 1.2em; 
  border: 1px dashed #8080A0; 
  font-size: 11pt !important;
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif; 
  width: 65%; 
}
.AddonList a {
  color: #666666; 
  font-size: 10pt !important;
}
</style>
      <div id="mySignature"> <b class="myName"><a
            href="mailto:axel.grude@gmail.com">Axel Grude</a></b> <br>
        Music Production and Composition <br>
        Thunderbird Add-ons Developer <span class="AddonList">(<a
href="https://addons.mozilla.org/thunderbird/addon/quickfolders-tabbed-folders/">QuickFolders</a>,
          <a
            href="https://addons.mozilla.org/thunderbird/addon/quickfilters/">quickFilters</a>,
          <a
            href="https://addons.mozilla.org/firefox/addon/quickpasswords/">QuickPasswords</a>,
          <a
            href="https://addons.mozilla.org/thunderbird/addon/zombie-keys/">Zombie
            Keys</a>, <a
            href="https://addons.mozilla.org/thunderbird/addon/smarttemplate4/">SmartTemplate4</a>)</span>
        <br>
        Visit my <a href="https://www.youtube.com/c/thunderbirddaily">YouTube
          Channel</a> for email productivity tips <img
          style="margin-top: 1em; float: right; box-shadow: 1px 1px 2px
          rgba(20, 20, 20, 0.4);" moz-do-not-send="false" class="myLogo"
          src="cid:part8.D40EB326.9475EFF9@gmail.com" alt="Get
          Thunderbird!" width="94" height="15">
      </div>
    </div>
    <div id="smartTemplate4-quoteHeader">
      <style type="text/css" scoped="">
#newHeaderAG1 b { font-weight:bold; color: #990033; min-width: 4.5em; max-width:none; display:inline-block;}
</style>
      <blockquote type="cite" style="margin-bottom: -20px !important;
        padding-bottom:20px !important;">
        <div id="newHeaderAG1" style="font-size: x-small; padding:1em;
          background-color:rgba(220,220,240,0.4); border-radius:3px;"> <b>Subject:</b>Extension
          development for beta<br>
          <b>From:</b>Geoff Lankow <a class="moz-txt-link-abbreviated" href="mailto:geoff@thunderbird.net">geoff@thunderbird.net</a><br>
          <b>To:</b><a class="moz-txt-link-rfc2396E" href="mailto:tb-planning@mozilla.org"><tb-planning@mozilla.org></a> <br>
          <b>Sent: </b>Monday, 10/29/2018 08:37 GMT ST +0000 [Week 44]<br>
        </div>
      </blockquote>
    </div>
    <blockquote type="cite"
      cite="mid:76a9de72-c407-8f8a-efd4-f961659a8f52@thunderbird.net"
      id="mid_76a9de72_c407_8f8a_efd4_f961659a8f52_thunderbird_net"
      class=" cite">
      <meta http-equiv="content-type" content="text/html;
        charset=windows-1252">
      <p>We have a problem. Actually, a series of problems.</p>
      <p>Firstly. For an extension to run on ESR60, it must be:</p>
      <ol type="A">
        <li>an overlay extension with an install.rdf manifest, or</li>
        <li>a bootstrapped extension with an install.rdf manifest, or<br>
        </li>
        <li>a WebExtension with a manifest.json</li>
      </ol>
      <p>C is very rare, because ESR60 supports so few of the
        WebExtension APIs. B isn't an issue yet but will become one
        soon, so I'm ignoring it for this conversation.</p>
      <p>For A to run on beta, it must have a manifest.json and <i>NOT</i>
        have an install.rdf manifest. (At this point it's technically a
        WebExtension and we're just lying to the extensions back-end
        about what it's actually doing.)</p>
      <p>This leads to the second problem: it's impossible to have an
        extension that both has an install.rdf and doesn't have an
        install.rdf. Therefore an extension developer cannot make an
        extension that can run on both ESR60 and beta.</p>
      <p>(Side note: I've been trying to make a backport for ESR that
        can run an updated legacy extension, but I'm uncomfortable with
        the size of the changes.)</p>
      <p>The extension developer <i>could</i> make a separate version
        of their extension which is only for beta. Given the other big
        changes in the platform, that's probably the best option anyway,
        but that takes us to problem three: they can't host the beta
        version of their extension on ATN, because ATN no longer has
        support for development channel extensions. I <i>think</i>
        there's an ugly workaround involving uploading versions
        out-of-order such that the ESR version is the one displayed, but
        I really don't think developers should have to deal with that,
        or would bother. They could also self-host the extension but I
        think most wouldn't want to do that.</p>
      <p>We're left with a bunch of not-very-nice options, as well as
        all the other issues facing extension developers, which I think
        is just going to put a lot of developers off altogether, and
        we'll lose a large fraction of our extensions.</p>
      <p>GL<br>
      </p>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <pre class="moz-quote-pre" wrap="">_______________________________________________
tb-planning mailing list
<a class="moz-txt-link-abbreviated" href="mailto:tb-planning@mozilla.org">tb-planning@mozilla.org</a>
<a class="moz-txt-link-freetext" href="https://mail.mozilla.org/listinfo/tb-planning">https://mail.mozilla.org/listinfo/tb-planning</a>
</pre>
    </blockquote>
  </body>
</html>