Archive for February, 2009


BuddyFeed 1.2 released

BuddyFeed 1.2 has been released.
The update includes following changes:
Load More
Now at every bottom of feed list, there’s a “Load more…”. Click on it and more feed entries are loaded.
Search History
Every time you search a term, the term will be put into the search history and can be re-used in the future. Click on the bookmark [...]

iPhone Application Post Build Script

I composed a script. Add it into the Run Script Build Phase and it can help you to package the binary and dSYM into:

[application].app.[version].zip
[application].app.dSYM.[version].[git hash].zip

after a “Distribution” build.
Here’s the script:

#!/usr/bin/env ruby
if ENV["BUILD_STYLE"] == "Distribution" && ENV["ARCHS"] == ‘armv6′
common_git_paths = %w[/usr/local/bin/git /usr/local/git/bin/git /opt/local/bin/git]
git_path = ""
 
common_git_paths.each do |p|
[...]