tis-010-editor

15.0-1
The world's best hex editor and an exceptional text editor, 010 Editor is the ultimate toolbox for working with text and binary data
5 downloads
Download
See build result See VirusTotal scan
default icon
  • package : tis-010-editor
  • name : 010 Editor
  • version : 15.0-1
  • categories : Development
  • maintainer : WAPT Team,Tranquil IT,Amel FRADJ
  • editor :
  • licence : proprietary_restricted,wapt_private
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : x64
  • signature_date : 2024-10-07 15:03
  • size : 26.42 Mo
  • homepage : https://www.sweetscape.com/010editor/
package           : tis-010-editor
version           : 15.0-1
architecture      : x64
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      : ef1ebe05-7cba-489e-821e-bd7ae3f60dcc
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-10-07T15:03:22.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         : FrcuXXLzXeZm8cFeqAxY15XYQaEsEuUa5MUSQWHxph75P7+4NtooWwXUTLNIUOSkOOKaWaN7wpRMc/jEPzYXpD63ViEiQ55BA1KJ5pC1Y/3dx/seTKrOK2NjMzDt+1I60WIRNggnSFcSgWwK+5ob7TM4bd40+LStU6H9vX1QXgmO0ty2NcwdTNv4z+xv+vSIwj3e4+G9N2Bm2Er0EThwmkGv5MVuRJAUwwgmHP6wmqgQm40p+P7cPxWotlF4x7GMFVeP4RVNGN480H1kSmIDEpbRUT9Ilig9E1HhZF3GBUZtq2WAVsQqYbGC9HgyC+V8vh/TF5FCWioWNsTeTirtuQ==
# -*- 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/010EditorWin64Installer.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()    
        

a39860c150cc65399379a9072220eed0870b6a753a4fbaafd6c0741291a6490b : 010EditorWin64Installer15.0.exe
 : WAPT
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
60d3c7265cea7b27db8a9b817f57217ac9a1e1adea94b74490e8a74d3f3c0500 : WAPT/control
6c95c4c1adec49c2e714adaf296a1bc7086fc489c78e559f6ff7ac57ca517ead : luti.json
c03179988ec57566a962d25bb44f8fe4f2287b79fcdaa672cc4c95797f3013e2 : setup.py
4160a4e40a6549c9af38a6f6739a57ea428870198c6f93c52ee94822632e19a6 : update_package.py