memoQ
Silent install package for memoQ
12.0.13-4
Education
Education
- package: tis-memoq
- name: memoQ
- version: 12.0.13-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.95 Mo
- installed_size: 790.08 Mo
- homepage : https://www.memoq.com/
package : tis-memoq
version : 12.0.13-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 : 1d33959c-6f7e-4f9a-ac94-1a94456f7734
valid_from :
valid_until :
forced_install_on :
changelog : https://www.memoq.com/fr/memoq-versions/hello-memoq-9-0
min_os_version : 10.0.18362
max_os_version :
icon_sha256sum : 08bf04fb334d9673e74bf1b731f715445900929fc860951f88fdd6eb17ccc0e4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-12-31T10:08:27.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 : ybrVoJRky11l9uDQOaLNmBf7ySCI0RVb6DMtHMsJmxbUGpWPUMzGeJDHTg6sCNhMPIzz3NRMYnnUVWXt99TrKc9JP86ddQSlJ8V6XVTT5BoOop4a3mj/yOyt9PZf1ySm1+25ygaDKI1b/WkIQC3Iutyk8vnjChLfdN1oOlmcSm3TXgLj9LQNggHQiQ1T1b+7jCUbNw0GLhkVngPcOuOo1FYTkyrm+H9M3OtpvqVYQjVNLXeeYqiOcPip+Ar+QDybD6FVDQrD9oXw3Sfvbq05JWQI6meE6ZZgGBdKairhmFXWA7xg/WMn6kZHRFaAdoo56mGW1GmKWt7mU0dBkkcy5Q==
# -*- 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
89a4258d1954e3573e24ccfa29f9c1578cd46546f34485f8d275c1a986fce04e : WAPT/control
08bf04fb334d9673e74bf1b731f715445900929fc860951f88fdd6eb17ccc0e4 : WAPT/icon.png
ecada943518abc538c9d6cc179262d810ffd1c90d5d2d0bde76a1db13681e66e : luti.json
0ce97ba220625cf9cb4a08fb6e4a9223de52c41efa385f146547cd7c70965e8f : memoQ-12.0.13.exe
7ff4d7223e2fcf19e5bd73b5a985e4017a50235b32007dcd5554cd1f833f31c1 : setup.py
c90d17cf07c3b8ad6d25760a24a7c6a43e2ebb7c86c91bea842e6dcd99dbb964 : update_package.py