tis-waterfox icon

Waterfox

Silent install package for Waterfox

6.5.10-1

  • package: tis-waterfox
  • name: Waterfox
  • version: 6.5.10-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: Mozilla Public License Version 2.0
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 76.36 Mo
  • homepage : https://www.waterfox.net/

package           : tis-waterfox
version           : 6.5.10-1
architecture      : x64
section           : base
priority          : optional
name              : Waterfox
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Use this version of Waterfox if you want to benefit from the latest Web features, if you want to use all Web extensions and some Bootstrap extensions
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Utilisez cette version de Waterfox si vous souhaitez bénéficier des dernières nouveautés du Web, si vous souhaitez utiliser toutes les extensions Web et quelques extensions Bootstrap
description_pl    : Użyj tej wersji przeglądarki Waterfox, jeśli chcesz korzystać z najnowszych osiągnięć internetowych, jeśli chcesz korzystać ze wszystkich rozszerzeń internetowych i niektórych rozszerzeń Bootstrap
description_de    : Verwenden Sie diese Version von Waterfox, wenn Sie die neuesten Entwicklungen im Web nutzen möchten, wenn Sie alle Web-Erweiterungen und einige Bootstrap-Erweiterungen verwenden möchten
description_es    : Utiliza esta versión de Waterfox si quieres aprovechar los últimos avances de la Web, si quieres utilizar todas las extensiones Web y algunas extensiones Bootstrap
description_pt    : Utiliza esta versão do Waterfox se quiseres tirar partido dos últimos desenvolvimentos da Web, se quiseres utilizar todas as extensões da Web e algumas extensões Bootstrap
description_it    : Utilizzate questa versione di Waterfox se volete sfruttare gli ultimi sviluppi del Web, se volete utilizzare tutte le estensioni Web e alcune estensioni Bootstrap
description_nl    : Gebruik deze versie van Waterfox als je wilt profiteren van de nieuwste webontwikkelingen, als je alle webuitbreidingen en een aantal Bootstrap-uitbreidingen wilt gebruiken
description_ru    : Используйте эту версию Waterfox, если хотите воспользоваться последними веб-разработками, если хотите использовать все веб-расширения и некоторые расширения Bootstrap
audit_schedule    : 
editor            : 
keywords          : 
licence           : Mozilla Public License Version 2.0
homepage          : https://www.waterfox.net/
package_uuid      : 6ef38282-68c1-4845-9bad-8c1aab6d9068
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10
max_os_version    : 
icon_sha256sum    : 3e57a3b19e8c442db50144fc6ee8a3aaaabf925bb610e9f74ba4c01f4888e091
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-06-29T12:05:08.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         : uZGEfD33SI4o6JX6Sjn6LiUbWiXXiAf2+zfV+9fNiAA1T7Fz63zgi5k0/A3P4FrGRueb75c4RUTYWvlWSXkqLnNX+CRQLV8H3P3EHhGHMzS7E+IOBBvjHRsqqN+LyfgiQivuFMikMm2xuHt6aTFW+rSrF+9PN/Nf3hxkbxYM5W5NvnRbGJSO+W3zp9YnPR90px5Dwztmi4EbwH0+uQWjK02874cXBwPHabbLi1PCJjJ66LvtUvmoBfB6sQCVOqGKwVV3DIKEZ6xFJpLZprVzoNQOe+3fDOvAyuz8MICN2S3nWxEroWoUv/Zhv2yMYQMT4UAEBhZRJr0LqUhgYw35DQ==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
   "key":"Waterfox 115.15.0 (x64 en-US)",
   "name":"Waterfox (x64 en-US)",
   "version":"G6.0.18",
   "install_date":"",
   "install_location":"C:\\Program Files\\Waterfox",
   "uninstall_string":"\"C:\\Program Files\\Waterfox\\uninstall\\helper.exe\"",
   "publisher":"BrowserWorks Ltd",
   "system_component":0,
   "win64":true
  }

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls

app_name = "Waterfox"

def install():
    # Declaring local variables
    bin_name = glob.glob('Waterfox Setup *.exe')[0]
    # Installing the software
    install_exe_if_needed(bin_name,
        silentflags='/S',
        key= "",
        min_version=control.get_software_version(),
        get_version=get_version,
        timeout=600,
    )


def get_version(app_registry_dict):
    return app_registry_dict["version"].replace("G","")

def uninstall() :
    # Uninstalling the software
    for to_uninstall in installed_softwares(app_name):
        print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
        killalltasks(ensure_list(control.impacted_process))
        run(uninstall_cmd(to_uninstall["key"]))
        wait_uninstallkey_absent(to_uninstall["key"])

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

def update_package():
    # Declaring local variables
    package_updated = False

    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()

    user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0"
    data = requests.head('https://cdn1.waterfox.net/waterfox/releases/latest/windows',allow_redirects=True,proxies=proxies)
    download_url = data.url

    api_url = "https://api.github.com/repos/BrowserWorks/Waterfox/releases/latest"

    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    latest_bin = "Waterfox Setup " + releases_dict["tag_name"] + ".exe"
    version = releases_dict["tag_name"]

    # Downloading latest binaries
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies, user_agent=user_agent)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)


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



    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()


38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b4ee53f079fcefc8c46589a9817fc30388b5f91e2209e14a3b8b2c73f037d62b : WAPT/control
3e57a3b19e8c442db50144fc6ee8a3aaaabf925bb610e9f74ba4c01f4888e091 : WAPT/icon.png
885a79ebdb97da34bd2375af3f02050a2bf798cceff2c0faa2da4170f72b75c7 : Waterfox Setup 6.5.10.exe
c397b3021042e6bd3490115887e9ef286e30d454842a2ac43c891d39a888270f : luti.json
73d1804a6f4b20d372cc3e9af2dc570ab7ecf44ceda030cb4de38eee64985096 : setup.py
4a8deaf328afd3d34e9f8682c75e6beb91ce19c1ac5f682eaf15dcb98ab5d8a5 : update_package.py