tis-fancontrol icon

FanControl

Silent install package for FanControl

237-1

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-fancontrol
  • name: FanControl
  • version: 237-1
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
  • editor: Remi Mercier Software Inc
  • licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: FanControl
  • architecture: x64
  • signature_date:
  • size: 15.14 Mo
  • installed_size: 49.74 Mo
  • homepage : https://getfancontrol.com/
  • depends:

package           : tis-fancontrol
version           : 237-1
architecture      : x64
section           : base
priority          : optional
name              : FanControl
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT
description       : FanControl is a program that controls speed and performance of all PC fans
depends           : tis-dotnet8
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 49739937
impacted_process  : FanControl
description_fr    : FanControl est un programme qui contrôle la vitesse et les performances de tous les ventilateurs de PC
description_pl    : FanControl to program kontrolujący prędkość i wydajność wszystkich wentylatorów komputera PC
description_de    : FanControl ist ein Programm, das die Geschwindigkeit und Leistung aller PC-Lüfter kontrolliert
description_es    : FanControl es un programa que controla la velocidad y el rendimiento de todos los ventiladores del PC
description_pt    : O FanControl é um programa que controla a velocidade e o desempenho de todas as ventoinhas do PC
description_it    : FanControl è un programma che controlla la velocità e le prestazioni di tutte le ventole del PC
description_nl    : FanControl is een programma dat de snelheid en prestaties van alle pc-ventilatoren regelt
description_ru    : FanControl - это программа, которая контролирует скорость и производительность всех вентиляторов ПК
audit_schedule    : 
editor            : Remi Mercier Software Inc
keywords          : performance,fans
licence           : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage          : https://getfancontrol.com/
package_uuid      : b160eff2-2711-4144-9803-ad2ea5640136
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/Rem0o/FanControl.Releases/releases/tag/V193
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 28199c0fe62855ce3a7b5ef43ff5f7bd802724d9cb8a5db35b2a67d2b73bffec
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-09-16T14:22:25.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : gcK8g/uK0FnlgNQUinMGnwWqYUx1gQipewhv+xfuEywG0TJDbm3eqNPU9MT1S5unI3b3tVqP1X3TO8sx2eDwJwwddcwcjWlBhwxgubbPqP/A2mwrCVRBI6kvFGa5H73Hl6306aEQ6JE0zAKjbJsLAJSrr/agmeXehnxjBV36RDp+lxCpe9Kd8gK4pbmGvwoJnZtytaw1t+N88sm4SGatKIu/vh40V+tesM/KKFa5/blc5j4kbtZyGMmJswDsIpAYqLo6wApAkmEVDZztbkiro5BFNUkSv2bTF8tGxn+OwypKZNMT5+D1LJ4x2UHKXgXdH4KNeEkZENwzaWuZVXgBsg==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    bin_name = glob.glob("FanControl*.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/SILENT",
        key="{141A88F8-31AC-49EA-B428-2BE8C19DED83}_is1",
        min_version=control.get_software_version(),
    )

# -*- coding: utf-8 -*-
from setuphelpers import *
import re


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    update_dict = {"windows": ".exe", "debian_based": ".deb", "redhat_based": ".rpm", "darwin": ".dmg"}
    api_url = "https://api.github.com/repos/Rem0o/FanControl.Releases/releases/latest"

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    exe_found = False  # Flag pour indiquer la découverte d'un fichier .exe
    # version = json_loads["tag_name"].replace("v", "").replace(".windows", "")
    for release in releases_dict:
        if exe_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".exe") and update_dict[control.target_os] and "8_0" in asset["browser_download_url"]:
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["name"].replace("V", "")
                exe_found = True  # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
                break

    # Deleting binaries
    for f in glob.glob("*.exe"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_download)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)    
        wget(url_download, latest_bin, proxies=proxies)
        control.set_software_version(version)
        control.save_control_to_wapt()            
    else:
        print("Binary is present: %s" % latest_bin)


f530ad02c42e296d85c93d6ab655d5d783ccd496c85d8a51862deb962c4f979d : FanControl_237_net_8_0_Installer.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
36a6601828d2de86fcd7e5768b0566dde5f368fbadbe8e3ce97e3f28f3aa18a4 : WAPT/control
28199c0fe62855ce3a7b5ef43ff5f7bd802724d9cb8a5db35b2a67d2b73bffec : WAPT/icon.png
96b3d8db57fc35932f4d2f19107bfcdeac763d24d5b143d2c400d8680642be37 : luti.json
2018033dcf49d21e58a9113c8f2d7cf08f3e484d5c31c62b713c738762b45b86 : setup.py
44dab5a5d77306d89264be1e2cf1cec110cb88ffa90fe89483cf47d2ffc59a32 : update_package.py