-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Add iPadOS 'Add to Home Screen' support #3546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "name": "T3 Code", | ||
| "short_name": "T3 Code", | ||
| "description": "The open-source control plane for coding agents.", | ||
| "start_url": "/", | ||
| "display": "standalone", | ||
| "background_color": "#09090b", | ||
| "theme_color": "#09090b", | ||
| "icons": [ | ||
| { | ||
| "src": "/favicon-16x16.png", | ||
| "sizes": "16x16", | ||
| "type": "image/png" | ||
| }, | ||
| { | ||
| "src": "/favicon-32x32.png", | ||
| "sizes": "32x32", | ||
| "type": "image/png" | ||
| }, | ||
| { | ||
| "src": "/apple-touch-icon.png", | ||
| "sizes": "180x180", | ||
| "type": "image/png" | ||
| }, | ||
| { | ||
| "src": "/icon.png", | ||
| "sizes": "512x512", | ||
| "type": "image/png" | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,7 +15,10 @@ const { | |
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta | ||
| name="viewport" | ||
| content="width=device-width, initial-scale=1.0, viewport-fit=cover" | ||
| /> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bottom safe area not handledMedium Severity Adding Additional Locations (1)Reviewed by Cursor Bugbot for commit 7aed8a2. Configure here. |
||
| <meta name="description" content={description} /> | ||
| <link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
|
|
@@ -27,6 +30,10 @@ const { | |
| <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" /> | ||
| <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" /> | ||
| <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> | ||
| <link rel="manifest" href="/manifest.json" /> | ||
|
cursor[bot] marked this conversation as resolved.
|
||
| <meta name="apple-mobile-web-app-capable" content="yes" /> | ||
| <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> | ||
| <meta name="apple-mobile-web-app-title" content="T3 Code" /> | ||
| <title>{title}</title> | ||
| </head> | ||
| <body> | ||
|
|
@@ -285,6 +292,7 @@ const { | |
| .nav { | ||
| position: sticky; | ||
| top: 0; | ||
| padding-top: env(safe-area-inset-top, 0px); | ||
| z-index: 50; | ||
| backdrop-filter: blur(18px); | ||
| -webkit-backdrop-filter: blur(18px); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "name": "T3 Code", | ||
| "short_name": "T3 Code", | ||
| "description": "The open-source control plane for coding agents.", | ||
| "start_url": "/", | ||
| "display": "standalone", | ||
| "background_color": "#161616", | ||
| "theme_color": "#161616", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Manifest ignores light themeMedium Severity The Reviewed by Cursor Bugbot for commit 05f07b6. Configure here. |
||
| "icons": [ | ||
| { | ||
| "src": "/favicon-16x16.png", | ||
| "sizes": "16x16", | ||
| "type": "image/png" | ||
| }, | ||
| { | ||
| "src": "/favicon-32x32.png", | ||
| "sizes": "32x32", | ||
| "type": "image/png" | ||
| }, | ||
| { | ||
| "src": "/apple-touch-icon.png", | ||
| "sizes": "180x180", | ||
| "type": "image/png" | ||
| }, | ||
| { | ||
| "src": "/icon.png", | ||
| "sizes": "512x512", | ||
| "type": "image/png" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 512 icon skips channel brandingMedium Severity The PWA manifest's 512x512 icon, Reviewed by Cursor Bugbot for commit 05f07b6. Configure here. |
||
| } | ||
| ] | ||
| } | ||


Uh oh!
There was an error while loading. Please reload this page.