Timeline of Opera Releases
Thursday, August 16, 2007 2:07:43 AM
If you want to help me with it, it'll be on Wikipedia shortly. To add dates, I made a little javascript tool, so I didn't have to break my mouse using the Windows calculator. date2pixel.html and date2pixel.js

Note: 1.0-1.6 were made on a Merlin build. Because Kestrel's implementation is different (and better), 1.7 and onward were designed for Kestrel. Logically, 1.0-1.6 don't look very good in Kestrel, and 1.7 onward doesn't look very good in Merlin.















Ice ArdorIceArdor # Saturday, August 25, 2007 3:43:12 AM
mabdul # Monday, August 27, 2007 10:59:25 AM
in version 1.5 the versionnumbers are shown better, but it is still hard to watch them / to difference them. maybe the timeline should be longer (for the same time!)
how about to add the builds for linux/mac?
mfg
mabdul
Ice ArdorIceArdor # Wednesday, August 29, 2007 1:53:58 AM
Thanks for the feedback. I'm considering including this on Wikipedia so that other people can edit it. Feel free to look at the source code; it's pretty simple. If you know any SVG or JS, please give me some feedback on how to make it better.
Ice ArdorIceArdor # Wednesday, August 29, 2007 2:01:25 AM
I need to edit this: http://my.opera.com/desktopteam/blog/show.dml/759403 Peregrine and Kestrel both existed before Friday February 16 2007. Peregrine became the working Opera copy, and Kestrel branched off of that.
Kestrel's been in the working for a little over a year now.
Anonymous # Wednesday, August 29, 2007 5:12:55 PM
Ice ArdorIceArdor # Saturday, September 1, 2007 8:01:40 AM
Anonymous # Saturday, September 1, 2007 11:48:12 AM
Ice ArdorIceArdor # Saturday, September 1, 2007 7:07:47 PM
Another problem I had run into was that by starting the timeline at 2005, this timeline doesn't include any releases before that date, because they are negative values, which can't be displayed. I suppose I could do a horrible javascript hack to add 1000 to every x="" and cx="" value, but by implementing the dynamic system you wrote about, it'll be really easy to change the starting date.
I was thinking like making an xml file with all the data and doing xslt to write the svg page. But I guess I can do the same with JavaScript. So should I just put all of the data in attributes?
Thanks a ton! I'll start rewriting the image when I get back from vacation.
Anonymous # Saturday, September 1, 2007 10:17:18 PM
Ice ArdorIceArdor # Friday, September 7, 2007 6:27:06 AM
I've got a lot of reworking to do on the files anyways because Merlin has a minimum font size allowed, and Kestrel can make fonts infinitely small. SVG support is a lot faster on Kestrel too.
Note to self: Add build 9500 to 9.5 Alpha.
Add build 8762 to Kestrel Branch, which is experimental build from Hakon featuring the
Ice ArdorIceArdor # Saturday, September 8, 2007 5:15:35 AM
Will it be faster to render js or xml?
I wanted to see how the xml route would look, so here's a piece of the xml file.
<major id="9Kestrel">
<branch id="9.5x">
<release longname="9.5 Alpha 1" shortname="9.5a1" type="alpha" />
<date year="2007" month="9" day="4" dotw="tuesday" />
<build win="9500" mac="4404" unix="1567" />
</branch>
</major>
Basically, I'd be using XML as a database and XSLT to convert the XML into SVG. While this is more readable, your solution is more elegant. I've never worked with XSLT before, so I'd be better off with the JavaScript.
mabdul # Saturday, September 8, 2007 10:51:08 AM
mfg
mabdul
Ice ArdorIceArdor # Monday, September 10, 2007 1:20:52 AM
I'm worried that by computing all of the x="" values onLoad, that it'll slow down the rendering of the file severely.
Here's a working copy of what I have. The 9.5a1 has the build (9500) implemented in your javascript system. v1.8a. Best viewed on Kestrel (Merlin evaluated the dx before rotating the text sideways, turning the dx into a dy, essentially. Kestrel fixed this problem)
mabdul # Monday, September 10, 2007 11:28:10 AM
dahulevogyre # Monday, September 10, 2007 9:18:46 PM
I guess so. I'm not an ECMAScript expert, but -without getElementByClassName()-, I'd getElementsByTagName("*"), loop and compute. something like :
elems = getElementsByTagName("*"); for(int i=0; i<elems.length ;i++) { if(/* elems[i] is of class "date" */) { rePosition(elems[i], ratio); } }date2pixel is pretty straightforward. I guess it would not consume much.
About the new attributes, I see you're trying to do it right : extending the DTD.
You have to use a custom namespace also :
http://www.w3.org/TR/SVG11/extend.html#PrivateElementsAndAttribute
Mabdul, I always wondered : why do people disable javascript ?
David
Ice ArdorIceArdor # Monday, September 10, 2007 11:17:59 PM
The other thing I wanted to know is how I can use the current
year="" month="" day=""implementation without having an onLoad event on EVERY single tag. If I could call the onLoad event at the top, or even at the beginning of every<g>or<use>, it'd be a lot easier. What code would I need for that?Lastly, I need to figure out how to use
<symbol>s and<use>them later in the code. I'll work on learning that later. I might need help. I might not even need to use symbols if I use attributes to describewin="" mac="" unix=""and then use javascript to write that data. The problem then would be the positioning of the elements. I can't figure out how to use css to position elements. That'd make it a lot easier to saytext.build (y: 10;}, but that isn't supported in SVG.Mabdul, I wasn't sure where to put 8762. 8762 was the experimental build that Hakon Wium Lie gave to us on his blog (not posted on Desktop Team), giving us a technical preview of using the
element to embed ogg videos within a document instead of using proprietary codecs like flash or windows media player using the<embed>tag. I never downloaded it, but feature-wise it was probably very similar to Merlin. I would have been happy putting it in with the 9.2x branch, but the filename of the exe he released was http://people.opera.com/howcome/2007/video/op950_8762_video_repack_with_lgpl_signed.exe, making me assume that it was not from the 9.2x branch, but rather the 9.5x branch. However, Kestrel probably had active development at the time and was probably very buggy, and so I doubt that it would have come from the buggy Kestrel branch. In confusion, I put it in the only place where it doesn't satisfy logic. To be even further incorrect, the build really should be called a technical preview, as that's what it is. But it was never called that by Hakon.Ice ArdorIceArdor # Monday, September 10, 2007 11:52:58 PM
By adding in a year="" month="" day="", I can also alter the formula to horizontally stretch the page. How can I embed a slider on the page so the user can choose what factor to horizontally stretch everything by?
I might make a calculator to accomodate for some days having 30 days, others having 31, and February having 28/29. I could also feed the year, month, date values into a function which evaluates what day of the week each build was released on. That was one of my initial hopes, and I think that's finally a possibility. I'm so happy. Thanks.
v1.8a v1.8b v1.8c v1.8d
mabdul # Tuesday, September 11, 2007 12:09:18 PM
@IceArdor ah this build is that! then it is the right position (i think) you should mark it as tp with the note of the
dahulevogyre # Tuesday, September 11, 2007 8:20:39 PM
dahulevogyre # Wednesday, September 12, 2007 5:49:39 PM
Jeff does know a bit in SVG !
Ice ArdorIceArdor # Tuesday, September 18, 2007 6:25:33 AM
Would I want to use javascript (something like focus()?) or could I use an anchor name (index.html#top)
Update: v1.8 is posted, v1.9a is in progress. date2pixel tool updated as well.
mabdul # Tuesday, September 18, 2007 1:50:45 PM
Ice ArdorIceArdor # Tuesday, September 18, 2007 5:49:39 PM
circle:hover {content: attr(year)}onMouseOver="displayToolTip(evt)" onMouseOut="hideToolTip(evt)"Could I get some help, David?
I also want to incorporate a utility that can calculate the probability of a release occuring on each day of the week, among other stuff. (Open up the svg image (1.9a) in a text editor and look at the changelog).
Ice ArdorIceArdor # Tuesday, September 18, 2007 6:25:35 PM
dahulevogyre # Tuesday, September 18, 2007 9:58:59 PM
It's very modest of you to ask me for help. I think you have much to teach me when it comes to SVG. :-)
I've never used CSS in SVG. I really don't know. Maybe it's not implemented.
These tooltip scripts look like they work :
http://www.mecxpert.de/svg/tooltips.html and
http://svg-whiz.com/samples.html (very interesting Q&A)
Look at the question "How do I show a tooltip in SVG?". And if you want to avoid scripting, look at the last question : "Is it possible to display element metadata without using scripting?". Both solutions seem to work in Opera 9.21 for me.
A statistics utility ? wow. did you find a function to convert a date into a week day ?
Ice ArdorIceArdor # Thursday, September 20, 2007 12:34:41 AM
If anyone can find the build numbers for releases prior to 7.5tp1, it'd be greatly appreciated. I can do the formatting, I just have had limited luck on Google, though I have found some build numbers. If you can find windows, mac, and unix build numbers, that'd be even better. Thanks.
Edit: I'm having some troubles with the SVG DOM. I don't know enough. Help? Search through the javascript section to find showBuild(evt) and hideBuild(evt). I'm using the circle for 9.23 as my testcase, so hover over 9.23 to get it to work. 1.9b
Edit2: Build + Day of the Week demo script
I suppose I could just give every tag an id and then reference them by their tag id, but I should be able to access them through the DOM without having to assign individual id's to everyone.
Anonymous # Thursday, September 20, 2007 9:02:47 AM
Ice ArdorIceArdor # Monday, November 26, 2007 5:04:34 AM
(When I get time, I'll add in a tooltip like this one to the SVG file for build number and release date)
mabdul # Monday, November 26, 2007 7:03:36 PM
mabdul # Wednesday, February 13, 2008 8:23:02 PM
very bad
today i recently updated the wishlist of the collected "5-things"-tagged-game
(i striked a few thinks which have already been done by the myopera and the desktop team)
Ice ArdorIceArdor # Thursday, February 14, 2008 7:38:55 AM
EMeczKa # Tuesday, May 13, 2008 6:27:22 PM
Ice ArdorIceArdor # Wednesday, May 14, 2008 12:04:30 AM
Thanks for updating it, btw.
Ice ArdorIceArdor # Saturday, May 31, 2008 5:47:10 AM
<textarea>isn't a self-closable tag). Thanks a ton, EMeczKa. I've also posted this update on Wikipedia.Judging by the frequency of releases, and noticing the pattern before Opera 9.0 came out, it looks like Kestrel will take flight within the next 2 months.
Ice ArdorIceArdor # Thursday, August 28, 2008 1:56:56 AM
mabdul # Saturday, August 30, 2008 7:30:17 PM
Ice ArdorIceArdor # Monday, September 1, 2008 6:23:31 AM
mabdul # Monday, November 3, 2008 1:54:48 PM
Ice ArdorIceArdor # Tuesday, November 4, 2008 1:40:05 AM
I've really been slacking off on updating this. Sorry about that.
It is embedded in http://en.wikipedia.org/wiki/History_of_the_Opera_web_browser
Ice ArdorIceArdor # Friday, January 30, 2009 9:36:43 AM
Ice ArdorIceArdor # Thursday, February 5, 2009 8:23:03 AM
Be the Tamil. You'll get much more done, everyone will like you and you might get banned by Opera for a day.
mabdul # Saturday, January 2, 2010 6:01:28 PM
oh and the wiki version also (I tried to upload this version, because it has a few more builds, but this doesn't work!)