-
Notifications
You must be signed in to change notification settings - Fork 346
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GSoD 2021] Added Progressive Web Application (PWA) support for the D…
…ocusaurus site (#910) * added pwa manifest file and images Signed-off-by: Rajiv Ranjan Singh <[email protected]> * added PWA for docusaurus Signed-off-by: Rajiv Ranjan Singh <[email protected]> * added pwa package Signed-off-by: Rajiv Ranjan Singh <[email protected]> * added pwa images Signed-off-by: Rajiv Ranjan Singh <[email protected]> * fix: converted png to webp Signed-off-by: Rajiv Ranjan Singh <[email protected]> Co-authored-by: Huan (李卓桓) <[email protected]> Co-authored-by: Rohitesh Kumar Jain <[email protected]>
- Loading branch information
1 parent
9914d4c
commit 0cfbff2
Showing
14 changed files
with
105 additions
and
0 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+850 Bytes
docusaurus/static/img/pwa/chrome/chrome-extensionmanagementpage-48-48.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,74 @@ | ||
{ | ||
"short_name":"Wechaty", | ||
"Name":"Wechaty", | ||
"description":"Conversational RPA SDK for Chatbot Makers", | ||
"display":"standalone", | ||
"scope":"./", | ||
"theme_color":"#44a838", | ||
"background_color":"#ffffff", | ||
"lang":"en", | ||
"start_url":"./", | ||
"related_applications":[ | ||
{ | ||
"platform":"webapp", | ||
"url":"https://wechaty.js.org/manifest.json" | ||
} | ||
], | ||
"icons":[ | ||
{ | ||
"src":"img/pwa/android/android-launchericon-512-512.webp", | ||
"sizes":"512x512", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/android/android-launchericon-192-192.webp", | ||
"sizes":"192x192", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/android/android-launchericon-144-144.webp", | ||
"sizes":"144x144", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/android/android-launchericon-48-48.webp", | ||
"sizes":"48x48", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/chrome/chrome-installprocess-128-128.webp", | ||
"sizes":"128x128", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/chrome/chrome-extensionmanagementpage-48-48.webp", | ||
"sizes":"48x48", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/chrome/chrome-favicon-16-16.webp", | ||
"sizes":"16x16", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/firefox/firefox-marketplace-512-512.webp", | ||
"sizes":"512x512", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/firefox/firefox-general-128-128.webp", | ||
"sizes":"128x128", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/firefox/firefox-general-48-48.webp", | ||
"sizes":"48x48", | ||
"type":"image/webp" | ||
}, | ||
{ | ||
"src":"img/pwa/firefox/firefox-general-16-16.webp", | ||
"sizes":"16x16", | ||
"type":"image/webp" | ||
} | ||
] | ||
} |
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