This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Stripping PPC from Growl framework..." | |
cd "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/Contents/Frameworks/Growl.framework/Versions/Current" | |
lipo ./Growl -verify_arch ppc | |
if test $? -ne 1 ; then | |
lipo ./Growl -remove ppc -output ./Growl | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Launches ScanSnap Manager, if necessary. Opens the ScanSnap Manager settings window, | |
-- changes to named profile, applies changes, and closes the window | |
-- Example: | |
SwitchToProfile("Standard") | |
on SaveActiveApplication() | |
return application | |
end SaveActiveApplication | |
on OpenOptionsWindow() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Cocoa/Cocoa.h> | |
BOOL VerifyAppStoreReceipt(); | |
BOOL VerifyAppStoreReceiptData(NSData *data); | |
NSURL *BackupReceiptURL(); | |
void BackupAppStoreReceipt(); | |
NSData *MACAddressData(); | |
NSDictionary *DictionaryFromAppStoreReceipt(NSData *fullData); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The impact of Apple's continued lack of support for upgrade pricing has been increased by an apparent effort on Apple's part to enforce 3rd party developers trying to accommodate upgrade pricing through their own means: | |
http://www.omnigroup.com/blog/entry/update-no-upgrade-pricing-for-mac-app-store-purchases | |
Most of us Mac developers are loyal Apple fans who would like to support the Mac App Store and keep our customers who purchased on the Mac App Store within that system. By not supporting an upgrade mechanism for these customers Apple leaves us in a position where we're forced to either treat Mac App Store customers as 2nd class customers or to forego across the board the expected compensation for major upgrades to our applications. |