2012-12-30 20:02:19 +00:00
|
|
|
#!/usr/bin/env python3
|
2014-11-26 19:01:20 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2012-12-31 18:15:30 +00:00
|
|
|
import json
|
2023-07-24 23:22:54 +00:00
|
|
|
import os.path
|
|
|
|
import sys
|
2012-12-30 20:02:19 +00:00
|
|
|
|
2023-07-24 23:22:54 +00: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'))
|
2012-12-31 18:15:30 +00:00
|
|
|
version = versions_info['latest']
|
2018-04-24 19:14:27 +00:00
|
|
|
version_dict = versions_info['versions'][version]
|
2012-12-30 20:02:19 +00:00
|
|
|
|
|
|
|
# Read template page
|
2023-07-24 23:22:54 +00:00
|
|
|
template = read_file('download.html.in')
|
2012-12-30 20:02:19 +00:00
|
|
|
|
|
|
|
template = template.replace('@PROGRAM_VERSION@', version)
|
2018-04-24 19:14:27 +00: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-24 23:22:54 +00:00
|
|
|
|
|
|
|
write_file('download.html', template)
|