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
|
2023-07-25 08:22:54 +09:00
|
|
|
import os.path
|
|
|
|
import sys
|
2012-12-31 05:02:19 +09:00
|
|
|
|
2023-07-25 08:22:54 +09:00
|
|
|
dirn = os.path.dirname
|
|
|
|
|
|
|
|
sys.path.insert(0, dirn(dirn((os.path.abspath(__file__)))))
|
|
|
|
|
|
|
|
from utils import read_file, write_file
|
|
|
|
|
|
|
|
versions_info = json.loads(read_file('update/versions.json'))
|
2013-01-01 03:15:30 +09:00
|
|
|
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
|
2023-07-25 08:22:54 +09:00
|
|
|
template = read_file('download.html.in')
|
2012-12-31 05:02:19 +09:00
|
|
|
|
|
|
|
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])
|
2023-07-25 08:22:54 +09:00
|
|
|
|
|
|
|
write_file('download.html', template)
|