1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00
No description
Find a file
rohan kumar b9a307a8c1
Icons: add the final icon: maskable icon
I just found out that lots of Android devices will letterbox icons; the
latest version of Lighthouse will preview an icon in the safe clipping
range, and that range was way too small for my existing icons. I made a
new version that was mask-safe with the white foreground shrunk down a
bit so it would fit. See [0].

[0]: https://web.dev/maskable-icon-audit/

For consistency, I renamed the Apple mask icon as well.

Why are there so many extensions to the HTML standard for icons? This is
getting ridiculous.

It's time for a rant about icon standards. Let's recap! what icons do I
have so far?

- A 192px apple-touch-icon. Apple icons are supposed to be 180px, but
  192px gets re-sized down just fine. This used to be apple-specific but
  then Android and others started using it. I picked 192px instead of the
  standard 180px because we need...(next bullet)
- A 192px icon for Android devices. Rather than having a separate icon
  for this, I just re-used the existing Apple icon in case the user's
  browser wants both so it can just cache and re-use it.
- The original 32px favicon.png. I picked PNG instead of ICO because an
  ICO containing the optimized PNG was a whopping 2kb while the png was
  176 bytes. It looks fine when scaled down to 16px with a variety of
  automatic downscaling algos, so there was no need to include an extra
  16px version.
- A mask-icon. I was hesitant to implement this since it seemed very
  vendor-specific (desktop Safari only), but it somehow became an
  accepted registered extension to the spec [1] so I figured that it was
  only a matter of time before a bunch of other things started using it.
- A webmanifest file to describe even more icons. It re-defines the
  aforementioned 192px icons. I chose to re-use the icon for the same
  reason as before. It also describes the next two bullets:
- favicon.svg: used in the manifest in case the device wants something
  bigger than 192px.
- A maskable icon (svg), completely unrelated to the aforementioned
  mask-icon, with the focus of the image shrunk down to handle cropping
  e.g. on some Android devices.

[1]: https://html.spec.whatwg.org/multipage/semantics.html#attr-link-sizes

What I SHOULD have, in an imaginary world where web standards make sense:

- A 32x32 raster icon. Probably PNG, but lossless-webp migth work
  too.
- A 16x16 raster icon, only if the 32x32 version doesn't downscale
  well.
- An svg icon for any other resolution.

What I don't, and probably never will have:

- A msapplication icon for IE 10 on Windows 8.0, for adding sites to the
  Windows 8 Start Screen.
- A browserconfig.xml in my site's root directory for adding sites to
  the Windows 8.1+ Start Screen/Menu with custom icons.

Since MS dumped IE and switched to Edge, documentation for the above was
never updated. I don't run proprietary operating systems, so I can't
test adding a website to the tiled Start Menu or Windows Task Bar.

Now that MS re-wrote Edge as a Chromium-based browser, I really have no
idea how it handles icons; I'd imagine it just does what Chrome does,
but it probably does some odd witchcraft to support adding sites to
Start or the taskbar. Docs don't seem to exist. Until they update the
docs, I'll assume that adding MS icons would mean supporting a
non-standard IE-specific feature.

Due to its simplicity, my site should render fine in browsers going as
far back as IE5; it even works in KHTML. But there are some lines I
won't cross: it'll probably *render* on IE5 but it won't *load* since
https://seirdy.one is TLS 1.2/1.3 only. And it won't support special
proprietary non-standard extensions.

WTF we're almost at 80 lines. I should've just written a blog post.
2020-12-15 14:34:32 -08:00
archetypes Batman!! (this commit has no parents) 2020-11-03 15:52:34 -08:00
assets Icons: add the final icon: maskable icon 2020-12-15 14:34:32 -08:00
content About: more details about identities 2020-12-11 12:02:02 -08:00
layouts My gemlog deserves sane date formats too! 2020-11-25 22:38:16 -08:00
static Icons: add the final icon: maskable icon 2020-12-15 14:34:32 -08:00
themes/etch-custom Icons: add the final icon: maskable icon 2020-12-15 14:34:32 -08:00
.browserslistrc Move link-checking and browserslist out of hintrc 2020-12-14 22:12:52 -08:00
.build.yml CI: fix: missing dep + no chown/chgrp 2020-12-12 21:13:25 -08:00
.gitignore CI: use Makefile to lint, build, and deploy 2020-12-12 21:04:01 -08:00
.hintrc Move link-checking and browserslist out of hintrc 2020-12-14 22:12:52 -08:00
.rsyncignore CI: use Makefile to lint, build, and deploy 2020-12-12 21:04:01 -08:00
.stylelintignore CI: use Makefile to lint, build, and deploy 2020-12-12 21:04:01 -08:00
.stylelintrc.json CI: use Makefile to lint, build, and deploy 2020-12-12 21:04:01 -08:00
config.toml Default description: "Seirdy's Home" 2020-12-11 12:01:37 -08:00
LICENSE Batman!! (this commit has no parents) 2020-11-03 15:52:34 -08:00
lychee.toml Move link-checking and browserslist out of hintrc 2020-12-14 22:12:52 -08:00
Makefile Move link-checking and browserslist out of hintrc 2020-12-14 22:12:52 -08:00
README.md Link to proj. hub instead of git repo on sourcehut 2020-11-19 20:35:59 -08:00

seirdy.one

sourcehut GitLab
mirror GitHub
mirror

builds.sr.ht status

Code for my personal website, seirdy.one. Built with Hugo.