Skip to content

Commit 7855773

Browse files
prepare for new release
1 parent 40e7c2e commit 7855773

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

AppBox/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.6</string>
20+
<string>0.7</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>

AppBox/ViewController/HomeViewController/HomeViewController.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ - (void)viewDidLoad {
4747
- (IBAction)buttonLinkWithDropboxTapped:(NSButton *)sender {
4848
if ([[DBSession sharedSession] isLinked]) {
4949
// The link button turns into an unlink button when you're linked
50-
// [[DBSession sharedSession] unlinkAll];
51-
// restClient = nil;
52-
[self performSegueWithIdentifier:@"ShowDashboard" sender:sender];
50+
[[DBSession sharedSession] unlinkAll];
51+
restClient = nil;
52+
// [self performSegueWithIdentifier:@"ShowDashboard" sender:sender];
5353
[self updateDropBoxLinkButton];
5454
} else {
5555
[[DBAuthHelperOSX sharedHelper] authenticate];
@@ -203,7 +203,7 @@ - (DBRestClient *)restClient {
203203
- (void)updateDropBoxLinkButton{
204204
if ([[DBSession sharedSession] isLinked]) {
205205
buttonSelectIPAFile.enabled = YES;
206-
buttonLinkWithDropbox.title = @"Dashboard";
206+
buttonLinkWithDropbox.title = @"Unlink Dropbox";
207207
[self restClient];
208208
} else {
209209
buttonSelectIPAFile.enabled = NO;

0 commit comments

Comments
 (0)