add logo to executable

This commit is contained in:
Mystikfluu 2022-12-28 15:34:53 +01:00
parent 4a1093f495
commit 52c5fd45c3
7 changed files with 11 additions and 1 deletions

1
.rc Normal file
View File

@ -0,0 +1 @@
ipass_logo ICON "IPass_logo.ico"

BIN
.res Normal file

Binary file not shown.

2
Cargo.lock generated
View File

@ -194,7 +194,7 @@ dependencies = [
[[package]]
name = "ipass"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"aes-gcm",
"brotli",

BIN
IPass_logo.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1 +1,7 @@
# IPass
![IPass logo](../blob/master/IPass_logo.png?raw=true)
## Secure your passwords, secure your life, with IPass.
Are you tired of trying to remember all of your passwords? Do you worry about the security of your accounts? Introducing IPass, the ultimate password manager. With IPass, you can easily store and manage all of your passwords in one secure location. Our state-of-the-art encryption technology ensures that your passwords are safe from hackers and identity thieves. Plus, IPass makes it easy to generate strong, unique passwords for all of your accounts, which helps to further protect your online security. Don't waste any more time worrying about password management - try IPass today and take control of your online security.

3
build.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("cargo:rustc-link-arg=.res");
}