May 7th, 2008
A new version of hotTunes, version 2.3, is available on the hotTunes page. The Info window is now displayed properly on Mac OS X 10.4.11 and I’ve also simplified the process of saving and loading custom hot key sets.
Posted in software |
No Comments »
April 24th, 2008
Posted in photos, vintage |
No Comments »
April 23rd, 2008
Posted in photos, vintage |
No Comments »
April 18th, 2008
Just a quick update on the state of the next version of “Remember?”. I’ve got several significant new features in the works:
- Extending the cut-off year for events from 2018 to 2134
- Safer occasion file updates
- Automatic occasion file backups
The coding for these changes is essential completed but will require extensive testing before I’ll let it at anyone else’s data. Occasion files that contain events beyond 2018 won’t be compatible with previous versions of Remember? and can’t be opened by them.
These are fairly extensive changes so I’m not sure when this version will be ready for public consumption. I’ll post a pre-release test version for the more adventurous after more testing.
Posted in software |
2 Comments »
April 16th, 2008
Many of my projects must support previous Mac OS X versions including at least 10.3, and in order to do that I have to make sure the PowerPC version is built with GCC version 3.3 rather than 4.x or the app fails to load on 10.3 and earlier. So to handle that I add an Xcode project setting named GCC_VERSION_ppc with value of 3.3 to force the PPC version to build with GCC 3.3 and everyone’s happy.
Ran into a strange problem lately where breakpoints would not work on my G5 tower but worked just fine on my Intel laptop. Same version of Xcode, same everything else I could see. EXCEPT I finally realized that the problem was that special GCC compiler setting. Apparently Xcode 3 can’t debug code compiled with GCC 3.3.
The solution is easy: instead of adding the GCC_VERSION_ppc setting to All Configurations, add it just to the Release configuration. That way Debug builds can still use breakpoints but the final will still run on Mac OS X 10.3.
The downside is you are no longer debugging with the same version of the compiler as the release uses but since bugs are never caused by the compiler that shouldn’t be an issue, right? (NOTE: This is what’s sometimes called sarcasm.)
Posted in dev, macosx, tips |
Comments Off