tis-appflowy icon

AppFlowy

Paquet d’installation silencieuse pour AppFlowy

0.9.5-1

  • package: tis-appflowy
  • name: AppFlowy
  • version: 0.9.5-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT
  • licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: AppFlowy
  • architecture: x64
  • signature_date:
  • size: 44.41 Mo
  • installed_size: 38.47 Mo
  • homepage : https://www.appflowy.io/

package           : tis-appflowy
version           : 0.9.5-1
architecture      : x64
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          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.4
sources           : https://github.com/AppFlowy-IO/AppFlowy
installed_size    : 38470792
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            : 
keywords          : 
licence           : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage          : https://www.appflowy.io/
package_uuid      : 905a15a9-2f7a-4cea-be5d-b885de44f03b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 647af9b8d2c330e1540c6abe3f6b3d483f5fa6b4ce49be31ff8749ec03498ed9
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-22T11:01:36.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         : osIbyAFlCG0hyR04P9/JvMQ8Xz0L7vQaqP4t7g1oVHjW2FUNN1+RCpHP4kG+NcHs+Ii+ANZqQY6qb8aa+hu5p0u4oCP86il71gfaMMs2GVkhzYEbKQf5cpCPp5xjCu5rNsULhN9/o8tdNdA0C2Kx/QNiMRUHDsH49763807z6THCS4efoAzNkAve6qcNoGkrQaJE0M8C3lZCq8RyuEHvmeWUJbq06fhsAjFXgV5Q3AhC816HJXVG1Afyu8Dw1yfrhgrmj0JakyBMX/MEH1QWHjV5NJ9ddDulBGbcovA68ruQ7Xy9XnmBhaqE0wsv480BI1XuB+aREh0/BQN+/Q6ypA==

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


def install():
    # Declaring local variables
    bin_name = glob.glob("*.exe")[0]

    install_exe_if_needed(
        bin_name,
        '/sp- /silent /norestart',
        key='AppFlowy_is1',
        min_version=control.get_software_version()
    )

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


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',
        'darwin-all': '-macos-universal.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}")

    expected_issuer = "APPFLOWY PTE. LTD."
    sign_name = waptlicences.check_msi_signature(latest_bin)[0]
    if sign_name != expected_issuer:
        error(f'Bad issuer {sign_name} != {expected_issuer} ')

    # 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

e91c784c20c447227b6fd3098318447739087f61ec574fb244de23e431c97a85 : AppFlowy-0.9.5-windows-x86_64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ddb5e04ce7777c8ee0007b66ce50856eb9da9766210b3ae80e999839108fb096 : WAPT/control
647af9b8d2c330e1540c6abe3f6b3d483f5fa6b4ce49be31ff8749ec03498ed9 : WAPT/icon.png
09e4f476caf02a7384b13d76c51dc90eb4d64c42eeccf1dd5b09cf3726127e3a : luti.json
b474ab7dd78f003cf0e8a22824e8bdfef1e0b1dcbb5de51ddca01e248a9df009 : setup.py
d49637211d1f57ba722d8aba58e23bc6aca029754703954268a18fa30aaf3317 : update_package.py