feat: new app icon
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 183 KiB After Width: | Height: | Size: 194 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 11 KiB |
|
@ -20,6 +20,10 @@ pub fn get_developers() -> Vec<String> {
|
|||
vec!["Gabriele Musco <gabmus@disroot.org>".into()]
|
||||
}
|
||||
|
||||
pub fn get_artists() -> Vec<String> {
|
||||
vec!["App Icon: Yannick (@Yandr)".into()]
|
||||
}
|
||||
|
||||
pub fn pkg_data_dir() -> PathBuf {
|
||||
get_exec_prefix().join("share").join(CMD_NAME)
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::{
|
||||
constants::{
|
||||
get_developers, APP_ID, APP_NAME, BUILD_DATETIME, ISSUES_URL, REPO_URL, SINGLE_DEVELOPER,
|
||||
VERSION,
|
||||
get_artists, get_developers, APP_ID, APP_NAME, BUILD_DATETIME, ISSUES_URL, REPO_URL,
|
||||
SINGLE_DEVELOPER, VERSION,
|
||||
},
|
||||
device_prober::PhysicalXRDevice,
|
||||
linux_distro::LinuxDistro,
|
||||
|
@ -21,6 +21,7 @@ pub fn create_about_dialog() -> adw::AboutDialog {
|
|||
.issue_url(ISSUES_URL)
|
||||
.developer_name(SINGLE_DEVELOPER)
|
||||
.developers(get_developers())
|
||||
.artists(get_artists())
|
||||
.build()
|
||||
}
|
||||
|
||||
|
|