-
Notifications
You must be signed in to change notification settings - Fork 8
/
buildSettings.py
29 lines (24 loc) · 1.02 KB
/
buildSettings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
# Screaming Strike build settings
# Copyright (C) 2019 Yukio Nozawa <[email protected]>
# License: GPL V2.0 (See copying.txt for details)
import scorePostingAdapter
import scoreViewAdapter
# sys.stderr = open('data/stderr.txt', 'w') # uncomment this line when releasing
GAME_NAME = "Screaming Strike 2"
GAME_VERSION = 2.07
# Specify the path to the updateChecker.php, leave it blank to disable update checking
UPDATE_SERVER_ADDRESS = ""
# Specify win and mac installer remote paths, leave them blank to disable
UPDATE_PACKAGE_URL = {
"Windows": "",
"Darwin": ""
}
# Local filename to be downloaded. If the above option is specified, you must specify below, too.
UPDATE_PACKAGE_LOCAL_NAME = {
"Windows": "",
"Darwin": ""
}
# Specify the default score posting / viewing adapter to use. specify AdapterBase to disable score posting.
def getScorePostingAdapter(): return scorePostingAdapter.AdapterBase()
def getScoreViewAdapter(): return scoreViewAdapter.AdapterBase()