Correction des différents bugs
This commit is contained in:
@@ -1,78 +1,84 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'name' => 'MyX',
|
||||
'manifest' => [
|
||||
'name' => env('APP_NAME', 'MyX'),
|
||||
'short_name' => 'MyX',
|
||||
'start_url' => '/',
|
||||
'background_color' => '#00b4ff',
|
||||
'theme_color' => '#00b4ff',
|
||||
'display' => 'standalone',
|
||||
'orientation'=> 'any',
|
||||
'status_bar'=> '#00b4ff',
|
||||
'icons' => [
|
||||
'72x72' => [
|
||||
'path' => '/images/icons/icon-72x72.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'96x96' => [
|
||||
'path' => '/images/icons/icon-96x96.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'128x128' => [
|
||||
'path' => '/images/icons/icon-128x128.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'144x144' => [
|
||||
'path' => '/images/icons/icon-144x144.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'152x152' => [
|
||||
'path' => '/images/icons/icon-152x152.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'192x192' => [
|
||||
'path' => '/images/icons/icon-192x192.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'384x384' => [
|
||||
'path' => '/images/icons/icon-384x384.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
'512x512' => [
|
||||
'path' => '/images/icons/icon-512x512.png',
|
||||
'purpose' => 'any'
|
||||
],
|
||||
"name" => "MyX",
|
||||
"short_name" => "MyX",
|
||||
"start_url" => "https://myx.ovh/",
|
||||
"display" => "standalone",
|
||||
"theme_color" => "#00b4ff",
|
||||
"background_color" => "#00b4ff",
|
||||
"orientation" => "any",
|
||||
"status_bar" => "#00b4ff",
|
||||
"splash" => [
|
||||
"640x1136" => "/images/icons/splash-640x1136.png",
|
||||
"750x1334" => "/images/icons/splash-750x1334.png",
|
||||
"828x1792" => "/images/icons/splash-828x1792.png",
|
||||
"1125x2436" => "/images/icons/splash-1125x2436.png",
|
||||
"1242x2208" => "/images/icons/splash-1242x2208.png",
|
||||
"1242x2688" => "/images/icons/splash-1242x2688.png",
|
||||
"1536x2048" => "/images/icons/splash-1536x2048.png",
|
||||
"1668x2224" => "/images/icons/splash-1668x2224.png",
|
||||
"1668x2388" => "/images/icons/splash-1668x2388.png",
|
||||
"2048x2732" => "/images/icons/splash-2048x2732.png"
|
||||
],
|
||||
"icons" => [
|
||||
[
|
||||
"src" => "/images/icons/icon-72x72.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "72x72",
|
||||
"purpose" => "any"
|
||||
],
|
||||
'splash' => [
|
||||
'640x1136' => '/images/icons/splash-640x1136.png',
|
||||
'750x1334' => '/images/icons/splash-750x1334.png',
|
||||
'828x1792' => '/images/icons/splash-828x1792.png',
|
||||
'1125x2436' => '/images/icons/splash-1125x2436.png',
|
||||
'1242x2208' => '/images/icons/splash-1242x2208.png',
|
||||
'1242x2688' => '/images/icons/splash-1242x2688.png',
|
||||
'1536x2048' => '/images/icons/splash-1536x2048.png',
|
||||
'1668x2224' => '/images/icons/splash-1668x2224.png',
|
||||
'1668x2388' => '/images/icons/splash-1668x2388.png',
|
||||
'2048x2732' => '/images/icons/splash-2048x2732.png',
|
||||
[
|
||||
"src" => "/images/icons/icon-96x96.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "96x96",
|
||||
"purpose" => "any"
|
||||
],
|
||||
'shortcuts' => [
|
||||
[
|
||||
'name' => 'Shortcut Link 1',
|
||||
'description' => 'Shortcut Link 1 Description',
|
||||
'url' => '/shortcutlink1',
|
||||
'icons' => [
|
||||
"src" => "/images/icons/icon-72x72.png",
|
||||
"purpose" => "any"
|
||||
]
|
||||
],
|
||||
[
|
||||
'name' => 'Shortcut Link 2',
|
||||
'description' => 'Shortcut Link 2 Description',
|
||||
'url' => '/shortcutlink2'
|
||||
]
|
||||
[
|
||||
"src" => "/images/icons/icon-128x128.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "128x128",
|
||||
"purpose" => "any"
|
||||
],
|
||||
'custom' => []
|
||||
[
|
||||
"src" => "/images/icons/icon-144x144.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "144x144",
|
||||
"purpose" => "any"
|
||||
],
|
||||
[
|
||||
"src" => "/images/icons/icon-152x152.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "152x152",
|
||||
"purpose" => "any"
|
||||
],
|
||||
[
|
||||
"src" => "/images/icons/icon-192x192.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "192x192",
|
||||
"purpose" => "any"
|
||||
],
|
||||
[
|
||||
"src" => "/images/icons/icon-384x384.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "384x384",
|
||||
"purpose" => "any"
|
||||
],
|
||||
[
|
||||
"src" => "/images/icons/icon-512x512.png",
|
||||
"type" => "image/png",
|
||||
"sizes" => "512x512",
|
||||
"purpose" => "any"
|
||||
]
|
||||
],
|
||||
"id" => "MyX",
|
||||
"description" => "Le futur commence ici",
|
||||
"dir" => "auto",
|
||||
"scope" => "https://myx.ovh",
|
||||
"lang" => "fr",
|
||||
"categories" => [
|
||||
"entertainment",
|
||||
"lifestyle",
|
||||
"productivity"
|
||||
]
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user