Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-gdevelop
- name: GDevelop
- version: 5.5.240-3
- categories: Development
- maintainer: Tranquil IT Systems,Jimmy PELE
- editor: Florian Rival (4ian)
- licence: MIT
- locale: all
- target_os: macos
- impacted_process: GDevelop
- architecture: all
- signature_date:
- size: 243.13 Mo
- installed_size: 286.83 Mo
- homepage : https://gdevelop-app.com/
package : tis-gdevelop
version : 5.5.240-3
architecture : all
section : base
priority : optional
name : GDevelop
categories : Development
maintainer : Tranquil IT Systems,Jimmy PELE
description : Local install only (please use WAPT selfservice for the installation) - GDevelop is an open source, cross-platform game creator designed to be used by everyone - no programming skills are required to use the software. If you do not have GDevelop, download it now.
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : macos
min_wapt_version : 1.5
sources : https://github.com/4ian/GDevelop
installed_size : 286826496
impacted_process : GDevelop
description_fr : Installation en local uniquement (utilisez le selfservice WAPT pour l'installation) - GDevelop est un logiciel de création de jeux open source, multiplateforme conçu pour être utilisé par tout le monde. Aucune programmation n'est requise, tout le processus de création se faisant à l'aide de l'éditeur.
description_pl : GDevelop jest wieloplatformowym o otwartym kodzie zródlowym kreatorem gier, zaprojektowany do uzytkou przez wszystkich - do korzystania z oprogramowania nie sa wymagane umiejetnosci programistyczne. Jesli nie masz GDevelop, pobierz teraz!
description_de : GDevelop ist eine Open Source, Cross-Platform Game Engine für Jedermann - Es sind keinerlei Programmierkenntnisse von nöten. Falls ihr GDevelop noch nicht heruntergeladen habt, tut es jetzt!
description_es : GDevelop es un creador de juegos de código abierto, multiplataforma, diseñado para ser usado por todos - no se requieren conocimientos de programación. Si aún no tienes GDevelop, ¡puedes descargarlo ahora!
description_pt : Apenas instalação local (por favor use o WAPT selfservice para a instalação) - GDevelop é um criador de jogos de código aberto, multi-plataforma, concebido para ser usado por todos - não são necessários conhecimentos de programação para usar o software. Se não tiver o GDevelop, descarregue-o agora
description_it : Solo installazione locale (utilizzare il selfservice WAPT per l'installazione) - GDevelop è un creatore di giochi open source e multipiattaforma progettato per essere utilizzato da tutti: non sono richieste competenze di programmazione per utilizzare il software. Se non avete GDevelop, scaricatelo subito
description_nl : Alleen lokale installatie (gebruik WAPT selfservice voor de installatie) - GDevelop is een open source, cross-platform spel ontwikkelaar ontworpen om door iedereen gebruikt te worden - geen programmeer vaardigheden zijn nodig om de software te gebruiken. Als je GDevelop nog niet hebt, download het dan nu
description_ru : Только локальная установка (для установки используйте самообслуживание WAPT) - GDevelop - это кроссплатформенный создатель игр с открытым исходным кодом, предназначенный для использования всеми - для работы с программой не требуется навыков программирования. Если у вас нет GDevelop, скачайте его прямо сейчас
audit_schedule :
editor : Florian Rival (4ian)
keywords : developement,game,games,create
licence : MIT
homepage : https://gdevelop-app.com/
package_uuid : 91234f7e-3754-4729-b2d3-aa225fb4624b
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : 3c8171bc1616d811fcda5edb54952a0990f544f5e6f30b54acced42f2cd60868
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-15T09:40:13.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 : Y9qCGRpCRhDuTtO2d6tT2BYP5Ee07jpkYHq2dBHblWnNDwjHBamlIr4PjBvtUUQPN+ypimjUtehCKNLF2WNRhupPGeWMZNi7zuGziUz5rhbDzANPmon4viiHnNsTsCDrRpXxjRCy3vfHNa8iLEvbtpI/na3nUHAp4d1Ib/JmjI/+G4dBQ5lWx7mqmNkzFyLBF5uuQFZGPO6faoqEphdQoNy23PNN82R9GjDC9+ZSX8xtUkhQXvUc21Lict8mCYkK5sncLXBNrEYJp8ClO5oMZ9gj6mnj7/5+D6RjIqxC46oymvHv9aAt6MCML7nSqb1bjkfB1H3Q5FB/379wGEteGw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_dmg(glob.glob("GDevelop*.dmg")[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()
api_url = "https://api.github.com/repos/4ian/GDevelop/releases/latest"
download_dict = {
"windows-x64": ".exe",
"macos-all": ".dmg",
}
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for to_download in json_load["assets"]:
if download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in to_download["name"]:
download_url = to_download["browser_download_url"]
version = download_url.split("/")[-2].split("-beta")[0].strip("v")
latest_bin = to_download["name"]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (control.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)
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
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
remove_outdated_binaries(latest_bin)
# Validating update-package-sources
return package_updated
11267ad63429e35e0bb50e381190aadf253f09dd6d73e14bd64bcf354e5a229c : GDevelop-5-5.5.240-universal.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
1136ea228b2769803705ec1307e1dc446b8fa4449983fb2af0e1726821c3c8bb : WAPT/control
3c8171bc1616d811fcda5edb54952a0990f544f5e6f30b54acced42f2cd60868 : WAPT/icon.png
3e9786ab6d2f14f9b79e57d59121df5d012aa80ce329367b0b5278b31c522713 : luti.json
ede58dd1030cc21bdbcd27d175db81b2e77fcb9708ab7b78b6ce49eb4852bc47 : setup.py
71db8868061c84a6f4c3dc1abeebdee567d25b73f158ac847c42f989a718f27f : update_package.py