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 : x86
  • signature_date : 2024-10-07 15:00
  • size : 24.78 Mo
  • homepage : https://www.sweetscape.com/010editor/
package           : tis-010-editor
version           : 15.0-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      : f5d3fe74-8f5c-465b-a4b8-62680669c03d
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:00:11.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         : yEndD6CaePXcpWGDeRHqUZFiYu4p4OFkGZA3r+S2rBfNiZztA8xRCuERlw6eUkjgqcEprOuzRAtNPmxXLbzk0qE+e1acN4ZYLRDc7xgXqoOqp+wpankUHY82pZd4BMecnFUKqiNAJTXlp+e+/tgRB2J9vzRte6BayUChjPhEITQYUV6xLDFl/GZAnpTuWl1MM2112pIttaoIC0/RfYK7yUR/PYZcJKEUOGr1DC5UygKnUHIMc+pz2ePBWF/p0DdxiKHDep0WCaflNdB2x+KV1WztJNPbxxkmMM8H8o0aNvuPjB7wCaNgIquTExL9UX8uxg3N+jVANRc1xhspYcIs5Q==
# -*- 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()    
        

20bb9534385c09e962da5f8653e6121368b1a330b1cd5e135d4afe39eab714eb : 010EditorWin32Installer15.0.exe
 : WAPT
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
dc9562b89f3afc941a16bb47cf3c2803ad2b852d1852ee321e1cc57fa64beb8f : WAPT/control
c7947601ff32cbf45da99db20a9450636d7db421f8d3dfe148ce9c652502d24e : luti.json
c03179988ec57566a962d25bb44f8fe4f2287b79fcdaa672cc4c95797f3013e2 : setup.py
c217893eac193e61b1cc9778eb9eacaf38627da2497e0fcd66cae83a21eb132d : update_package.py