Skip to content

Commit

Permalink
add new Logo
Browse files Browse the repository at this point in the history
  • Loading branch information
nett00n committed Dec 6, 2023
1 parent 3c0a7c5 commit 2929532
Show file tree
Hide file tree
Showing 7 changed files with 164 additions and 34 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
go install github.com/tdewolff/minify/v2/cmd/minify@latest
mkdir -p ./pages
minify -r -o ./pages/ ./*.html
minify -r -o ./pages/ ./*.js
minify -r -o ./pages/ ./*.js
minify -r -o ./pages/ ./*.svg
cp ./*.png ./pages/
cp ./LICENSE ./pages/
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.*
!.github
!.gitignore
pages
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ This project is licensed under the [MIT License](LICENSE).

## Authors (alphabetically)

- [@akamenskiy](https://github.com/akamenskiy)
- [@kawaiier](https://github.com/kawaiier)
- [@nett00n](https://github.com/nett00n)
- [@akamenskiy](https://github.com/akamenskiy) (JS)
- [@kawaiier](https://github.com/kawaiier) (CSS)
- [@nett00n](https://github.com/nett00n) (Maintainer)
- [Belka](https://www.behance.net/levichevatn) (Logo)

---

Expand Down
132 changes: 132 additions & 0 deletions favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed icon-192x192.png
Binary file not shown.
Binary file removed icon-512x512.png
Binary file not shown.
52 changes: 22 additions & 30 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,26 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Add the inline manifest using a <script> tag -->
<script type="application/manifest+json">
{
"name": "5mdt Noise Generator",
"short_name": "5mdtNoiseGen",
"start_url": "./",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#3498db",
"icons": [
{
"src": "./icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "./icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
]
}
<script type="application/manifest+json">
{
"name": "5mdt Noise Generator",
"short_name": "5mdtNoiseGen",
"start_url": "./",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#3498db",
"icons": [
{
"src": "./favicon.svg",
"type": "image/svg+xml",
"purpose": "any maskable"
}
]
}
</script>
<!-- Add the icon links -->
<link rel="apple-touch-icon" href="icon-192x192.png">
<link rel="icon" sizes="192x192" href="icon-192x192.png">
<link rel="apple-touch-icon" sizes="512x512" href="icon-512x512.png">
<link rel="icon" sizes="512x512" href="icon-512x512.png">

<link rel="apple-touch-icon" href="favicon.svg">
<link rel="icon" href="favicon.svg">
<style>

body {
Expand Down Expand Up @@ -178,9 +169,10 @@ <h1>5mdt <br/>Noise Generator</h1>
<p>There is no tracking, ads or even cookies here. It's absolutely free to use and modify</p>
<p>Made with pure HTML+CSS+JS</p>
<p>Authors (alphabetically):</p>
<p>- <a href="https://github.com/akamenskiy">@akamenskiy</a></p>
<p>- <a href="https://github.com/kawaiier">@kawaiier</a></p>
<p>- <a href="https://github.com/nett00n">@nett00n</a></p>
<p>- <a href="https://github.com/akamenskiy">@akamenskiy</a> (JS)</p>
<p>- <a href="https://github.com/kawaiier">@kawaiier</a> (CSS)</p>
<p>- <a href="https://github.com/nett00n">@nett00n</a> (Maintainer)</p>
<p>- <a href="https://www.behance.net/levichevatn">Belka</a> (Logo)</p>
<p>Source Code is placed on <a href="https://github.com/5mdt/noise">Github</a></p>
<p>This project is licensed under the <a href="LICENSE">MIT License</a></p>
<p>2023</p>
Expand Down

0 comments on commit 2929532

Please sign in to comment.