010 Editor
Silent install package for 010 Editor
16.0.3-1
Development
Development
- package: tis-010-editor
- name: 010 Editor
- version: 16.0.3-1
- categories: Development
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: proprietary_restricted,wapt_private
- target_os: windows
- architecture: x86
- signature_date:
- size: 25.36 Mo
- homepage : https://www.sweetscape.com/010editor/
package : tis-010-editor
version : 16.0.3-1
architecture : x86
section : base
priority : optional
name : 010 Editor
categories : Development
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : The world's best hex editor and an exceptional text editor, 010 Editor is the ultimate toolbox for working with text and binary data
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Le meilleur éditeur hexadécimal au monde et un éditeur de texte exceptionnel, 010 Editor est la boîte à outils ultime pour travailler avec du texte et des données binaires
description_pl : Najlepszy na świecie edytor szesnastkowy i wyjątkowy edytor tekstu, 010 Editor to najlepszy zestaw narzędzi do pracy z danymi tekstowymi i binarnymi
description_de : Der weltweit beste Hexadezimal-Editor und ein herausragender Texteditor: 010 Editor ist der ultimative Werkzeugkasten für die Arbeit mit Text und Binärdaten
description_es : El mejor editor hexadecimal del mundo y un excepcional editor de texto, 010 Editor es la caja de herramientas definitiva para trabajar con texto y datos binarios
description_pt : O melhor editor hexadecimal do mundo e um editor de texto excecional, o 010 Editor é a melhor caixa de ferramentas para trabalhar com texto e dados binários
description_it : Il miglior editor esadecimale al mondo e un eccezionale editor di testo, 010 Editor è la cassetta degli attrezzi definitiva per lavorare con testo e dati binari
description_nl : 010 Editor, 's werelds beste hexadecimale editor en een uitzonderlijke teksteditor, is de ultieme gereedschapskist voor het werken met tekst en binaire gegevens
description_ru : Лучший в мире шестнадцатеричный редактор и исключительный текстовый редактор, 010 Editor - это идеальный набор инструментов для работы с текстовыми и двоичными данными
audit_schedule :
editor :
keywords :
licence : proprietary_restricted,wapt_private
homepage : https://www.sweetscape.com/010editor/
package_uuid : 7398ed75-85a3-47f8-8655-bc4eb6f64920
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 29e4b85ec11e140a35ca3b14fa9d560c58239be44734a4b281444211884d8055
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-01-20T16:01:47.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 : YezcjL3LjrkM3bU+uqJdQHxy2J9ygcWtYF+OJziGIe7e8I7K3QkOzQ6nv3ZPCaT/Ue+4co97S6ZRFb06hT7C5avEl9Y9bcMXEHEzhkk3MbRK2mqhlhjS45r6gcjVdTXVBvXb8Ujl+VEmc2q2uxKNAwbXnRzKUrFJBgHo6YZzqa1SsZk1xK9y1qq2h3vLrQCTE4Fq1ZWufqReI2bIzpri85TleZewQV8D6TugMNpw4GifYk5pOBI8LO34HIfOsKF72IO74Ru+44y3v2zIeFMgxO3LUx1mFJvgCo8SjoPeXnETSIZP9gqTKpGie7Y5G0UZ+2VtPx9upyb0eCI/EK35kQ==
# -*- 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('010Editor*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-',
key='010 Editor_is1',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
data = requests.head('https://www.sweetscape.com/download/010EditorWin32Installer.exe',allow_redirects=True,proxies=proxies)
download_url = data.url
latest_bin = download_url.split("/")[-1]
version = latest_bin.split('Installer')[-1].rsplit(".exe")[0]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
d6b5f5abf50dd22fd5012dba2d16ef9f334d3aae49972333ae50bb983da41406 : 010EditorWin32Installer16.0.3.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
325a6f4bbd59b1c8e7528a2cf0aff210eb37b5905dcd79d6de88163d4783cb5b : WAPT/control
29e4b85ec11e140a35ca3b14fa9d560c58239be44734a4b281444211884d8055 : WAPT/icon.png
823533ea80656d2fc469457e227ea30576dcad537bc63030bd72ac7d98adeead : luti.json
c03179988ec57566a962d25bb44f8fe4f2287b79fcdaa672cc4c95797f3013e2 : setup.py
c217893eac193e61b1cc9778eb9eacaf38627da2497e0fcd66cae83a21eb132d : update_package.py