tiled
Paquet d’installation silencieuse pour tiled
1.12.1-1
- package: tis-tiled
- name: tiled
- version: 1.12.1-1
- maintainer: Amel FRADJ
- target_os: windows
- architecture: x64
- signature_date:
- size: 23.43 Mo
package : tis-tiled
version : 1.12.1-1
architecture : x64
section : base
priority : optional
name : tiled
categories :
maintainer : Amel FRADJ
description : free, easy-to-use and flexible mosaic card editor
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : éditeur de cartes en mosaïque gratuit, facile à utiliser et flexible
description_pl : darmowy, łatwy w użyciu i elastyczny edytor map mozaikowych
description_de : kostenloser, einfach zu bedienender und flexibler Mosaikkarteneditor
description_es : editor de mapas en mosaico gratuito, fácil de usar y flexible
description_pt : editor de mapas em mosaico gratuito, fácil de utilizar e flexível
description_it : editor di mappe a mosaico gratuito, facile da usare e flessibile
description_nl : gratis, eenvoudig te gebruiken en flexibele mozaïek kaart editor
description_ru : бесплатный, простой в использовании и гибкий редактор мозаичных карт
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : 937d51d6-ac0a-4e93-97a6-f9d9932f3ea6
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : e8558b039635f46d38da5b261b1b581667562896fc372ef270fa7f443fe272e4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-03-30T14:06: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 : ugXA2AeK807NaZoooTTZdslx5m/4ZQ/K1EKFlsCZAE9nEnX6gO9Isr8pNXSoOwCdFuTVAm6Y/J9J2qnBPY0C6IjNCj9shRLcihlIXcPsi59B/RcQsjh1zwEl0Oq/FLOp3TLcdvWv+qao/pjfxdu0lT228xC6oeIfPKuJGjbzE6PHi2Tu2is/ojeQeX9/97vT0D6z+ql7L/djlVvIGSi8ENovyBHp6ZVZuP4VpGzdGp21C6L3NPzDEdY7ukyhY2X7twhftFJHf4jTZsQkVNIrkRbIQzUkqvzqFHodaioKtZICe5qSkBjNCUR5ooHaUeKASxKgQeEEznj7/g++UDkZZw==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('Tiled-*_Windows-10+_x86_64.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "mapeditor/tiled"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.msi') and "Windows-10+" in download["name"] and "_x86_64.msi" in download["name"]:
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.msi'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
6617fb91fbf09b079d835d1c1ecdbae4b227163ba9495bf28e3ef89f96a10f20 : Tiled-1.12.1_Windows-10+_x86_64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5673ed8279861b082eb514819e01d789dd7bace9e841858aaeaeacee7a148c55 : WAPT/control
e8558b039635f46d38da5b261b1b581667562896fc372ef270fa7f443fe272e4 : WAPT/icon.png
ffdce757c2c5848362fc1c849306d29922daceef39636cab71408ecfbf5343f8 : luti.json
8b31842d5bcc86c3e14756c69963790a1e44ffb3d76059ca2abdb3771c796fc3 : setup.py
41e7f5916fe399020e4b8f4024c9b77497d9196cabfc930885b40462f008bc76 : update_package.py