memoQ
Paquet d’installation silencieuse pour memoQ
12.0.10-4
Education
Education
- package: tis-memoq
- name: memoQ
- version: 12.0.10-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:
- size: 253.90 Mo
- installed_size: 790.08 Mo
- homepage : https://www.memoq.com/
package : tis-memoq
version : 12.0.10-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 : 6e36d991-9e27-4df4-841b-3188d45bc71d
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-10-12T13:01: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 : ZkOLZRh7ovz/t4cYsfEohfsSb1muCdqDlI/qJFF617Be+5KJGtnKmL+Tss7CDyExTDir7tXm6CeLmxYjAGcqf9WZj0Vgr8uwhUUJdMl72GBAntFgUWdQhld/+ArIannnoX9yHVGv8vXL7kaBOVn4XCMU5wmSSH5KPKr6eJgkMaJy35X/qgZFhPIlwnA8U+4hx6Oo0KTYT09PXR4qDFJeKxibrIE8uON11kTWLEBtngRLquwMp9uZzTIJ2W6PPrtDf5HF/bGdTZiH0qS02xs9pgvzThk72Sm6lxb/cqrCK6JG//XpHO9DZwAPs2KkOAnoWu5xcAw0CcG07MzRWJib3g==
# -*- 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",
name="^memoQ ",
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/#previous-releases"
user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0"
# Getting latest version from official sources
print("URL used is: %s" % url)
bs_search = bs_find(url, "p","class","js-accordion-title",user_agent=user_agent, proxies=proxies)
bs_search = bs_search.text
version = bs_search.split(" ")[-1]
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
ebe84cb83ad26184047d440a4ac8425366d1871b093bda3e0d73754f7c15ead9 : WAPT/control
08bf04fb334d9673e74bf1b731f715445900929fc860951f88fdd6eb17ccc0e4 : WAPT/icon.png
7bbc20ef161b9a9ea2d33d2e80a57281f999d685e9af8f7f8f243f3742a107ff : luti.json
fc007c1d887c52a6e969e6f9b10ce245fe7babbd402f38d54480149ddc014edb : memoQ-12.0.10.exe
7ff4d7223e2fcf19e5bd73b5a985e4017a50235b32007dcd5554cd1f833f31c1 : setup.py
c90d17cf07c3b8ad6d25760a24a7c6a43e2ebb7c86c91bea842e6dcd99dbb964 : update_package.py