Post extensions that work with Deer Park/Firefox 1.5 HERE

Discussion about official Mozilla Firefox builds
Locked
cheesypeanut
Posts: 42
Joined: November 28th, 2004, 1:25 pm
Location: 127.0.0.1

Post by cheesypeanut »

Just hacked up Fusion to work; added a GUID.

http://cheesypeanut.frogspawn.org/fusio ... ficial.xpi
Greg K Nicholson
Posts: 1328
Joined: September 28th, 2003, 8:58 am
Contact:

Post by Greg K Nicholson »

This thread's title should probably be "...Deer Park Alpha 1 (Firefox 1.1a1)" - Deer Park is Firefox 1.1's codename.
chob
Posts: 4283
Joined: May 17th, 2003, 12:05 pm
Location: London, UK

Post by chob »

Is there a reason why at http://www.projects1.com/firefox/exthacks/ the following extensions have 0 byte size:
- compact-trunk.xpi
- Favicon_Picker_0.2.5.xpi
- FlashGot_0.5.9.4.xpi
- miniT.xpi
- mozgest_1_0-fixed.xpi
- sage.xpi
- tab_mix_0.2.1_fx_TRUNK_20050506.xpi
ckjnigel
Posts: 285
Joined: November 5th, 2002, 12:37 am

Post by ckjnigel »

dgrimm1 wrote:"maxversion" set at 1.0 ... wouldn't work after a checkin late last week.
At this point, I do not intend to try to host on the list every extension that ... contains something like an invalid GUI or version number. I am much more interested in hosting extensions that need some code changes or tweaks to work.


Okay, the first part explains why my 5/26 build works so nicely with lots of extensions displaying green puzzle piece listings in the Extensions Manager.
But, I'm embarrassed to confess that, though I know how to use a text editor to go into the install.rdf to bump up the Maxversion, I don't know how to mess with the GUI ID. That was the error message I got when I tried to mod the Zoomy extension...
Anyway, can someone send me to a URL where there are instructions for the additional modding?
User avatar
Ria
Posts: 3550
Joined: March 21st, 2004, 3:25 am
Location: Netherlands

Post by Ria »

ckjnigel
Posts: 285
Joined: November 5th, 2002, 12:37 am

Post by ckjnigel »

Ria wrote:http://forums.mozillazine.org/viewtopic.php?p=1453230#1453230

Gee whiz, that worked great -- thanks a lot, Ria!
SnowSurfer
Posts: 55
Joined: August 7th, 2003, 5:09 pm

Post by SnowSurfer »

anyone have a version of greasemonkey that works...i misss it :(
~SnowSurfer~
User avatar
Rishi M.
Folder@Home
Posts: 1294
Joined: April 29th, 2005, 7:36 pm
Location: Toronto, Canada
Contact:

Post by Rishi M. »

SnowSurfer wrote:anyone have a version of greasemonkey that works...i misss it :(

Go <a href="http://ftp.iasi.roedu.net/mirrors/mozdev.org/greasemonkey">here</a> and install 0.3.4.
Quidquid latine dictum sit, altum sonatur.
Folding for Team MozillaZine (No. 39340) with 32.4GHz of power. Your machine can make a difference! Join now.
dgrimm1
Posts: 632
Joined: December 7th, 2004, 3:55 pm
Location: Kansas USA
Contact:

Post by dgrimm1 »

chob wrote:Is there a reason why at http://www.projects1.com/firefox/exthacks/ the following extensions have 0 byte size:
- compact-trunk.xpi
- Favicon_Picker_0.2.5.xpi
- FlashGot_0.5.9.4.xpi
- miniT.xpi
- mozgest_1_0-fixed.xpi
- sage.xpi
- tab_mix_0.2.1_fx_TRUNK_20050506.xpi


Whoops, my bad :( That is the list of extensions that I added "maxversion=1.1" so that they would work with Deer Park Alpha -- and then when I uploaded didn't get it done right. Thanks for catching that chob, and the files should be correct now for anyone that tried to download previously.
SnowSurfer
Posts: 55
Joined: August 7th, 2003, 5:09 pm

Post by SnowSurfer »

Rishi M wrote:
SnowSurfer wrote:anyone have a version of greasemonkey that works...i misss it :(

Go <a href="http://ftp.iasi.roedu.net/mirrors/mozdev.org/greasemonkey">here</a> and install 0.3.4.


i did that and it said that greasemonkey is only compatible with deer park .9-1.0 not 1.0+...
~SnowSurfer~
Unarmed
Posts: 4941
Joined: July 31st, 2003, 1:26 pm

Post by Unarmed »

For Firefox 1.0, I wrote a small PHP script that would automatically bump the maxVersion of extensions; all you had to do was feed it the URL of the extension. I have since updated it to bump the version number to 1.0+. If anyone would like to use it, it's still being hosted here:

http://s93731204.onlinehome.us/reversion/

If you are paranoid, you can see the source of the script here:

http://s93731204.onlinehome.us/reversion/index.phps
swiney
Posts: 22
Joined: April 30th, 2005, 11:09 pm

Post by swiney »

I'm not sure if this is a DeerPark bug, or a change in how it works with XUL. I wrote an extension that works fine with Firefox 1.04, but chokes in deer park. It breaks on the XUL "treeitem" line below. The interesting thing is that this part of the code is almost identical to code inside Firefox itself in chrome/browser.jar ... and that code hasn't changed between Firefox 1.0 and DeerPark. Any suggestions?


Code: Select all

    <window id="main-window">
    <!-- Hack copied from Firefox code. Used by the Go submenus -->
    <tree id="go0Tree" hidden="true" collapsed="true" datasources="rdf:null"
          flags="dont-build-content"
          hidecolumnpicker="true">
      <template>
        <rule>
          <treechildren>
            <treeitem uri="rdf:*" rdf:type="rdf:http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
              <treerow>
                <treecell label="rdf:http://home.netscape.com/NC-rdf#Name"/>
                <treecell label="rdf:http://home.netscape.com/NC-rdf#Date" hidden="true"/>
              </treerow>
            </treeitem>
          </treechildren>
        </rule>
      </template>
      <treecols>
        <treecol flex="1" id="Name"
                 hideheader="true" primary="true"/>
        <treecol id="Date" hidden="true" hideheader="true"                     
                 sort="rdf:http://home.netscape.com/NC-rdf#Date" sortActive="true" sortDirection="descending"/>
      </treecols>
    </tree>                                                                     
  </window>
pdz
Posts: 4
Joined: December 14th, 2003, 1:42 pm
Location: UK

flashblock wfm

Post by pdz »

flashblock works on my june 2 trunk build
http://flashblock.mozdev.org/
tblu
Posts: 5
Joined: May 10th, 2005, 1:18 am

rip compatible version

Post by tblu »

Does anyone knows a rip (remove it permanently) version which works for deer park?
thanks :)
User avatar
Ria
Posts: 3550
Joined: March 21st, 2004, 3:25 am
Location: Netherlands

Re: rip compatible version

Post by Ria »

tblu wrote:Does anyone knows a rip (remove it permanently) version which works for deer park?
thanks :)

It seems to work here, when I bump the maxVersion to 1.1.
Locked