Release v3 with high-res splash screen. More details in web, app manifest
- Add 512, 192 Khoj maskable icons to web app manifest for android rendering - Add id, categories etc suggested by pwabuilder - Use higher quality icon images for splash screen than what bubblewrap creates by default
@@ -47,7 +47,7 @@ def twaManifest = [
|
||||
// 'customtabs' and 'webview'.
|
||||
fallbackType: 'customtabs',
|
||||
enableSiteSettingsShortcut: 'true',
|
||||
orientation: 'default',
|
||||
orientation: 'any',
|
||||
]
|
||||
|
||||
android {
|
||||
@@ -57,8 +57,8 @@ android {
|
||||
applicationId "dev.khoj.app"
|
||||
minSdkVersion 19
|
||||
targetSdkVersion 35
|
||||
versionCode 2
|
||||
versionName "2"
|
||||
versionCode 3
|
||||
versionName "3"
|
||||
|
||||
// The name for the application
|
||||
resValue "string", "appName", twaManifest.name
|
||||
|
||||
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 217 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 348 KiB After Width: | Height: | Size: 65 KiB |
@@ -1 +1 @@
|
||||
5a05aa3ca4ff01dd9ca67642c5844a5fa3784939
|
||||
ca4c5316752147e8b87265a4b558b10917d38cbd
|
||||
|
||||
@@ -19,9 +19,8 @@
|
||||
"path": "android.keystore",
|
||||
"alias": "android"
|
||||
},
|
||||
"appVersionName": "2",
|
||||
"appVersionCode": 2,
|
||||
"shortcuts": [],
|
||||
"appVersionName": "3",
|
||||
"appVersionCode": 3,
|
||||
"generatorApp": "bubblewrap-cli",
|
||||
"webManifestUrl": "https://app.khoj.dev/static/khoj.webmanifest",
|
||||
"fallbackType": "customtabs",
|
||||
@@ -38,7 +37,7 @@
|
||||
"isMetaQuest": false,
|
||||
"fullScopeUrl": "https://app.khoj.dev/",
|
||||
"minSdkVersion": 19,
|
||||
"orientation": "default",
|
||||
"orientation": "any",
|
||||
"fingerprints": [
|
||||
{
|
||||
"name": "signing",
|
||||
@@ -51,5 +50,5 @@
|
||||
],
|
||||
"additionalTrustedOrigins": [],
|
||||
"retainedBundles": [],
|
||||
"appVersion": "2"
|
||||
"appVersion": "3"
|
||||
}
|
||||
|
||||
BIN
src/interface/web/public/assets/icons/khoj_lantern_192x192.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
src/interface/web/public/assets/icons/khoj_lantern_512x512.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
@@ -1,12 +1,18 @@
|
||||
{
|
||||
"name": "Khoj",
|
||||
"id": "dev.khoj.app",
|
||||
"name": "Khoj AI",
|
||||
"short_name": "Khoj",
|
||||
"display": "standalone",
|
||||
"start_url": "/",
|
||||
"scope": "/",
|
||||
"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.",
|
||||
"categories": ["productivity", "utilities", "personalization", "education"],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"orientation": "any",
|
||||
"launch_handler": {
|
||||
"client_mode": ["navigate-existing", "auto"]
|
||||
},
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/assets/icons/khoj_lantern_128x128.png",
|
||||
@@ -17,6 +23,30 @@
|
||||
"src": "/static/assets/icons/khoj_lantern_256x256.png",
|
||||
"sizes": "256x256",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/assets/icons/khoj_lantern_192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/static/assets/icons/khoj_lantern_192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "/static/assets/icons/khoj_lantern_512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/static/assets/icons/khoj_lantern_512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"screenshots": [
|
||||
|
||||