Adjust about page to match design, open links

This commit is contained in:
Jeremy Soller 2024-02-28 09:11:23 -07:00
parent b77e89d762
commit a305f7501e
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
3 changed files with 58 additions and 6 deletions

37
Cargo.lock generated
View file

@ -1194,6 +1194,7 @@ dependencies = [
"libcosmic",
"log",
"notify",
"open",
"patch",
"rust-embed",
"serde",
@ -3148,6 +3149,15 @@ dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "is-docker"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
dependencies = [
"once_cell",
]
[[package]]
name = "is-terminal"
version = "0.4.12"
@ -3159,6 +3169,16 @@ dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "is-wsl"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
dependencies = [
"is-docker",
"once_cell",
]
[[package]]
name = "itoa"
version = "1.0.10"
@ -4172,6 +4192,17 @@ dependencies = [
"pkg-config",
]
[[package]]
name = "open"
version = "5.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eedff767bc49d336bff300224f73307ae36963c843e38dc9312a22171b012cbc"
dependencies = [
"is-wsl",
"libc",
"pathdiff",
]
[[package]]
name = "option-ext"
version = "0.2.0"
@ -4356,6 +4387,12 @@ dependencies = [
"nom_locate",
]
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]]
name = "percent-encoding"
version = "2.3.1"