mirror of
https://github.com/yuukiwww/taiko-web.git
synced 2024-10-22 17:05:49 +02:00
add query string to view requests
This commit is contained in:
parent
ca90d4aea6
commit
1806fb338e
13
app.py
13
app.py
@ -44,6 +44,7 @@ def get_config():
|
||||
if not config.get('assets_baseurl'):
|
||||
config['assets_baseurl'] = ''.join([request.host_url, 'assets']) + '/'
|
||||
|
||||
config['_game_version'] = get_version()
|
||||
return config
|
||||
|
||||
|
||||
@ -118,6 +119,14 @@ def get_tja_preview(tja):
|
||||
return 0
|
||||
|
||||
|
||||
def get_version():
|
||||
version = None
|
||||
if os.path.isfile('version.json'):
|
||||
version = json.load(open('version.json', 'r'))
|
||||
|
||||
return version
|
||||
|
||||
|
||||
@app.teardown_appcontext
|
||||
def close_connection(exception):
|
||||
db = getattr(g, '_database', None)
|
||||
@ -127,9 +136,7 @@ def close_connection(exception):
|
||||
|
||||
@app.route('/')
|
||||
def route_index():
|
||||
version = None
|
||||
if os.path.isfile('version.json'):
|
||||
version = json.load(open('version.json', 'r'))
|
||||
version = get_version()
|
||||
return render_template('index.html', version=version, config=get_config())
|
||||
|
||||
|
||||
|
@ -84,7 +84,8 @@ class Loader{
|
||||
|
||||
assets.views.forEach(name => {
|
||||
var id = this.getFilename(name)
|
||||
this.promises.push(this.ajax("src/views/" + name).then(page => {
|
||||
var qs = gameConfig._game_version ? '?' + gameConfig._game_version.commit_short : '?'
|
||||
this.promises.push(this.ajax("src/views/" + name + qs).then(page => {
|
||||
assets.pages[id] = page
|
||||
}))
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user