Skip to content

Commit

Permalink
update logo and spalash
Browse files Browse the repository at this point in the history
  • Loading branch information
liaojinxing committed Jul 3, 2014
1 parent 9d15697 commit a4068da
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 5 deletions.
Binary file modified Voice2Note/Images.xcassets/AppIcon.appiconset/logo_120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Voice2Note/Images.xcassets/AppIcon.appiconset/logo_58.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Voice2Note/Images.xcassets/AppIcon.appiconset/logo_80.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Voice2Note/Images.xcassets/LaunchImage.launchimage/spalash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Voice2Note/Images.xcassets/LaunchImage.launchimage/spalash_960.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Voice2Note/Source/Common/UIColor+VNHex.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ + (UIColor *)systemColor

+ (UIColor *)systemDarkColor
{
return [UIColor cactusGreenColor];
return [UIColor hollyGreenColor];
}

@end
5 changes: 5 additions & 0 deletions Voice2Note/Source/Controller/NoteDetailController.m
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,11 @@ - (void)mailComposeController:(MFMailComposeViewController *)controller didFinis

- (void)shareToWeixin
{
if (_contentTextView.text == nil || _contentTextView.text.length == 0) {
[SVProgressHUD showErrorWithStatus:NSLocalizedString(@"InputTextNoData", @"")];
return;
}

SendMessageToWXReq *req = [[SendMessageToWXReq alloc] init];
req.text = _contentTextView.text;
req.bText = YES;
Expand Down
5 changes: 1 addition & 4 deletions Voice2Note/Source/Model/VNNoteManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,7 @@ - (BOOL)storeNote:(VNNote *)note
- (void)deleteNote:(VNNote *)note
{
NSString *filePath = [_docPath stringByAppendingPathComponent:note.noteID];
BOOL success = [[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
if (success) {
[SVProgressHUD showSuccessWithStatus:NSLocalizedString(@"DeleteFileSuccess", @"")];
}
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}

@end

0 comments on commit a4068da

Please sign in to comment.