mirror of
https://github.com/A-Star100/simpliplay-desktop.git
synced 2025-09-17 22:29:38 +00:00
12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
// src/constants.js
|
|
const path = require('path');
|
|
const os = require('os');
|
|
|
|
module.exports = {
|
|
APP_CONSTANTS: {
|
|
VERSION: '2.0.4.4',
|
|
GPU_ACCEL: 'enabled',
|
|
SNAPSHOTS_DIR: path.join(os.homedir(), 'simpliplay-snapshots'),
|
|
BAD_FILE_EXTENSIONS: ['.exe', '.bat', '.cmd', '.sh', '.msi', '.com', '.vbs', '.ps1', '.jar', '.scr']
|
|
}
|
|
}; |