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-7
- categories: Development
- maintainer: Tranquil IT Systems,Jimmy PELE
- editor: Florian Rival (4ian)
- licence: MIT
- locale: all
- target_os: windows
- impacted_process: GDevelop.exe
- architecture: x64
- signature_date:
- size: 128.63 Mo
- installed_size: 286.83 Mo
- homepage : https://gdevelop-app.com/
package : tis-gdevelop
version : 5.5.240-7
architecture : x64
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 : windows
min_wapt_version : 2.3
sources : https://github.com/4ian/GDevelop
installed_size : 286826496
impacted_process : GDevelop.exe
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 : 337ff9fb-32b8-46a8-87d5-af369ea1b573
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:26:15.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 : J7UlgAxSTPwVA8eJO9ubeRftG4H/Q+G42kr5BFpCsmM3cH4MM/106ZT/9UFZHQr2fYdeTQjLbOToVSD6QNR2Ai5+RMr10qA8dvPyauL59SI+ABlYNUnDKjCAANCs7C/Go0MAwZ3SRHaDSvZQQiXF+Xpsq6V+HndfxzzK2DZD15Uhh6W3KwGwfz+kiJphhTIxUsRoq4sJBeW3B47Xs/baz20NhwdaArHZ5/qy0cGuJ7DsMTWBvxncWG2kWurrJsuz9McVJVb4abfQm7i5zU+Iv9E6s5xe0bzy8ji95/Rf8M0OpobVfG67pKbBVQNcK/xyRJNGWAMyglm4FKfT6Gj6YA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
package_version = control.get_software_version()
shortversion = package_version.split(".")[0]
bin_name = glob.glob("GDevelop*.exe")[0]
install_exe_if_needed(
bin_name,
silentflags="/S /ALLUSERS",
key="c2a9b91e-8206-5b4e-b81d-9aa27463c28e",
min_version=control.get_software_version()
)
# -*- 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)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
print("Changing version to the version number of the binary")
# os.rename(latest_bin, latest_bin.replace(version, version_from_file))
version = version_from_file
else:
print("Binary file version corresponds to online version")
# 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
d175f2117c7c67603cc60319564819260cbb32805408bb3777536550cf64b94e : GDevelop-5-Setup-5.5.240.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
bff69ac70812f277d1e001fc09dec1c112c03a26b92cd1aa153829db887bc52c : WAPT/changelog.txt
83949be6183dd523bce529230f845365348633a2f24c10e315a4a03e30b99f38 : WAPT/control
3c8171bc1616d811fcda5edb54952a0990f544f5e6f30b54acced42f2cd60868 : WAPT/icon.png
fdd9db03cb28a75c9b2af4f5154e55cce7feaa098404f37d3fe5c6cdfb483729 : WAPT/wapt.psproj
b03c9e35c809011b0ce9f3eb118bba43ce9d810e37879e409b81d5f0e8da2c48 : luti.json
6b87ff6a049f7e3e24636053c53c8d280fefdbb40413ff6dfa6f1894f1c6acde : setup.py
78b6c1726cc0543166deeb63c0cfb11a1a4fd17b81896ac7269019674aa8648b : update_package.py
Logiciel supporté officiellement uniquement sur 64 bits