Overview
Comment:Fix manifest, oops
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable | 1.1.15
Files: files | file ages | folders
SHA3-256: 13e573e219567d25d12ef7603f7486dc373632d68aee2d299a8b1cbaec7a587a
User & Date: bohwaz on 2021-11-23 00:08:18
Other Links: manifest | tags
Context
2021-11-23
00:29
Remove Multiviews disabling (bug lautre.net) check-in: e130e3da01 user: bohwaz tags: trunk, stable, 1.1.15
00:08
Fix manifest, oops check-in: 13e573e219 user: bohwaz tags: trunk, stable, 1.1.15
00:06
Fix last minute issue with dialogs styling check-in: 1453ab27a6 user: bohwaz tags: trunk, stable, 1.1.15
Changes

Modified src/www/admin/manifest.php from [7ded265e42] to [4bf7b7e222].

11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
	'name'             => $config->nom_asso,
	'start_url'        => ADMIN_URL,
	'icons'            => [
		[
			'sizes' => '16x16',
			'src'   => WWW_URL . 'favicon.png',
			'type'  => 'image/png',
			'purpose' => 'maskable',
		],
		[
			'sizes' => '256x256',
			'src'   => WWW_URL . 'logo.png',
			'type'  => 'image/png',
			'purpose' => 'maskable',
		],
	],
];

header('Content-Type: text/json; charset=utf-8');
echo json_encode($manifest, JSON_PRETTY_PRINT);







|





|






11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
	'name'             => $config->nom_asso,
	'start_url'        => ADMIN_URL,
	'icons'            => [
		[
			'sizes' => '16x16',
			'src'   => WWW_URL . 'favicon.png',
			'type'  => 'image/png',
			'purpose' => 'any maskable',
		],
		[
			'sizes' => '256x256',
			'src'   => WWW_URL . 'logo.png',
			'type'  => 'image/png',
			'purpose' => 'any maskable',
		],
	],
];

header('Content-Type: text/json; charset=utf-8');
echo json_encode($manifest, JSON_PRETTY_PRINT);