Skip to content

Commit

Permalink
updated contributors on about screen and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
unnamedd committed Jan 1, 2018
1 parent 1f7f23e commit aad9082
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ rake unit_tests

## How to contribute

You need to create an issue and associate a pull request to this issue.
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.
After you send your pull request, other developers will make a code review before merging it into the _development_ branch.


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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,12 @@ class AboutViewController: UITableViewController {
let ventura = Item(text: "Diego Ventura", type: .github, value: "diegoventura")
let tridapalli = Item(text: "Diogo Tridapalli", type: .github, value: "diogot")
let gustavo = Item(text: "Gustavo Barbosa", type: .github, value: "barbosa")
let rambo = Item(text: "Guilherme Rambo", type: .github, value: "insidegui")
let leocardoso = Item(text: "Leonardo Cardoso", type: .github, value: "leonardocardoso")
let borelli = Item(text: "Ricardo Borelli", type: .github, value: "rabc")
let reis = Item(text: "Rodrigo Reis", type: .github, value: "digoreis")

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

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

let more = About(section: .moreData, items: [web, proposals, mailing], footer: nil)
let more = About(section: .moreData, items: [web, proposals, forum], footer: nil)
about.append(more)

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

let copyright = "Copyright (c) 2017 Thiago Holanda (thiago@swift-evolution.io), Bruno Bilescky (bruno@swift-evolution.io)\n\nSwift and the Swift logo are trademarks of Apple Inc., registered in the U.S. and other countries."
let copyright = "Copyright (c) 2018 Thiago Holanda (thiago@swift-evolution.io), Bruno Bilescky (bruno@swift-evolution.io)\n\nSwift and the Swift logo are trademarks of Apple Inc., registered in the U.S. and other countries."
let thanks = About(section: .thanks, items: [chris, daniel, danilo, ezeq, john, jesse, lisa], footer: copyright)
about.append(thanks)

Expand Down

0 comments on commit aad9082

Please sign in to comment.