-
-
Notifications
You must be signed in to change notification settings - Fork 955
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ @interface AboutViewController () | |
|
||
@property (weak, nonatomic) IBOutlet UITableViewCell *sendFeedback; | ||
@property (weak, nonatomic) IBOutlet UITableViewCell *openGithub; | ||
@property (weak, nonatomic) IBOutlet UITableViewCell *openTwitter; | ||
@property (weak, nonatomic) IBOutlet UITableViewCell *openFediverse; | ||
@property (weak, nonatomic) IBOutlet UITableViewCell *openDiscord; | ||
|
||
@property (weak, nonatomic) IBOutlet UITableViewCell *upgradeApkCell; | ||
|
@@ -99,10 +99,10 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath | |
[UIApplication openURL:@"mailto:[email protected]?subject=Feedback%20for%20iSH"]; | ||
} else if (cell == self.openGithub) { | ||
[UIApplication openURL:@"https://github.com/ish-app/ish"]; | ||
} else if (cell == self.openTwitter) { | ||
[UIApplication openURL:@"https://twitter.com/tblodt"]; | ||
} else if (cell == self.openFediverse) { | ||
[UIApplication openURL:@"https://publ.ish.app/ish"]; | ||
} else if (cell == self.openDiscord) { | ||
[UIApplication openURL:@"https://discord.gg/HFAXj44"]; | ||
[UIApplication openURL:@"https://discord.gg/ish"]; | ||
} else if (cell == self.exportContainerCell) { | ||
// copy the files to the app container so they can be extracted from iTunes file sharing | ||
NSURL *container = ContainerURL(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Send bug reports or feedback here: https://github.com/ish-app/ish/issues (or by email, if you prefer) | ||
Follow iSH on Twitter: https://twitter.com/iSH_app | ||
Join the Discord: https://discord.gg/HFAXj44 | ||
Follow iSH on the Fediverse: @[email protected] | ||
Join the Discord: https://discord.gg/ish | ||
Give me money here: https://patreon.com/tbodt | ||
|