2012-12-31 05:02:19 +09:00
|
|
|
#!/usr/bin/env python3
|
2014-11-27 04:01:20 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-01-01 03:15:30 +09:00
|
|
|
import json
|
2012-12-31 05:02:19 +09:00
|
|
|
|
2013-01-01 03:15:30 +09:00
|
|
|
versions_info = json.load(open('update/versions.json'))
|
|
|
|
version = versions_info['latest']
|
2018-04-25 04:14:27 +09:00
|
|
|
version_dict = versions_info['versions'][version]
|
2012-12-31 05:02:19 +09:00
|
|
|
|
|
|
|
# Read template page
|
|
|
|
with open('download.html.in', 'r', encoding='utf-8') as tmplf:
|
|
|
|
template = tmplf.read()
|
|
|
|
|
|
|
|
template = template.replace('@PROGRAM_VERSION@', version)
|
2018-04-25 04:14:27 +09:00
|
|
|
template = template.replace('@PROGRAM_URL@', version_dict['bin'][0])
|
|
|
|
template = template.replace('@PROGRAM_SHA256SUM@', version_dict['bin'][1])
|
|
|
|
template = template.replace('@EXE_URL@', version_dict['exe'][0])
|
|
|
|
template = template.replace('@EXE_SHA256SUM@', version_dict['exe'][1])
|
|
|
|
template = template.replace('@TAR_URL@', version_dict['tar'][0])
|
|
|
|
template = template.replace('@TAR_SHA256SUM@', version_dict['tar'][1])
|
2012-12-31 05:02:19 +09:00
|
|
|
with open('download.html', 'w', encoding='utf-8') as dlf:
|
|
|
|
dlf.write(template)
|