FlameRobin
Paquet d'installation silencieuse pour FlameRobin
26.5.11-3
Utilities
Configuration
Utilities
Configuration
- package: tis-flamerobin
- name: FlameRobin
- version: 26.5.11-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: 5.43 Mo
- installed_size: 12.38 Mo
- homepage : http://www.flamerobin.org/
package : tis-flamerobin
version : 26.5.11-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 : PROD
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 : c3e70068-c3b7-40fa-af50-6d8c335e7d5b
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : d71521840fea5635bc52b0d4adc80e0bab9108ad7f80cda821a6cff82a40e2d6
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-05-20T01:02:26.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 : AyOtZRyT6zZIoGQha0HgkGN1uLjbHXaCqfGz2HOtDouakbpQY0e2lnIgTsRCF9jJxFHD2iMNz2Q6QdAuF9QZNVxES39N70Yku4r8guY54tDDnwzlqcqNfJ3X55lA056KsLd44m8IYvHvY0+ITY6Ac1xE11NxrG9bevQRmBZBpzAzd3I9piaXO7qGVCBpAY1eGTbXY89pywH665/UU22kjX63q1jL3Y8LHjz+nXOSG+fQucJs+LgdgCSU5oVIdWfmaey4LkgatrlFAQCSAGldasMf3OeGAbue2N5Sb5S3Pc1QwYytK1tIXPKHrYviq9kPwhyailEXWptApIR+iy8u+w==
# -*- coding: utf-8 -*-
from platform import architecture
from setuphelpers import *
def install():
install_exe_if_needed(
glob.glob("flamerobin*.exe")[0],
silentflags="/verysilent",
name="FlameRobin",
min_version=control.get_software_version(),
get_version=get_app_path_version,
)
def get_app_path_version(key):
app_path = makepath(key["install_location"] + "flamerobin.exe")
return get_file_properties(app_path)["FileVersion"]
# -*- 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": "setup-x64.exe", "x86": "setup.exe"}
# 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
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
385413cc1c275aa30cd4bc2c5fbb3969113fe29fb7daf17784c7f588d04a4362 : WAPT/control
d71521840fea5635bc52b0d4adc80e0bab9108ad7f80cda821a6cff82a40e2d6 : WAPT/icon.png
43c6691fd874525f9bfa6f96f3c0a7e231ea218c9e0390d1013746f4f071a8c7 : flamerobin-26.5.11.c49ee8d7-setup-x64.exe
009c1e1f80eb8ce0d687bac2ba52b14f3ab222bd0fa903ed64e221235e67990b : luti.json
b427ff22759ed8a90c7005f573f8d8bb85e84a9e1efeefc02d89852c36347d8a : setup.py
0bcb2708d67b47ab9734fb773af6e2176600b8a8d29595a877332737b0edd572 : update_package.py