0.3.6 - prefer AppIcon over SiteLogo
This commit is contained in:
parent
9a639fb891
commit
808ac7697b
3 changed files with 3 additions and 3 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1525,7 +1525,7 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "site_icons"
|
name = "site_icons"
|
||||||
version = "0.3.5"
|
version = "0.3.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "site_icons"
|
name = "site_icons"
|
||||||
version = "0.3.5"
|
version = "0.3.6"
|
||||||
authors = ["Sam Denty <sam@samdenty.com>"]
|
authors = ["Sam Denty <sam@samdenty.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
|
|
|
@ -10,9 +10,9 @@ use url::Url;
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialOrd, PartialEq, Ord, Eq)]
|
#[derive(Debug, Clone, PartialOrd, PartialEq, Ord, Eq)]
|
||||||
pub enum IconKind {
|
pub enum IconKind {
|
||||||
|
AppIcon,
|
||||||
SiteLogo,
|
SiteLogo,
|
||||||
SiteFavicon,
|
SiteFavicon,
|
||||||
AppIcon,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Display for IconKind {
|
impl Display for IconKind {
|
||||||
|
|
Reference in a new issue