Skip to content

Commit

Permalink
Add contributors to "About" dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Spydr06 committed Oct 15, 2023
1 parent 5a01926 commit 02f53d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ description = "An easy-to-use simulator for logical circuits"
readme = "./README.md"
repository = "https://github.com/spydr06/logicrs"
license = "MIT"
authors = ["Spydr06"]
authors = [
"Spydr06",
"sparshg",
"VoidVampire",
"taeh98",
"toadkarter",
"virejdasani"
]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
7 changes: 6 additions & 1 deletion src/application/gactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,12 @@ impl Application {
.comments(config::DESCRIPTION)
.copyright(config::COPYRIGHT)
.developer_name("Spydr06")
.developers(config::AUTHORS.split(':').map(|s| s.to_string()).collect())
.developers(
config::AUTHORS
.split(':')
.map(|s| format!("{s} https://github.com/{s}"))
.collect(),
)
.website(config::REPOSITORY)
.issue_url(&(config::REPOSITORY.to_owned() + "/issues"))
.license_type(gtk::License::MitX11)
Expand Down

0 comments on commit 02f53d4

Please sign in to comment.