2 //gamestick hardware IDs that may use this server
3 $GLOBALS['whitelistedHardwareIds'] = [
4 'ac:db:da:09:18:5c',//cweiske
8 'dsn' => 'mysql:host=localhost;dbname=pjgsapi',
9 'username' => 'pjgsapi',
10 'password' => 'pjgsapi',
13 $GLOBALS['verificationCodePrefix'] = '';
15 //offer a certain firmware version, even for downgrading
16 //$GLOBALS['firmwareVersion'] = '0.9.2071';
18 //popular games. first in array means most popular
19 $GLOBALS['popular'] = [
22 //file format: one line = one package name
23 $GLOBALS['popuplarTxtFile'] = __DIR__ . '/cache/popular.txt';
25 //featured games in main menu
26 // number is image height: 6, 4, 3, 2
27 $GLOBALS['featured'] = [
29 'de.eiswuxe.blookid' => 6,
32 'de.eiswuxe.blookid' => 6,
35 'de.eiswuxe.blookid' => 6,
38 'de.eiswuxe.blookid' => 6,
41 $GLOBALS['featuredFile'] = __DIR__ . '/cache/featured.json';
43 //if the server/network is too fast for the gamestick
44 // and the gamestick produces race condition errors
45 // only needed when hosting a local server
46 // https://cweiske.de/tagebuch/gamestick-black-screen.htm#race
47 $GLOBALS['toofast'] = false;