From 692376d83836834c84b37d497d1349f45e65f99b Mon Sep 17 00:00:00 2001 From: coliff Date: Thu, 25 Apr 2024 21:31:41 +0900 Subject: [PATCH 1/7] Add Web Manifest --- docs/layouts/partials/head.html | 1 + docs/static/manifest.json | 39 +++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 docs/static/manifest.json diff --git a/docs/layouts/partials/head.html b/docs/layouts/partials/head.html index 53a64ca8..d0a3a3b3 100644 --- a/docs/layouts/partials/head.html +++ b/docs/layouts/partials/head.html @@ -4,6 +4,7 @@ ({{ .Section | humanize | title -}}) · {{ .Site.Title -}} {{- end -}} + {{ $themeToggle := resources.Get "js/theme-toggle.js" }} diff --git a/docs/static/manifest.json b/docs/static/manifest.json new file mode 100644 index 00000000..9cae16ff --- /dev/null +++ b/docs/static/manifest.json @@ -0,0 +1,39 @@ +{ + "name": "Modus Icons", + "short_name": "Modus Icons", + "start_url": "/?utm_source=a2hs", + "display": "standalone", + "lang": "en-us", + "background_color": "#f1f1f6", + "theme_color": "#0e416c", + "icons": [ + { + "src": "favicon.svg", + "sizes": "512x512", + "type": "image/svg+xml" + } + ], + "shortcuts": [ + { + "name": "Modus Solid Icons", + "short_name": "Solid", + "description": "View all the Modus Solid Icons", + "url": "/modus-solid/", + "icons": [{ "src": "/modus-solid/svg/thumbs-up.svg", "sizes": "512x512" }] + }, + { + "name": "Modus Outlined Icons", + "short_name": "Outlined", + "description": "View all the Modus Solid Icons", + "url": "/modus-outlined/", + "icons": [{ "src": "/modus-outlined/svg/thumbs-up.svg", "sizes": "512x512" }] + }, + { + "name": "Modus Transportation Icons", + "short_name": "Transportation", + "description": "View all the Transportation Icons", + "url": "/transportation/", + "icons": [{ "src": "/transportation/svg/truck.svg", "sizes": "512x512" }] + } + ] +} From b4421829df57f82f6c57dc89fdbe9132c16e2186 Mon Sep 17 00:00:00 2001 From: coliff Date: Thu, 25 Apr 2024 21:35:17 +0900 Subject: [PATCH 2/7] Update super-linter.yml --- .github/workflows/super-linter.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index a5d43845..36fdfaea 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -34,6 +34,7 @@ jobs: LINTER_RULES_PATH: / LOG_LEVEL: NOTICE SUPPRESS_POSSUM: true + VALIDATE_CHECKOV: false VALIDATE_CSS: false VALIDATE_EDITORCONFIG: false VALIDATE_GITLEAKS: false From 99c0506b6c71f5f8b3257c287ea26e2d9eebf718 Mon Sep 17 00:00:00 2001 From: coliff Date: Thu, 25 Apr 2024 21:48:00 +0900 Subject: [PATCH 3/7] Update manifest.json --- docs/static/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/manifest.json b/docs/static/manifest.json index 9cae16ff..c7582b62 100644 --- a/docs/static/manifest.json +++ b/docs/static/manifest.json @@ -8,7 +8,7 @@ "theme_color": "#0e416c", "icons": [ { - "src": "favicon.svg", + "src": "/modus-solid/svg/check-circle.svg", "sizes": "512x512", "type": "image/svg+xml" } From df6b84b069b93f50e31228f5f36dd46c90da9acf Mon Sep 17 00:00:00 2001 From: coliff Date: Thu, 25 Apr 2024 21:31:41 +0900 Subject: [PATCH 4/7] Add Web Manifest --- docs/layouts/partials/head.html | 1 + docs/static/manifest.json | 39 +++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 docs/static/manifest.json diff --git a/docs/layouts/partials/head.html b/docs/layouts/partials/head.html index 53a64ca8..d0a3a3b3 100644 --- a/docs/layouts/partials/head.html +++ b/docs/layouts/partials/head.html @@ -4,6 +4,7 @@ ({{ .Section | humanize | title -}}) · {{ .Site.Title -}} {{- end -}} + {{ $themeToggle := resources.Get "js/theme-toggle.js" }} diff --git a/docs/static/manifest.json b/docs/static/manifest.json new file mode 100644 index 00000000..9cae16ff --- /dev/null +++ b/docs/static/manifest.json @@ -0,0 +1,39 @@ +{ + "name": "Modus Icons", + "short_name": "Modus Icons", + "start_url": "/?utm_source=a2hs", + "display": "standalone", + "lang": "en-us", + "background_color": "#f1f1f6", + "theme_color": "#0e416c", + "icons": [ + { + "src": "favicon.svg", + "sizes": "512x512", + "type": "image/svg+xml" + } + ], + "shortcuts": [ + { + "name": "Modus Solid Icons", + "short_name": "Solid", + "description": "View all the Modus Solid Icons", + "url": "/modus-solid/", + "icons": [{ "src": "/modus-solid/svg/thumbs-up.svg", "sizes": "512x512" }] + }, + { + "name": "Modus Outlined Icons", + "short_name": "Outlined", + "description": "View all the Modus Solid Icons", + "url": "/modus-outlined/", + "icons": [{ "src": "/modus-outlined/svg/thumbs-up.svg", "sizes": "512x512" }] + }, + { + "name": "Modus Transportation Icons", + "short_name": "Transportation", + "description": "View all the Transportation Icons", + "url": "/transportation/", + "icons": [{ "src": "/transportation/svg/truck.svg", "sizes": "512x512" }] + } + ] +} From 3af6850fb4b95646c559c2f6ce60ed7094281fe1 Mon Sep 17 00:00:00 2001 From: coliff Date: Thu, 25 Apr 2024 21:48:00 +0900 Subject: [PATCH 5/7] Update manifest.json --- docs/static/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/manifest.json b/docs/static/manifest.json index 9cae16ff..c7582b62 100644 --- a/docs/static/manifest.json +++ b/docs/static/manifest.json @@ -8,7 +8,7 @@ "theme_color": "#0e416c", "icons": [ { - "src": "favicon.svg", + "src": "/modus-solid/svg/check-circle.svg", "sizes": "512x512", "type": "image/svg+xml" } From 1be83d8a09f704c2933f1998a68004809f604aa8 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Tue, 4 Feb 2025 21:19:15 +0900 Subject: [PATCH 6/7] Update manifest.json Signed-off-by: Christian Oliff --- docs/static/manifest.json | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/static/manifest.json b/docs/static/manifest.json index c7582b62..fac0a0e9 100644 --- a/docs/static/manifest.json +++ b/docs/static/manifest.json @@ -2,7 +2,6 @@ "name": "Modus Icons", "short_name": "Modus Icons", "start_url": "/?utm_source=a2hs", - "display": "standalone", "lang": "en-us", "background_color": "#f1f1f6", "theme_color": "#0e416c", From 618ca12f13f3d6453ea0fb642893c0962f5231a0 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 5 Feb 2025 17:24:11 +0900 Subject: [PATCH 7/7] Update manifest.json Signed-off-by: Christian Oliff --- docs/static/manifest.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/static/manifest.json b/docs/static/manifest.json index fac0a0e9..aa777480 100644 --- a/docs/static/manifest.json +++ b/docs/static/manifest.json @@ -33,6 +33,13 @@ "description": "View all the Transportation Icons", "url": "/transportation/", "icons": [{ "src": "/transportation/svg/truck.svg", "sizes": "512x512" }] + }, + { + "name": "Modus Field Systems Icons", + "short_name": "Field Systems", + "description": "View all the Field Systems Icons", + "url": "/field-systems/", + "icons": [{ "src": "/field-systems/svg/machine.svg", "sizes": "512x512" }] } ] }