| Blog | |
| Releases |
| Howl's Moving Castle In Australia? | |
|---|---|
|
Date: 7/1/2005 | After the almost 2 year wait we had for Spirited Away (an all time fravorite of mine), it's cheering to see that MadMan seem to be planning a 2005 release for Howl's Moving Castle.
The cynic in me reckons it'll be "December" before we see it but maybe it won't be that bad. I'll be sure to post something when actual dates become available. Howl was released in Japan on Nov 20, 2004. The movie broke the Japanese box office record for ticket sales in the first 2 day period. So people seem to like it ;) |
| (0) Comments | Add Comment | |
| Scribe Plugin SDK | |
|---|---|
|
Date: 7/1/2005 | If you are interested in writing plugins for Scribe then I've just released a new build of the SDK for windows. It includes all the files required to build your own plugin and some limited documentation to get you started. There is also a template plugin that compiles (VisualC++ 6) and loads in Scribe. It doesn't do anything but you can see how it's structured and it'd be easy to take that and add some functionality.
Someone mentioned the possibility of an IPv6 plugin, which is entirely possible using the transport layer plugin type. This is how the SSL plugin works, by providing a new type of connection at the plugin level. If your serious about developing a plugin I'm prepared to make adjustments in the Scribe code to work with new plugins. Or fix bugs that new plugins uncover. |
| (0) Comments | Add Comment | |
| Round Numbers | |
|---|---|
|
Date: 6/1/2005 | This site is comming up to a million hits (scroll down).
Thats like gotta be a milestone or something... |
| (3) Comments | Add Comment | |
| File Search App | |
|---|---|
|
Date: 5/1/2005 | 5 hours of coding and I produce this from scratch:
5 freakin hours. Not bad I reckon. |
| (3) Comments | Add Comment | |
| New(ish) InScribe Only Feature | |
|---|---|
|
Date: 5/1/2005 | Well some time ago someone contacted me about adding some features to Scribe and putting it on a USB key for a modest price. They got their features and then stopped responding to my emails, and of course I didn't get paid as per our agreement. And I wouldn't be surprised if the software is going out on USB keys without my knowledge or permission either. Damn stupid of me not to timebomb the test builds. Oh well...
So what to do? Well I've put that feature they got me to implement (and test to the nth degree) into InScribe for all those loyal supporters that DID pay for the software. In the last few releases of InScribe there is a full Outlook (MAPI) export function in the export menu which is fairly robust and featured. It's been tested on most versions of Outlook/Windows and it does a replicate instead of a straight export, so you can mirror the Scribe folders onto your Outlook mail store. Can you see how handy this could be for people that use Scribe on a USB key? :) Also you can export a sub tree of the mail folders if required as well. A late Merry Christmas to all you InScribe users! |
| (0) Comments | Add Comment | |
| Ye Olde Bugeth | |
|---|---|
|
Date: 4/1/2005 | There has been a couple of peculiar bugs in Scribe for so long now I can't remember when they were first reported (guessing: 2000-2001?). And of course every 3 months or so someone, frothing at the mouth, tells me breathlessly that "there is a bug in Scribe!". And my standard response basically boiled down to:
"So? You'll live." Because I'd spent several weeks in engineering hours trying to fix it and well, just got no where fast. Then some, ok many, years later I was bored and for some reason started thinking about the bugs again and dusted off the debugger and had another look at it. Well basically the first bug was sometimes when you move the mouse over a Lgi window that was behind the active top level window it would pop to the top of the z-order but not take focus. The user would be mousing around, not clicking on anything and bam, the z-order changes. Another similar issue that people love to tell me about is after compacting the folders in Scribe the main window pushed itself to the back of the z-order for no apparent reason. These things in of themselves are annoying but not showstoppers. People learn to work around them and just get on with life (a useful skill btw). And I even stopped noticing they happened at all. Until today. So I decided, that maybe the bug had something to do with the mouse move message handler. Makes sense right? The mouse is moving across the window and then it happens. Well sure enough, after commenting out the WM_MOUSEMOVE handler the bug stops happening. But of course the app isn't very useful anymore. So I start the standard procedure of slowly commenting out less and less of the code until the bug reappears. But the problem with that was there was no garrenteed way of making the bug happen. But by repeating the best known method, move the mouse quickly over the title bars of several Lgi windows, many times I could build up a statistical likely hood of the bug being present in the currently running code. After a little while I isolated the call to the current windows OnMouseEnter function. Hmmmm... what could be in that to cause the z-order change? Well I did a code base wide search of all the implementations of OnMouseEnter and the GToolBar.cpp file had 2 implementations. One for the button and one for the toolbar itself. I commented out GToolButton::OnMouseEnter... still happens. What about GToolBar::OnMouseEnter? No bug. Yes! Nice one. Ok, so what was the code? 3 lines that create the toolbar's tooltips. Open up the tooltip code. Hmmm, I wonder what would happen if I changed some of the flags on the tooltip's CreateWindow? Bug still happens. Oh!?! The tooltip window is parented to the toolbar... maybe... thats it? Change the tooltip parent to NULL. (Good 'ol Windows being a pain again) No bug: Good. Tooltips still work: Good. Compact doesn't push window to the back of the z-order: Very Good. w00t! Back away from the code slowly... don't touch a thing! ;) Now I'll run that for a week or so and if nothing nasty starts happening and the bug doesn't show up again then I'll release test3. Sans the oldest bug in Scribe. Oh btw Happy New Year! |
| (1) Comment | Add Comment | |
