
flow-launcher
Paquet d’installation silencieuse pour flow-launcher
2.0.2-2
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-flow-launcher-portable
- name: flow-launcher
- version: 2.0.2-2
- maintainer: WAPT Team,Tranquil IT,Flavien Schelfaut,Amel FRADJ
- editor: Flow Launcher Team
- licence: MIT license
- locale: all
- target_os: windows
- impacted_process: Flow.Launcher
- architecture: all
- signature_date:
- size: 196.13 Mo
- installed_size: 284.23 Mo
- homepage : https://www.flowlauncher.com/
package : tis-flow-launcher-portable
version : 2.0.2-2
architecture : all
section : base
priority : optional
name : flow-launcher
categories :
maintainer : WAPT Team,Tranquil IT,Flavien Schelfaut,Amel FRADJ
description : Flow Launcher - Quick file search and app launcher for Windows with community-made plugins (Flow-Launcher Team)
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://github.com/Flow-Launcher/Flow.Launcher
installed_size : 284231615
impacted_process : Flow.Launcher
description_fr : Flow Launcher - Recherche rapide de fichiers et lanceur d'applications pour Windows avec des plugins créés par la communauté (Flow-Launcher Team)
description_pl : Flow Launcher - Szybkie wyszukiwanie plików i uruchamianie aplikacji dla Windows z wtyczkami stworzonymi przez społeczność (Flow-Launcher Team)
description_de : Flow Launcher - Schnelle Dateisuche und App-Startprogramm für Windows mit von der Community entwickelten Plugins (Flow-Launcher Team)
description_es : Flow Launcher - Buscador rápido de archivos y lanzador de aplicaciones para Windows con plugins creados por la comunidad (Flow-Launcher Team)
description_pt : Flow Launcher - Pesquisa rápida de ficheiros e lançador de aplicações para Windows com plugins criados pela comunidade (Flow-Launcher Team)
description_it : Flow Launcher - Ricerca rapida di file e avvio di applicazioni per Windows con plugin creati dalla comunità (Flow-Launcher Team)
description_nl : Flow Launcher - Snel bestanden zoeken en programma's starten voor Windows met door de gemeenschap gemaakte plugins (Flow-Launcher Team)
description_ru : Flow Launcher - Быстрый поиск файлов и запуск приложений для Windows с плагинами, создаваемыми сообществом (Flow-Launcher Team)
audit_schedule :
editor : Flow Launcher Team
keywords :
licence : MIT license
homepage : https://www.flowlauncher.com/
package_uuid : bc764054-03e5-4ae6-b3ff-f7b444a4777c
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/Flow-Launcher/Flow.Launcher/releases
min_os_version : 10
max_os_version :
icon_sha256sum : 8c552ff5ec2a52fc31e31cd84c38da82e07d8e3f2463a4f904f05c9e1a49741e
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-10-14T12:01:43.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 : GAq1HrIqtiPP8Itutjnt71etys9pdIzOIXdjCt2DmoZUKLA4g+CYww1CcPu1rQc1LWeVScJPsua8EtKZ2LM9R9tp8q5ArjCQBZc+A54dHGisHsBjm+nOmPFcZTKCpRTRUrvrB9KiM2cnMJcBlqAk9Ugeu+SjjrAs/ihJ+dnf0HfNeXaqGfaLVrZOpLHKb+b+4POyyQTVafICUlPolIjs4oNM75Rxq6X40xvPgJvYG264gmtpN6XLioMhbb27cf5cI/HEmWhGL7L15zu3cJCw6s9RBBeM15Ld1WMzM0HByu0QsVW64HMvv17z6zUbtCkyFEkG0gfAYAMpBfD9drzhKg==
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
app_name = "Flow Launcher"
app_dir = makepath(programfiles, "FlowLauncher")
app_path = makepath(app_dir, "Flow.Launcher.exe")
installed_version = get_file_properties(app_path).get("ProductVersion", "")
def install():
bin_name = glob.glob("Flow-Launcher*.zip")[0]
app_dir_version = makepath(app_dir, f"app-{control.get_software_version()}")
# Uninstall older version before new one
if installed_version and Version(installed_version) < Version(control.get_software_version()):
uninstall()
unzip(bin_name, programfiles)
# Delete this folder to not store UserData in the App folder but in %appdata%
remove_tree(makepath(app_dir_version, "UserData"))
# Disable auto Update
remove_tree(makepath(app_dir, 'packages'))
remove_file(makepath(app_dir, 'Update.exe'))
create_desktop_shortcut(app_name, target=app_path)
create_programs_menu_shortcut(app_name, target=app_path)
def audit():
# Auditing software
audit_status = "OK"
if Version(installed_version) < Version(control.get_software_version()):
print(f"{app_name} is installed in version ({installed_version}) instead of ({control.get_software_version()})")
audit_status = "WARNING"
elif isdir(app_dir) and not dir_is_empty(app_dir):
print(f"{app_name} ({installed_version}) is installed")
audit_status = "OK"
else:
print(f"{app_name} is not installed")
audit_status = "ERROR"
return audit_status
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
# Removing shortcuts
remove_desktop_shortcut(app_name)
remove_programs_menu_shortcut(app_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
app_name = control.name
api_url = "https://api.github.com/repos/Flow-Launcher/Flow.Launcher/releases/latest"
print(f"API used is: {api_url}")
json_load = wgets(api_url, proxies=proxies, as_json=True)
for to_download in json_load["assets"]:
if to_download["name"].endswith('.zip'):
download_url = to_download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = to_download["name"]
latest_bin_extension = latest_bin.rsplit(".")[-1]
break
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
5d50b6b6cb50d80e7ce33116fafc04e6b50ba9d0a3219d8ec8b34d7773bdf5ed : Flow-Launcher-Portable.zip
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e1e4e0e37e98f99a94dbee31522cf4418334133b2b817e4ca8c92de0bab71c59 : WAPT/control
8c552ff5ec2a52fc31e31cd84c38da82e07d8e3f2463a4f904f05c9e1a49741e : WAPT/icon.png
4866060fe1715ea88952aacb02e2beda6a2f6cb6fbc238bb4f716bb82aaade92 : luti.json
a9a99a17d5832b61b6841a89f9080b4a7b5f84e63c3bc620de02f6a9fe5a918b : setup.py
13e90d2df2614293e24c42abb2b1e741e6b9b40bcfe484ed4a78b5a4c248905b : update_package.py