tis-memoq

11.4.11-4
Computer-aided translation software suite
6 downloads
Download
See build result See VirusTotal scan
tis-memoq icon
  • package : tis-memoq
  • name : memoQ
  • version : 11.4.11-4
  • categories : Education
  • maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT,Clément Baziret
  • editor : Kilgray Translation Technologies
  • licence : proprietary_restricted,wapt_public
  • locale : all
  • target_os : windows
  • impacted_process : MemoQ.ACEHelperTool,MemoQ.AutoUpdate,MemoQ.ClientBackup.Cli,MemoQ.ClientBackup,MemoQ,MemoQ.InstallScriptInno,MemoQ.SilentActivationHelper,MemoQ.WebSearch,memoQSearch
  • architecture : x64
  • signature_date : 2025-05-03 15:10
  • size : 279.81 Mo
  • installed_size : 790.08 Mo
  • homepage : https://www.memoq.com/
package           : tis-memoq
version           : 11.4.11-4
architecture      : x64
section           : base
priority          : optional
name              : memoQ
categories        : Education
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT,Clément Baziret
description       : Computer-aided translation software suite
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : https://www.memoq.com/downloads
installed_size    : 790082862
impacted_process  : MemoQ.ACEHelperTool,MemoQ.AutoUpdate,MemoQ.ClientBackup.Cli,MemoQ.ClientBackup,MemoQ,MemoQ.InstallScriptInno,MemoQ.SilentActivationHelper,MemoQ.WebSearch,memoQSearch
description_fr    : Logiciels de traduction assistée par ordinateur
description_pl    : Pakiet oprogramowania do tłumaczenia wspomaganego komputerowo
description_de    : Software-Suite des Tools für computergestützte Übersetzung
description_es    : Paquete de programas de traducción asistida
description_pt    : Conjunto de software de tradução assistida por computador
description_it    : Suite di software per la traduzione assistita
description_nl    : Software voor computerondersteund vertalen
description_ru    : Пакет программ для автоматизированного перевода
audit_schedule    : 
editor            : Kilgray Translation Technologies
keywords          : translation,computer-aided
licence           : proprietary_restricted,wapt_public
homepage          : https://www.memoq.com/
package_uuid      : 9f4f7b35-02f9-4fef-8334-09f6177dfb40
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.memoq.com/fr/memoq-versions/hello-memoq-9-0
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 08bf04fb334d9673e74bf1b731f715445900929fc860951f88fdd6eb17ccc0e4
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-05-03T15:10:21.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         : vUsjLhOKKg9srY+HTnVL41dMhh/DkMPkpQ2CQq6jjUJeQqUAVziFcLusJacaIGEt0o6tcE/+a8GIeTANqkx6AevZ3EmqfOWaVy4ueNoVRqYlyAFbQeE7kPqrxs23UFQz3RjArsWBOcd15SK87KgVzUwCTHmqOPWRq8sa2ju0hTkyGm49GjEe8ydAOLWhgmCWL2gUDjTjgsfATz872PpcIefdgaLcFs6mmNKZJIWTkXCNNLs1Rwtf3axdz4dgW0I+rsa1VWqfGMqyC33fTC4yD2CmP0W7ZJ6PgluoOqnE/GW4jMq1M3ecGYjizG8qsz4/uJsZBefVab34Q9Q01+dXUA==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    # Uninstalling older major versions of the software
    for to_uninstall in installed_softwares(name="memoQ"):
        version = get_soft_version(to_uninstall)
        if Version(version, 4) < Version(control.get_software_version(), 4) or force:
            print("Removing: %s (%s)" % (to_uninstall["name"], version))
            killalltasks(ensure_list(control.impacted_process))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])

    bin_name = glob.glob("memoQ-*.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
        key="{B993F104-CB77-4F2E-BE43-6EDDC9EDDAE8}_is1",
        min_version=control.get_software_version(),
        get_version=get_soft_version,
    )


def get_soft_version(key):
    app_path = makepath(key["install_location"] + "MemoQ.exe")
    return get_file_properties(app_path)["FileVersion"]
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2024
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
from setupdevhelpers import *


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()
    url = "https://www.memoq.com/downloads/#last-release-download"



    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "div","class", "button__wrapper", proxies=proxies):
        if bs_search.find_next("button"):
            bs_search = bs_search.find_next("button")
            version = bs_search.get("data-version")
            break

    download_url = f"https://dl.memoq.com/memoq/memoQ-{version}.exe"
    latest_bin = download_url.split("/")[-1]
    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)

    # Checking version from file
    if get_os_name() == "Windows" and "windows" in control.target_os.lower():
        version_from_file = get_version_from_binary(latest_bin)
        if Version(version_from_file, 4) == Version(version, 4):
            print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
        else:
            error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
abc91c2bfd1c7f41c1cbe0f766bab9bf4984c6c58d5e7ebe760aa9bad349b281 : WAPT/control
08bf04fb334d9673e74bf1b731f715445900929fc860951f88fdd6eb17ccc0e4 : WAPT/icon.png
7c186a2f846bbf428ac838c91b37d0fb04134f19b584ced01199d4a67c664c38 : luti.json
fb219fb5e12dbb66f438d0a29d98af1758e6a9a74a470a5bf3ce5e8de720b3f9 : memoQ-11.4.11.exe
0ab4858d754046c711c33997b31da7f8d2fa76d5d24fdd8aa155b0d5457e9f22 : setup.py
2a2496460aa7d4f9aad4c7cc3851ba331acd7a101a3c29ff2ac13cf0459602a5 : update_package.py