
- package: tis-evernote
- name: Evernote
- version: 10.153.1-2
- categories: Utilities,Office
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,Jimmy PELÉ
- licence: proprietary_free,wapt_public
- target_os: windows
- impacted_process: Evernote
- architecture: x64
- signature_date:
- size: 373.25 Mo
- installed_size: 896.18 Mo
- homepage : https://evernote.com/
package : tis-evernote
version : 10.153.1-2
architecture : x64
section : base
priority : optional
name : Evernote
categories : Utilities,Office
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,Jimmy PELÉ
description : Evernote is a note-taking and task-management application
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources : https://evernote.com/download
installed_size : 896184865
impacted_process : Evernote
description_fr : Evernote est une application de prise de notes et de gestion des tâches
description_pl : Evernote to aplikacja do tworzenia notatek i zarządzania zadaniami
description_de : Evernote ist eine Anwendung für die Erstellung von Notizen und die Verwaltung von Aufgaben
description_es : Evernote es una aplicación para tomar notas y gestionar tareas
description_pt : O Evernote é uma aplicação de tomada de notas e de gestão de tarefas
description_it : Evernote è un'applicazione per prendere appunti e gestire le attività
description_nl : Evernote is een programma om notities te maken en taken te beheren
description_ru : Evernote - это приложение для ведения заметок и управления задачами
audit_schedule :
editor :
keywords :
licence : proprietary_free,wapt_public
homepage : https://evernote.com/
package_uuid : bbcd0fdb-c9ac-4843-a882-e7e3ddbacbdd
valid_from :
valid_until :
forced_install_on :
changelog : https://evernote.com/release-notes
min_os_version : 10.0
max_os_version :
icon_sha256sum : 885020096344b64e08874a78af2f0f77bd717dfebe3f729f6e26f98b340781af
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-06T13:01:38.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 : XkhzEUZsqUxIby9wYMmt/LT2UTmCTdtqDY01gL9LDXNHqrMaryo4Yt7mnwdHUf8oeP82nG5TUNvePdWFAgyBRuH4a8D7XEvW9XMT40L1O71sMDYpoKf+ATmfVA9k2H3AatqH6bNYLkk+RnRRttCpGSwgNZmekg4s02Vq6DJt0l7iGiHHZ3VuR277YRsHHc6zYGc/3qLqs2oPW8znIatRZ1dd11bfsyAXX9p3LBwaqmo3WAi9/WdniuQTHUmJWkqmezOWJ9uw2Uunv7zusVd7Mxve/NxXB3bM8Wc+myRPq+qzzdNmTJybotnOod//0/i/jxPtPf8cOXh4MieD8IJW2Q==
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
{
"key": "e4251011-875e-51f3-a464-121adaff5aaa",
"name": "Evernote 10.84.3 (All Users)",
"version": "10.84.3",
"install_date": "",
"install_location": "C:\\Program Files (x86)\\Evernote",
"uninstall_string": '"C:\\Program Files (x86)\\Evernote\\Uninstall Evernote.exe" /AllUsers',
"publisher": "Evernote Corporation",
"system_component": 0,
"win64": true,
}
"""
def install():
while True:
try:
install_exe_if_needed(
"Evernote-latest.exe",
silentflags="/S",
key = "e4251011-875e-51f3-a464-121adaff5aaa",
min_version=control.get_software_version()
)
break
except:
if not params.get("install_with_luti", False):
raise
else:
time.sleep(10)
# -*- coding: utf-8 -*-
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()
download_dict = {
"windows": "https://win.desktop.evernote.com/builds/Evernote-latest.exe",
}
download_url = download_dict[ensure_list(control.target_os)[0]]
latest_bin = download_url.split("/")[-1]
# Deleting binaries
remove_outdated_binaries("*")
# 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, verify_cert="win.desktop.evernote.com.crt")
else:
print("Binary is present: %s" % latest_bin)
# Checking version from file
if get_os_name() == "Windows" and "windows" in control.target_os.lower():
version = get_version_from_binary(latest_bin)
else:
version = control.get_software_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 update-package-sources
return package_updated
# # Changing version of the package and validating update-package-sources
# return complete_control_version(control, version)
3fb198761cfc3e5d91f4f1aade4b4b4359f1798e541de583150e7c68c5bdf3a8 : Evernote-latest.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
45aeae25ed3d49e0d3fa335f20d6effaf1897c3471230edf6f619dade6f4e8da : WAPT/control
885020096344b64e08874a78af2f0f77bd717dfebe3f729f6e26f98b340781af : WAPT/icon.png
0580b2aeb1603b384cbb8456fd94d0a5dd975dbae2c340cc4a9e938162cab84d : evernote.com.crt
dc79b0456ae9e7ebafdf970f677eb95fb77479fc74533c5bb7669d32888b1aba : luti.json
88d102fa0d45ae58914cf17fb845d3e9a23a792597a1d8c2522a92cd16b6d473 : setup.py
a265fbca50cf87a8df79bafa54bc2135476c53600dc5bd4877113c0dcbd46597 : update_package.py
fe7c1f075ef97670e410d1c14fb31de0434f9ef7e1125d04807efbb4f0892d45 : win.desktop.evernote.com.crt