mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 12:24:16 +00:00
* Keep project related .md files triple licensed as the rest of the crate * Make vtable MIT OR Apache 2.0 (as suggested by @ogoffart) |
||
|---|---|---|
| .. | ||
| at-solid.svg | ||
| at.png | ||
| balance-scale-solid.svg | ||
| balance-scale.png | ||
| bicycle-solid.svg | ||
| bicycle.png | ||
| bus-solid.svg | ||
| bus.png | ||
| cloud-solid.svg | ||
| cloud.png | ||
| cogs-solid.svg | ||
| cogs.png | ||
| motorcycle-solid.svg | ||
| motorcycle.png | ||
| README.md | ||
| tile_logo.png | ||
| video-solid.svg | ||
| video.png | ||
The icons originate from Font-Awesome font ( http://fontawesome.io ) and licensed under the CC BY 4.0 (SVG download)
https://fontawesome.com/license/free
The PNGs were generated using
for f in *.svg; do rsvg-convert -a -w 128 -h 128 -o `echo $f | sed -e "s,-solid\.svg,.png,"` $f; done
for f in *.png; do convert -background none -gravity center -extent 128x128 $f $f; done