Skip to content

Commit 1f7f23e

Browse files
authored
Merge pull request #95 from swift-evolution/source-url-update
Updated source code URL
2 parents 44c7751 + 372926a commit 1f7f23e

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

swift-evolution/sourcecode/controllers/about/AboutViewController.swift

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ class AboutViewController: UITableViewController {
8686
about.append(cloudTools)
8787

8888
// Source code repositories
89-
//let app = Item(text: "iOS App", type: .github, value: "unnamedd/swift-evolution")
90-
let backend = Item(text: "Backend", type: .github, value: "unnamedd/swift-evolution-backend")
89+
let app = Item(text: "iOS App", type: .github, value: "swift-evolution/ios")
90+
let backend = Item(text: "Backend", type: .github, value: "swift-evolution/backend")
9191

92-
let repositories = About(section: .sourceCode, items: [backend], footer: nil)
92+
let repositories = About(section: .sourceCode, items: [app, backend], footer: nil)
9393
about.append(repositories)
9494

9595
// Contacts
@@ -178,7 +178,7 @@ extension AboutViewController {
178178
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
179179
let item = self.dataSource[indexPath.section].items[indexPath.row]
180180

181-
var title = "Open Safari ?"
181+
var title = "Open Safari?"
182182
var value = ""
183183
var message = ""
184184

@@ -227,6 +227,8 @@ extension AboutViewController {
227227
alertController.addAction(cancelAction)
228228
alertController.addAction(openAction)
229229

230-
self.present(alertController, animated: false, completion: nil)
230+
DispatchQueue.main.async {
231+
self.present(alertController, animated: true, completion: nil)
232+
}
231233
}
232234
}

swift-evolution/sourcecode/controllers/proposals/list/uitableviewcell/ProposalListHeaderTableViewCell.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
//
2-
// ProposalListHeaderTableViewCell.swift
3-
// swift-evolution
4-
//
5-
// Created by Diego Ventura on 25/03/2017.
6-
// Copyright © 2017 Holanda Mobile. All rights reserved.
7-
//
8-
91
import Foundation
102
import UIKit
113

0 commit comments

Comments
 (0)