AppFlowy
Paquet d’installation silencieuse pour AppFlowy
0.11.4-2
Utilities
Utilities
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-appflowy
- name: AppFlowy
- version: 0.11.4-2
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT
- editor: AppFlowy Community
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
- locale: all
- target_os: macos
- impacted_process: AppFlowy
- architecture: arm
- signature_date:
- size: 87.34 Mo
- installed_size: 93.24 Mo
- homepage : https://www.appflowy.io/
package : tis-appflowy
version : 0.11.4-2
architecture : arm
section : base
priority : optional
name : AppFlowy
categories : Utilities
maintainer : WAPT Team,Tranquil IT
description : AppFlowy is an AI-powered secure workspace where you achieve more without losing control of your data.
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : macos
min_wapt_version : 2.4
sources : https://github.com/AppFlowy-IO/AppFlowy
installed_size : 93241820
impacted_process : AppFlowy
description_fr : AppFlowy est un espace de travail sécurisé optimisé par l'IA qui vous permet d'être plus productif sans perdre le contrôle de vos données.
description_pl : AppFlowy to bezpieczna przestrzeń robocza wspomagana przez sztuczną inteligencję, która pozwala osiągnąć więcej bez utraty kontroli nad danymi.
description_de : AppFlowy ist ein sicherer KI-gestützter Arbeitsbereich, in dem Sie mehr erreichen können, ohne die Kontrolle über Ihre Daten zu verlieren.
description_es : AppFlowy es un espacio de trabajo seguro impulsado por IA que te permite lograr más sin perder el control de tus datos.
description_pt : AppFlowy é um espaço de trabalho seguro e alimentado por IA que permite que você realize mais sem perder o controle de seus dados.
description_it : AppFlowy è un'area di lavoro sicura basata sull'intelligenza artificiale che ti consente di ottenere di più senza perdere il controllo dei tuoi dati.
description_nl : AppFlowy is een veilige AI-gestuurde werkruimte waarmee u meer kunt bereiken zonder de controle over uw gegevens te verliezen.
description_ru : AppFlowy - это безопасная рабочая среда с поддержкой искусственного интеллекта, которая позволяет добиваться большего, не теряя контроля над своими данными.
audit_schedule :
editor : AppFlowy Community
keywords :
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage : https://www.appflowy.io/
package_uuid : 37b0c1e8-cbf7-4bf9-9463-d0d72eecb76d
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 647af9b8d2c330e1540c6abe3f6b3d483f5fa6b4ce49be31ff8749ec03498ed9
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-09T13:03:14.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 : CZR/bUNI9VQsiwZMCFUCgRxHMoCmHDRjBefwfe+jSLCM4HHJajEzhDHZH6ziyVNlTeNli1gN2KEm1fi8efKD6c0s3wS3a3lzz1CTHL0RSAJA6vfjkMYMWYK/qFC3noSlLEZY7tB2RkmQn5DGgCAp890WViMGZflJPRTChCzNSwi0NY9XUc3f43hbAHNLdhg0ZUe9XUxdBWCiV7jSDxdSE2+Ejt7cdmuTI1L6WNFUkIMoc+2E0nOffRzeOymsZE5cm2SbJ+7DREMC2n323oWma0DqAm4MsJ4zm/CWO1RdUR6uVeTkp8Ac0f9Bd/P9ViIAWTGeWhZL2t5DhZA5dIYLpQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variables
bin_name = glob.glob("*.dmg")[0]
# version because appflowerteam go to short or longer version
version = str(Version(control.get_software_version(),4))
install_dmg(bin_name,key='/Applications/AppFlowy.app', min_version=version)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = "AppFlowy-IO/AppFlowy"
api_url = f"https://api.github.com/repos/{git_repo}/releases/latest"
os_dict = {
'windows-x64': '-windows-x86_64.exe',
'macos-x64': '-macos-universal.dmg',
'macos-arm': '-macos-arm64.dmg',
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
releases_dict = wgets(api_url, proxies=proxies, as_json=True)
for asset in releases_dict["assets"]:
if asset["name"].endswith(os_dict[os_type]):
download_url = asset["browser_download_url"]
latest_bin = asset["name"]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
version = releases_dict["tag_name"].replace('v', '')
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
06a4b7113a9065ad00b7b555edf7c3ca081e80121c288feb009dc31ecabd3089 : AppFlowy-0.11.4-macos-arm64.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
54676e441bbc615f25beca336fff74b2a5c8dbbbea37b3188c4f0ebc43058cda : WAPT/control
647af9b8d2c330e1540c6abe3f6b3d483f5fa6b4ce49be31ff8749ec03498ed9 : WAPT/icon.png
57420f2da53a86b9a118ef3ba68c0d503c7e223239baa8fb023d2a945dcdf4dd : luti.json
78e74893efbed8e49609e78e37d6e639b0bf38e659902f877900a42fd6023e89 : setup.py
ed633bd3c0a4ff5d6116bc65b07f49f9a6c5047d7a3f3ded543b5f61a15cb053 : update_package.py