Skip to content

Commit aad9082

Browse files
committed
updated contributors on about screen and readme
1 parent 1f7f23e commit aad9082

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ rake unit_tests
6363

6464
## How to contribute
6565

66-
You need to create an issue and associate a pull request to this issue.
66+
You need to create an issue and associate a pull request to this issue. Your pull request, needs to have some description on title about the issue that you are trying to solve.
6767
After you send your pull request, other developers will make a code review before merging it into the _development_ branch.
6868

6969

@@ -79,6 +79,8 @@ After you send your pull request, other developers will make a code review befor
7979
- Diego Ventura - [GitHub](https://github.com/diegoventura) / [Twitter](https://twitter.com/venturadiego)
8080
- Diogo Tridapalli - [Github](https://github.com/diogot) / [Twitter](https://twitter.com/diogot)
8181
- Gustavo Barbosa - [Github](https://github.com/barbosa) / [Twitter](https://twitter.com/gustavocsb)
82+
- Guilherme Rambo - [Github](https://github.com/insidegui) / [Twitter](https://twitter.com/insidegui)
83+
- Leonardo Cardoso - [Github](https://github.com/leonardocardoso) / [Twitter](https://twitter.com/leocardz)
8284
- Ricardo Borelli - [Github](https://github.com/rabc) / [Twitter](https://twitter.com/rabc)
8385
- Rodrigo Reis - [Github](https://github.com/digoreis) / [Twitter](https://twitter.com/digoreis)
8486

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

+6-4
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,12 @@ class AboutViewController: UITableViewController {
6161
let ventura = Item(text: "Diego Ventura", type: .github, value: "diegoventura")
6262
let tridapalli = Item(text: "Diogo Tridapalli", type: .github, value: "diogot")
6363
let gustavo = Item(text: "Gustavo Barbosa", type: .github, value: "barbosa")
64+
let rambo = Item(text: "Guilherme Rambo", type: .github, value: "insidegui")
65+
let leocardoso = Item(text: "Leonardo Cardoso", type: .github, value: "leonardocardoso")
6466
let borelli = Item(text: "Ricardo Borelli", type: .github, value: "rabc")
6567
let reis = Item(text: "Rodrigo Reis", type: .github, value: "digoreis")
6668

67-
let contributors = About(section: .contributors, items: [bilescky, guidolim, hecktheuer, ventura, tridapalli, gustavo, borelli, reis], footer: nil)
69+
let contributors = About(section: .contributors, items: [bilescky, guidolim, hecktheuer, ventura, tridapalli, gustavo, rambo, leocardoso, borelli, reis], footer: nil)
6870
about.append(contributors)
6971

7072
// Licenses
@@ -104,9 +106,9 @@ class AboutViewController: UITableViewController {
104106
// More Data
105107
let web = Item(text: "Web", type: .url, value: "https://apple.github.io/swift-evolution")
106108
let proposals = Item(text: "Proposals Repo", type: .github, value: "apple/swift-evolution")
107-
let mailing = Item(text: "Mailing list", type: .url, value: "https://lists.swift.org/mailman/listinfo/swift-evolution")
109+
let forum = Item(text: "Swift Evolution Forum", type: .url, value: "https://forums.swift.org/c/evolution")
108110

109-
let more = About(section: .moreData, items: [web, proposals, mailing], footer: nil)
111+
let more = About(section: .moreData, items: [web, proposals, forum], footer: nil)
110112
about.append(more)
111113

112114
// Thanks To
@@ -118,7 +120,7 @@ class AboutViewController: UITableViewController {
118120
let jesse = Item(text: "Jesse Squires", type: .twitter, value: "jesse_squires")
119121
let lisa = Item(text: "Lisa Dziuba", type: .twitter, value: "LisaDziuba")
120122

121-
let copyright = "Copyright (c) 2017 Thiago Holanda ([email protected]), Bruno Bilescky ([email protected])\n\nSwift and the Swift logo are trademarks of Apple Inc., registered in the U.S. and other countries."
123+
let copyright = "Copyright (c) 2018 Thiago Holanda ([email protected]), Bruno Bilescky ([email protected])\n\nSwift and the Swift logo are trademarks of Apple Inc., registered in the U.S. and other countries."
122124
let thanks = About(section: .thanks, items: [chris, daniel, danilo, ezeq, john, jesse, lisa], footer: copyright)
123125
about.append(thanks)
124126

0 commit comments

Comments
 (0)