ignore test, firmware and tofu files
[gamestick-pjgsapi.git] / config.php.dist
1 <?php
2 //gamestick hardware IDs that may use this server
3 $GLOBALS['whitelistedHardwareIds'] = [
4     'ac:db:da:09:18:5c',//cweiske
5 ];
6
7 $GLOBALS['verificationCodePrefix'] = '';
8
9 //offer a certain firmware version, even for downgrading
10 //$GLOBALS['firmwareVersion'] = '0.9.2071';
11
12 //popular games. first in array means most popular
13 $GLOBALS['popular'] = [
14     'de.eiswuxe.blookid'
15 ];
16 //file format: one line = one package name
17 $GLOBALS['popuplarTxtFile'] = __DIR__ . '/cache/popular.txt';
18
19 //featured games in main menu
20 // number is image height: 6, 4, 3, 2
21 $GLOBALS['featured'] = [
22     3 => [
23         'de.eiswuxe.blookid' => 6,
24     ],
25     7 => [
26         'de.eiswuxe.blookid' => 6,
27     ],
28     12 => [
29         'de.eiswuxe.blookid' => 6,
30     ],
31     17 => [
32         'de.eiswuxe.blookid' => 6,
33     ],
34 ];
35 $GLOBALS['featuredFile'] = __DIR__ . '/cache/featured.json';