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