Fix Lion Apps to Work on Mountain Lion


Many apps haven't been updated for 10.8 yet. This sometimes can mean that the app doesn't have necessary frameworks or whatever for the new environment. But in this case, Mountain Lion is so much like Lion that it could be something very very simple. If an app launches, then crashes immediately, this fix may work. 



LET'S BEGIN:

1. Right click on the App in Applications folder
2. Double Click Contents
3. Open info.plist in TextEdit
4. Change the following: 

Code:
   <key>LSMinimumSystemVersionByArchitecture</key>
   <dict>
      <key>i386</key>
      <string>10.5</string>
      <key>ppc</key>
      <string>10.5</string>
      <key>x86_64</key>
      <string>10.6</string>
   </dict>


to this:

Code:
   <key>LSMinimumSystemVersionByArchitecture</key>
   <dict>
      <key>i386</key>
      <string>10.5</string>
      <key>ppc</key>
      <string>10.5</string>
      <key>x86_64</key>
      <string>10.8</string>
   </dict>


Un-tested :)

No comments :

DOWNLOAD