Skip to content

Commit

Permalink
Fixed some issues and increased build numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
plaetzchen committed Jan 20, 2015
1 parent 1f81f88 commit 94cdf77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions SoundcloudPlayer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = SoundcloudPlayer/SoundcloudPlayer.entitlements;
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -856,7 +856,7 @@
OTHER_CODE_SIGN_FLAGS = "--deep";
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE = "B0FC00EB-49DC-4B51-83FB-25CEFA79784F";
WRAPPER_EXTENSION = app;
};
name = Debug;
Expand All @@ -867,7 +867,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = SoundcloudPlayer/SoundcloudPlayer.entitlements;
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -887,7 +887,7 @@
OTHER_CODE_SIGN_FLAGS = "--deep";
OTHER_LDFLAGS = "$(inherited)";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE = "B0FC00EB-49DC-4B51-83FB-25CEFA79784F";
WRAPPER_EXTENSION = app;
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion SoundcloudPlayer/SharedAudioPlayer.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ - (void)nextItem {

- (void)previousItem {
[self advanceToTime:0];
if (CMTimeGetSeconds(self.audioPlayer.currentTime) > 5) {
if (CMTimeGetSeconds(self.audioPlayer.currentTime) < 5) {
if (self.positionInPlaylist >= 1) {
if (self.shuffleEnabled){
[self jumpToItemAtIndex:[self.shuffledItemsToPlay indexOfObject:[self.itemsToPlay objectAtIndex:self.positionInPlaylist]]-1 startPlaying:self.audioPlayer.rate];
Expand Down
2 changes: 1 addition & 1 deletion SoundcloudPlayer/SoundcloudPlayer-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>316</string>
<string>321</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit 94cdf77

Please sign in to comment.