tis-waterfox icon

Waterfox

Paquet d’installation silencieuse pour Waterfox

6.5.9-1

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

package           : tis-waterfox
version           : 6.5.9-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      : abca2127-c98a-4e61-ac33-d77d1b269a7b
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-05-27T19:00:18.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         : X+ygNcgfQeYfqOgtb9V5rYp0KEp2KoVdjTklyHU7XVrP+CWy73+qLrklolmktuSQIMiJpRWzxVJ7bytN/187LRmb3yZn5FMJkab38bSWx8n6qbXHK5uB0y6yoIihErWT1O4/cqrBVdxknfz6xokzS6QC6JxUHkwmyD6vOJsMwBb2K0lVr55+GEARyXwFSc5nznf/MCH/OU9LAzbmxw567Cw2E+I/4sC/dK0wFiv7rCGIyseldPRVs2B6qItNk/mp0GU9/Npo5FMPGkSZe+zJ0+EQ1yESbh1XMv/rjRJkIiPeC8Vp7bYk0SAXDbjnHWRjiefckYUnhREGcxpaVS1W7A==

# -*- 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
6d669a614f2e0e1fef9bd0056d1652d3d6aecbebd206972a5b8cafb2df98bbc6 : WAPT/control
3e57a3b19e8c442db50144fc6ee8a3aaaabf925bb610e9f74ba4c01f4888e091 : WAPT/icon.png
04be3d96a2b9a19cf2f185721535382aeadccd58d684aeb8e634a16eb28ecb23 : Waterfox Setup 6.5.9.exe
62a77d0347d02f3d6d1d2d8f86a215c952d33fd1a91d36b83d5b934afd7dd85f : luti.json
73d1804a6f4b20d372cc3e9af2dc570ab7ecf44ceda030cb4de38eee64985096 : setup.py
4a8deaf328afd3d34e9f8682c75e6beb91ce19c1ac5f682eaf15dcb98ab5d8a5 : update_package.py