-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dev: fixed config update doc, update dep, update copyright update doc and badges update README
- Loading branch information
Showing
8 changed files
with
52 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ Cargo.lock | |
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Favicon | ||
|
||
[!["License"](https://img.shields.io/github/license/leonardwoo/favicon-rs?style=flat-square)](https://github.com/leonardwoo/favicon-rs/blob/main/LICENSE) | ||
[!["Crates.io"](https://img.shields.io/crates/d/favicon-rs?style=flat-square)](https://srl.cx/jIUoJvBB) | ||
[!["Crates.io"](https://img.shields.io/crates/v/favicon-rs?style=flat-square)](https://srl.cx/jIUoJvBB) | ||
|
||
## Introduction | ||
|
||
A favicon image generation tool. | ||
|
||
## Install | ||
|
||
```shell | ||
cargo install favicon-rs | ||
``` | ||
|
||
## Usage | ||
|
||
```shell | ||
favicon -i <image.png> [output_path] | ||
``` | ||
|
||
## HTML Favicon | ||
|
||
```html | ||
<head> | ||
|
||
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> | ||
<!-- OR --> | ||
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> | ||
|
||
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="192x192" href="android-chrome-192x192.png" /> | ||
<link rel="icon" type="image/png" sizes="512x512" href="android-chrome-512x512.png" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" /> | ||
|
||
</head> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters