- package: tis-ferdium
- name: Ferdium
- version: 7.0.1-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Ferdium Contributors
- licence: opensource_free,cpe:/a:apache:license_2.0,wapt_public
- locale: all
- target_os: windows
- impacted_process: Ferdium
- architecture: x64
- signature_date:
- size: 109.10 Mo
- installed_size: 463.31 Mo
- homepage : https://ferdium.org/
package : tis-ferdium
version : 7.0.1-1
architecture : x64
section : base
priority : optional
name : Ferdium
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Ferdium is a desktop application that brings all your applications and services together in one place
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 463307155
impacted_process : Ferdium
description_fr : Ferdium est une application de bureau qui rassemble toutes vos applications et tous vos services en un seul endroit
description_pl : Ferdium to aplikacja desktopowa, która łączy wszystkie aplikacje i usługi w jednym miejscu
description_de : Ferdium ist eine Desktop-Anwendung, die alle Ihre Anwendungen und Dienste an einem Ort zusammenführt
description_es : Ferdium es una aplicación de escritorio que reúne todas tus aplicaciones y servicios en un solo lugar
description_pt : Ferdium é uma aplicação de ambiente de trabalho que reúne todas as suas aplicações e serviços num único local
description_it : Ferdium è un'applicazione desktop che riunisce tutte le applicazioni e i servizi in un unico luogo
description_nl : Ferdium is een desktopapplicatie die al je applicaties en diensten samenbrengt op één plek
description_ru : Ferdium - это настольное приложение, которое объединяет все ваши приложения и сервисы в одном месте
audit_schedule :
editor : Ferdium Contributors
keywords : applications,services
licence : opensource_free,cpe:/a:apache:license_2.0,wapt_public
homepage : https://ferdium.org/
package_uuid : 74c43947-b3ba-4a61-b01e-fd7c103d5cdc
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/ferdium/ferdium-app/releases
min_os_version :
max_os_version :
icon_sha256sum : 8bf5cb462b63764f28739438c938278662742b18b0276505cd3f54de3c6fd403
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-12T18:18:30.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 : GxRV8CzSQGGUFXGY1qmCs10JeeMSHpoTOFe/Zys6PP8XeJXnv6967dXAGY1bOpx230oQAhXcxs6a6Yoca+0aqkooPuk+yDhgPNoCRnUB5XsI+3MfHddM5Tv1im7D5bCtYqeUAgYH2IDfEMGAvqcxs6xPyORRVBnG+dupmXODsqtFbQA7Z7FW+qvayie7FJEsTCWdeRN7JIIX3EHj9o0bast1j6YXN5ApCij9T4+is8setZyY+o5xJWziIfmJLrSUHtuU6oozDLuMnxsTvU+quWM+Y4TxFZE7nyv55WRBJzWKel9g7ZylZNWI5lrL103+rLVxD+YkYeoFf5xPwvbzeA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("Ferdium-win-AutoSetup-*-x64.exe")[0]
install_exe_if_needed(
bin_name,
silentflags=" /allusers /S",
key="a525f0a2-415e-582b-9d3e-cb67fd71446e",
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": "x64.exe", "debian_based": "amd64.deb", "redhat_based": "x86_64.rpm", "macos": ".dmg"}
api_url = "https://api.github.com/repos/ferdium/ferdium-app/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
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] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["name"]
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)
else:
print("Binary is present: %s" % latest_bin)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
2644bf976f0b369b1edb4c937d33f74209fe7c133f427477603ebbffff2548cb : Ferdium-win-AutoSetup-7.0.1-x64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5eb035cd2e3dfcab5fcf4cd35efe5bf8afac9c40d4808abf43c48f0866ccfd37 : WAPT/control
8bf5cb462b63764f28739438c938278662742b18b0276505cd3f54de3c6fd403 : WAPT/icon.png
86bae106277fa10f560d9f07f67aa430d120f021fe4cd09005572efce88cf774 : luti.json
187a99f04ef681c59c2db7b4da6bb1953b1d54e38c019a46da7daa0188c26b83 : setup.py
a4dd5b89213b1eb004295b83098558528d23ba92f88b840300641260bc6d96eb : update_package.py