13 May 2003
TigerLaunch 1.0.1
TigerLaunch 1.0.1 fixes a bug where user-added folders wouldn’t always have their apps added to the Apps menu when TigerLaunch starts up.
The app remains open source (BSD license); the source code is available from the TigerLaunch page.
For the curious: the app was building the Apps menu during awakeFromNib, but that was the wrong time to do it, since it was relying on another class’s awakeFromNib having already been called, which wasn’t always the case.
So I added an applicationDidFinishLaunching delegate method, and now the menus get built then. This fixed the bug.