tis-flamerobin icon

FlameRobin

Silent install package for FlameRobin

26.8.8-3
Utilities
Configuration
Utilities
Configuration

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-flamerobin
  • name: FlameRobin
  • version: 26.8.8-3
  • categories: Utilities,Configuration
  • maintainer: WAPT Team,Tranquil IT,Pierre Cosson
  • editor: https://github.com/mariuz
  • licence: MIT license
  • locale: all
  • target_os: windows
  • impacted_process: flamerobin
  • architecture: x64
  • signature_date:
  • size: 16.64 Mo
  • installed_size: 12.38 Mo
  • homepage : http://www.flamerobin.org/

package           : tis-flamerobin
version           : 26.8.8-3
architecture      : x64
section           : base
priority          : optional
name              : FlameRobin
categories        : Utilities,Configuration
maintainer        : WAPT Team,Tranquil IT,Pierre Cosson
description       : FlameRobin, Firebird DB client
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://github.com/mariuz/flamerobin
installed_size    : 12378000
impacted_process  : flamerobin
description_fr    : FlameRobin, client de base de données Firebird
description_pl    : FlameRobin, klient DB Firebird
description_de    : FlameRobin, Firebird DB-Klient
description_es    : FlameRobin, cliente de BD de Firebird
description_pt    : FlameRobin, cliente Firebird DB
description_it    : FlameRobin, client per DB Firebird
description_nl    : FlameRobin, Firebird DB client
description_ru    : FlameRobin, клиент БД Firebird
audit_schedule    : 
editor            : https://github.com/mariuz
keywords          : 
licence           : MIT license
homepage          : http://www.flamerobin.org/
package_uuid      : ae9aad73-83a7-4231-a0a5-6cea9f20c680
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d71521840fea5635bc52b0d4adc80e0bab9108ad7f80cda821a6cff82a40e2d6
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-08-25T09:56:59.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         : RNnktoKgk4f57LOszqwCipw4yAKG8NsSdwQO5ttGOWL3CGNZSJWOXtwVymr2DGIwClIMtxAqqbiGUpDKCnJTX7/I6529TTsSUpUgBSVsAjU58gLxqPPjtDY6V+wzlNkh1jEAWjfB+Ms1JWY3bjfcmaeQCZdGZlkDRjamXLX47tDrFX6WWLDK9sQqulocX1CPYoOWa9rYdDhAhhHaRpU1eRCqMxJHAwhSPXNrajTNUHMt4D05uh3P4c0uETEOG7RXgQOlqpDVep8WqZcYUQpZiUEd9x8xEBGF8nXWizDSvyPLn02ar4aUkFe9ShCdyD/CBA6qSIaNLyNP2GiTM1ZECA==

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

def install():
    # Uninstall previous version if needed
    for toremove in installed_softwares('FlameRobin'):
        print('Uninstalling existing versions')
        run(uninstall_cmd(toremove['key']))

    # Install last version
    install_msi_if_needed(
        glob.glob("FlameRobin*.msi")[0]
    )

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


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
    api_url = "https://api.github.com/repos/mariuz/flamerobin/releases"
    dict_arch_name = {"x64": "-x64.msi", "x86": "-x86.msi"}
    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    dict_result = json.loads(wgets(api_url, proxies=proxies))
    for tag in dict_result:
        if not tag["draft"]:
            print("Tag URL used is: %s" % tag["html_url"])
            version = tag["tag_name"].split("-")[-1].replace("v", "")
            version = ".".join(version.split(".")[:3])
            for download in tag["assets"]:
                if dict_arch_name[control.architecture] in download["name"]:
                    download_url = download["browser_download_url"]
                    latest_bin = download["name"]
                    break
            break
    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()
    # Deleting outdated binaries
    for file in glob.glob("*.exe"):
        if file != latest_bin:
            remove_file(file)
    # Validating update-package-sources
    return package_updated

e46a99bb317bf73a59338930ff3d7179d55914123abf23d7e3dd726fcd58a3f0 : FlameRobin-26.8.8-x64.msi
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
6f8fd76ccedde21751a66ea9b4569328ee9edf6ed3c2d6a9dcbf6512e4b143b7 : WAPT/control
d71521840fea5635bc52b0d4adc80e0bab9108ad7f80cda821a6cff82a40e2d6 : WAPT/icon.png
2b6332e0befa91d42ed80530bc3f4a69d3be47b099e82fd9b31693bbb4f5f0de : luti.json
62f87c0f119e2a1e126e3bf0d48b1f535694e540074bcb9f44cda448d0dd0407 : setup.py
a9c90f87be81926b987930e2ca0da20ba2b3b02e721d215e7e9ed3b1cf1486cc : update_package.py