-
-
Notifications
You must be signed in to change notification settings - Fork 992
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve PWA install experience for Khoj on Desktop, Mobile
- Resolve PWA issues thrown by Chrome/Edge - Add screenshot samples showcasing remember, browse and draw features - This can provide a richer app store like experience when installing Khoj PWA on Mobile or Desktop - Add wide and narrow screenshots to show Mobile vs Desktop UX - Add higher resolution favicon for PWA - Use single web manifest instead of separate ones for Chat, Search - Update manifest description with more details about Khoj features
- Loading branch information
Showing
10 changed files
with
43 additions
and
24 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+262 KB
src/khoj/interface/web/assets/samples/desktop-remember-plan-sample.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,51 @@ | ||
{ | ||
"name": "Khoj", | ||
"short_name": "Khoj", | ||
"description": "An AI search assistant for your digital brain", | ||
"display": "standalone", | ||
"start_url": "/", | ||
"description": "The open, personal AI for your digital brain. You can ask Khoj to draft a message, paint your imagination, find information on the internet and even answer questions from your documents.", | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"icons": [ | ||
{ | ||
"src": "/static/assets/icons/favicon-128x128.png", | ||
"sizes": "128x128", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/static/assets/icons/favicon-256x256.png", | ||
"sizes": "256x256", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"display": "standalone", | ||
"start_url": "/" | ||
"screenshots": [ | ||
{ | ||
"src": "/static/assets/samples/phone-remember-plan-sample.png", | ||
"sizes": "419x900", | ||
"type": "image/png", | ||
"form_factor": "narrow", | ||
"label": "Remember and Plan" | ||
}, | ||
{ | ||
"src": "/static/assets/samples/phone-browse-draw-sample.png", | ||
"sizes": "419x900", | ||
"type": "image/png", | ||
"form_factor": "narrow", | ||
"label": "Browse and Draw" | ||
}, | ||
{ | ||
"src": "/static/assets/samples/desktop-remember-plan-sample.png", | ||
"sizes": "1260x742", | ||
"type": "image/png", | ||
"form_factor": "wide", | ||
"label": "Remember and Plan" | ||
}, | ||
{ | ||
"src": "/static/assets/samples/desktop-browse-draw-sample.png", | ||
"sizes": "1260x742", | ||
"type": "image/png", | ||
"form_factor": "wide", | ||
"label": "Browse and Draw" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.