Skip to content

Commit

Permalink
prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
vineetchoudhary committed Oct 6, 2016
1 parent 40e7c2e commit 7855773
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AppBox/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6</string>
<string>0.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
8 changes: 4 additions & 4 deletions AppBox/ViewController/HomeViewController/HomeViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ - (void)viewDidLoad {
- (IBAction)buttonLinkWithDropboxTapped:(NSButton *)sender {
if ([[DBSession sharedSession] isLinked]) {
// The link button turns into an unlink button when you're linked
// [[DBSession sharedSession] unlinkAll];
// restClient = nil;
[self performSegueWithIdentifier:@"ShowDashboard" sender:sender];
[[DBSession sharedSession] unlinkAll];
restClient = nil;
// [self performSegueWithIdentifier:@"ShowDashboard" sender:sender];
[self updateDropBoxLinkButton];
} else {
[[DBAuthHelperOSX sharedHelper] authenticate];
Expand Down Expand Up @@ -203,7 +203,7 @@ - (DBRestClient *)restClient {
- (void)updateDropBoxLinkButton{
if ([[DBSession sharedSession] isLinked]) {
buttonSelectIPAFile.enabled = YES;
buttonLinkWithDropbox.title = @"Dashboard";
buttonLinkWithDropbox.title = @"Unlink Dropbox";
[self restClient];
} else {
buttonSelectIPAFile.enabled = NO;
Expand Down

0 comments on commit 7855773

Please sign in to comment.