Sticky notes
Paquet d’installation silencieuse pour Sticky notes
6.8.5-12
Utilities
Utilities
- package: tis-simple-sticky-notes
- name: Sticky notes
- version: 6.8.5-12
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Simnet Ltd.
- licence: proprietary_free,wapt_public
- target_os: windows
- impacted_process: ssn
- architecture: x64
- signature_date:
- size: 2.43 Mo
- installed_size: 6.51 Mo
- homepage : https://www.simplestickynotes.com/
package : tis-simple-sticky-notes
version : 6.8.5-12
architecture : x64
section : base
priority : optional
name : Sticky notes
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Simple Sticky Notes is a note-taking program, which lets you create notes and stick them on your computer's desktop so that they look like post-its
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources : https://www.simplestickynotes.com/download
installed_size : 6511827
impacted_process : ssn
description_fr : Simple Sticky Notes est un programme de prise de notes qui vous permet de créer des notes et de les coller sur le bureau de votre ordinateur pour qu'elles ressemblent à des post-its
description_pl : Simple Sticky Notes to program do robienia notatek, który pozwala tworzyć notatki i przyklejać je na pulpicie komputera, aby wyglądały jak karteczki samoprzylepne
description_de : Simple Sticky Notes ist ein Notizprogramm, mit dem Sie Notizen erstellen und auf den Desktop Ihres Computers kleben können, so dass sie wie Post-its aussehen
description_es : Simple Sticky Notes es un programa para tomar notas que te permite crear notas y pegarlas en el escritorio de tu ordenador para que parezcan post-its
description_pt : O Simple Sticky Notes é um programa de tomada de notas que permite criar notas e colá-las no ambiente de trabalho do computador de forma a parecerem post-its
description_it : Simple Sticky Notes è un programma per prendere appunti che consente di creare note e di attaccarle sul desktop del computer in modo che sembrino dei post-it
description_nl : Simple Sticky Notes is een notitieprogramma waarmee je notities kunt maken en op het bureaublad van je computer kunt plakken zodat ze eruitzien als post-its
description_ru : Simple Sticky Notes - это программа для ведения заметок, которая позволяет создавать заметки и приклеивать их на рабочий стол компьютера, чтобы они выглядели как стикеры
audit_schedule :
editor : Simnet Ltd.
keywords : notes,desktop
licence : proprietary_free,wapt_public
homepage : https://www.simplestickynotes.com/
package_uuid : 601aca1b-033b-4134-9d0e-bdb428fe2117
valid_from :
valid_until :
forced_install_on :
changelog : https://www.simplestickynotes.com/simple-sticky-notes-version-history
min_os_version :
max_os_version :
icon_sha256sum : 11de59a22f67261f13fd76ba2739ce36b3de35a859dbfc14c217defd3090410e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-28T16:02:43.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 : fKIRP4Dxc08zZBFAgV122dsK7tcOVc2d90DiYHX7mnnMMhMaYCLkjAOoqO90DRxezC24GvDzOc/a9JXooARzjdHzPWJ3BWO2ALbGg1jh/h9SXxyflAOCY+vT2COU4SoBzq4Ca2Oa11f4Y2Gzc21ANGnhF3hRd1F8DddT+iFol3xDmT+H/YrYHKNzVJ2huUWHfATCqJdMgWXH3sCYuC8nh08nYX1b2FuXuGsS4TMFjs4AVcbjVgpcBGOHFOkZBjkmzgtVE62UuXke3rUZS4qqFI2jW5kdzFdZjs4YlNABPUZ7u7sZmjU1YbOroXrUFgpzbxLRjQKWoNAJ1kKh/gbxPA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variables
# Installing the software
print("Installation: Sticky_Notes.exe")
install_exe_if_needed("Setup_SimpleStickyNotes.exe", silentflags="/VERYSILENT", key="Simple Sticky Notes_is1", min_version="")
def session_setup():
# Désactivation Check Update
registry_set(HKEY_CURRENT_USER, r"Software/Simnet/Simple Sticky Notes", "CheckUpdates", 0, type=REG_DWORD)
# -*- 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_url = "https://www.simplestickynotes.com/setup/Setup_SimpleStickyNotes.exe"
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=makepath(systemdrive, programfiles32, "wapt", "lib", "site-packages", "certifi", "cacert.pem"),
)
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)
4be361463e5a25ebf13ef8c32e8ebd3aac0ba3c2b303783188d56a5c18edf63a : Setup_SimpleStickyNotes.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
587f341ef17c0c2ccbbeeb35d31b70c155a42c58d07babb8dc5ac47a670d270b : WAPT/control
11de59a22f67261f13fd76ba2739ce36b3de35a859dbfc14c217defd3090410e : WAPT/icon.png
3f8dc6177b8c42d74c30ffa4d9f9e2ba70f7adf86519cb89706853e89a577814 : luti.json
880690d821bd3d591d98af3a33fc1a8a174b49ae167f60380225d984ae794a9f : setup.py
01a790fa2fc33a723d2ba4a20f9b2daf940fd1c1d1d9b73d4b24d162efc52366 : update_package.py