
tiled
Silent install package for tiled
1.11.0-1
- package: tis-tiled
- name: tiled
- version: 1.11.0-1
- maintainer: Amel FRADJ
- target_os: windows
- architecture: x86
- signature_date:
- size: 21.01 Mo
package : tis-tiled
version : 1.11.0-1
architecture : x86
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 : 10824025-0b97-44d2-ba3c-b87a41ab6fed
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version : 6.3
icon_sha256sum : e8558b039635f46d38da5b261b1b581667562896fc372ef270fa7f443fe272e4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : mc8tVCBnzfHwLyMoEdj6e9OUyuyeGUp3KP/Qwhck0OykLh1+QyAJL3yJBkkwS73xweqdQ409Hblrp+2QYcK9hp7GMYe7/LlTiz8RemVe2zKRNYcxWt0afw86C1eDLZEtJdslMtBZBpbZTn+JlPtHT1W445VGc12k6MTusB/9uXYESXhIEGEkVLSpvmrCYnsaylE602wp6HToVlruEo22tuoOFXKsyK5A2Do/2WXJpxIHxrF1wuMtA2MIZuHfVJGkY1MVTZDoOZaWUmr2tal4IeSG6Ku4ANm7mMJWwBrmy07oQ2u4qr10nO26kNhQCWeRes5JTjO1Y2oD8GevQIEtlg==
signature_date : 2024-07-02T21:00:07.784211
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
# -*- 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-7-8_x86.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-7-8" in download["name"] and "_x86.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()
783fa31796728fae0d3043d2fca855f1f7013ac2d88934a3fede374bc609e810 : setup.py
48994d6cd2ff17a8cd7c333f4e0b4bb5df11035851dc17bb4abe6748f07e7274 : update_package.py
fb7a0ca755f43cb9934eabc5462ce8d095da4da143f72dbc2d7ca0eac35b59a2 : Tiled-1.11.0_Windows-7-8_x86.msi
e8558b039635f46d38da5b261b1b581667562896fc372ef270fa7f443fe272e4 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
a4aa7b1376dba870a4f196c75a4be4308afa199723608cf9735887c7e48d94de : luti.json
d90e495b1a3e533601d8e55c846a5ef95407423587fd42baf6e3ef4d5b5f2330 : WAPT/control