Add Prime95 to the Windows Kit

Resolved issue #133
This commit is contained in:
2Shirt 2021-10-14 18:36:40 -06:00
parent ba1ff95b21
commit 1b351859b8
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
3 changed files with 13 additions and 0 deletions

View file

@ -192,6 +192,11 @@ LAUNCHERS = {
r')',
],
},
'Prime95': {
'L_TYPE': 'Executable',
'L_PATH': 'Prime95',
'L_ITEM': 'prime95.exe',
},
'Snappy Driver Installer Origin': {
'L_TYPE': 'Executable',
'L_PATH': 'SDIO',

View file

@ -61,6 +61,7 @@ SOURCES = {
'Neutron': 'http://keir.net/download/neutron.zip',
'Notepad++': 'https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.1.5/npp.8.1.5.portable.minimalist.7z',
'OpenShell': 'https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.160/OpenShellSetup_4_4_160.exe',
'Prime95': 'http://www.mersenne.org/ftp_root/gimps/p95v303b6.win64.zip',
'PuTTY': 'https://the.earth.li/~sgtatham/putty/latest/w32/putty.zip',
'SDIO Torrent': 'http://snappy-driver-installer.org/downloads/SDIO_Update.torrent',
'ShutUp10': 'https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe',

View file

@ -280,6 +280,13 @@ def download_openshell():
download_file(out_path, SOURCES[name])
def download_prime95():
"""Download Prime95."""
archive = download_to_temp('prime95.zip', SOURCES['Prime95'])
extract_to_bin(archive, 'Prime95')
delete_from_temp('prime95.zip')
def download_putty():
"""Download PuTTY."""
archive = download_to_temp('putty.zip', SOURCES['PuTTY'])