tis-floorp icon

Floorp

Silent install package for Floorp

11.29.0-1

  • package: tis-floorp
  • name: Floorp
  • version: 11.29.0-1
  • categories: Internet
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: opensource_free,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 89.34 Mo
  • homepage : https://floorp.app/

package           : tis-floorp
version           : 11.29.0-1
architecture      : x64
section           : base
priority          : optional
name              : Floorp
categories        : Internet
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : Floorp is based on Firefox and was built in Japan. It is a new browser with excellent privacy and flexibility
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Floorp est construit sur Firefox et a été construit au Japon et est un nouveau navigateur avec une excellente confidentialité et flexibilité
description_pl    : Floorp jest oparty na Firefoksie i został zbudowany w Japonii. Jest to nowa przeglądarka o doskonałej prywatności i elastyczności
description_de    : Floorp ist auf Firefox aufgebaut und wurde in Japan gebaut und ist ein neuer Browser mit ausgezeichneter Privatsphäre und Flexibilität
description_es    : Floorp, basado en Firefox y creado en Japón, es un nuevo navegador con una excelente privacidad y flexibilidad
description_pt    : O Floorp é baseado no Firefox e foi criado no Japão. É um novo navegador com excelente privacidade e flexibilidade
description_it    : Floorp è basato su Firefox ed è stato costruito in Giappone. È un nuovo browser con un'eccellente privacy e flessibilità
description_nl    : Floorp is gebaseerd op Firefox en is gebouwd in Japan. Het is een nieuwe browser met uitstekende privacy en flexibiliteit
description_ru    : Floorp основан на Firefox и создан в Японии. Это новый браузер с отличной конфиденциальностью и гибкостью
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_private
homepage          : https://floorp.app/
package_uuid      : 6d0d1657-fc3c-4cd0-b268-f803a8fead9f
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : a02d6f6074edffb8beccab2ac7d32d024c67eac6cb4927d447b36adc9a0e86d5
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-30T07:01:47.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         : hYi3+cr6ZREDNOXWLWFaZha7KlKyLx+JYx1dcxfXpwSNL/9EQ8AlOkPgaa1fClnUelThWXIILoolvjhr4PC+23WFEDTw+AIlYXxa28yQuRj4Adfnga5eU6Y/bAW9HGO+lsA4jzZtzPwN9URwJrufapM/BgEEr4rSq0hjywQhKwIJtAUGd1GZ2sCrIJ93hke4NFAnXbyqvvZ9kOFopGXqmj5LadrgF9XKETuHhdGexH3rYSdy2H5xuHN/PwzlsdsHKCRFM5M0Q6FXU5zeMTg2KSquohrn1Q1RhF4+QQ08BiRo4at3FxlCZO+ew0c1JQt+tPpOhEBqpJCxIvrNUmvavQ==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
   "key":"Ablaze Floorp 11.17.8 (x64 en-US)",
   "name":"Ablaze Floorp (x64 en-US)",
   "version":"11.17.8",
   "install_date":"",
   "install_location":"C:\\Program Files\\Ablaze Floorp",
   "uninstall_string":"\"C:\\Program Files\\Ablaze Floorp\\uninstall\\helper.exe\"",
   "publisher":"Mozilla",
   "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


def install():
    # Declaring local variables
    version = control.get_software_version()
    # Construire la clé dynamique
    key = f"Ablaze Floorp {version} (x64 en-US)"

    # Uninstalling older versions of the software
    for to_uninstall in installed_softwares(name="Ablaze Floorp"):
        if Version(to_uninstall["version"]) < Version(control.get_software_version()):
            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"])
            if isdir(to_uninstall["install_location"]):
                remove_tree(to_uninstall["install_location"])

    # Installing the software

    install_exe_if_needed("floorp-win64.installer.exe", silentflags="/S", name="Ablaze Floorp", min_version=control.get_software_version(),get_version=get_soft_version
    
    )

def get_soft_version(key):
    return key["version"].split("@")[-1]

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

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


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
    dict_arch = {
        "x64" :"-win64.installer.exe"
    }
    git_repo = "Floorp-Projects/Floorp"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo   
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith('.exe') and dict_arch[control.architecture] in download["browser_download_url"]:
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.exe'):
        if f != filename:
            remove_file(f)

   
    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
86a592aedbd7f85afb0e6345839a7bb1ba429b9893179349190ef8b3580d2974 : WAPT/control
a02d6f6074edffb8beccab2ac7d32d024c67eac6cb4927d447b36adc9a0e86d5 : WAPT/icon.png
28a3e58fe59b92dcdb6106dc1066378a99c03df694dcae1d5da67ec81eaf306a : floorp-win64.installer.exe
c382615c9e3e716527af6ea46c489fe71c19921e7c5093788782d1215f6c98cc : luti.json
7de00492b8fc77a4ee8c56621bcfd1647a41b58539f975f6addaaf4b0f49e1fc : setup.py
b4db08da2a02ae44c0373f3b408f6d1546aa0102db4163fbd827fcca113e9b3b : update_package.py