0.3.6 - prefer AppIcon over SiteLogo

This commit is contained in:
Sam Denty 2022-10-09 17:08:11 +01:00
parent 9a639fb891
commit 808ac7697b
No known key found for this signature in database
GPG key ID: 7B4EAF7B9E291B79
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1525,7 +1525,7 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
[[package]]
name = "site_icons"
version = "0.3.5"
version = "0.3.6"
dependencies = [
"byteorder",
"clap",

View file

@ -1,6 +1,6 @@
[package]
name = "site_icons"
version = "0.3.5"
version = "0.3.6"
authors = ["Sam Denty <sam@samdenty.com>"]
edition = "2018"
license = "GPL-3.0"

View file

@ -10,9 +10,9 @@ use url::Url;
#[derive(Debug, Clone, PartialOrd, PartialEq, Ord, Eq)]
pub enum IconKind {
AppIcon,
SiteLogo,
SiteFavicon,
AppIcon,
}
impl Display for IconKind {