tis-simple-sticky-notes
6.5-12
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
597 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal

- package : tis-simple-sticky-notes
- name : Sticky notes
- version : 6.5-12
- categories : Utilities
- maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
- editor : Simnet Ltd.
- licence : proprietary_free,wapt_public
- locale :
- target_os : windows
- impacted_process : ssn
- architecture : x64
- signature_date : 2024-07-12 19:00
- size : 2.41 Mo
- installed_size : 6.51 Mo
- homepage : https://www.simplestickynotes.com/
package : tis-simple-sticky-notes
version : 6.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 : 7786ce7c-7fec-4171-9b26-ae6d23df9012
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 : V+B/g1aupegiAQJYgjVPEWEajRStyMBQWUATcjj0+loyVA2GVE+NkmFhlk4Mry4i6CWBHS5J9EYQRqgT1ZZhxQfS3k3zRZtsaXPaHKVG/nA0KD8oqEI/xZHWBGpVdVQOnVE1UkXftcFGJpOmlLJy4G80Mz7BNQIzngVg8t6Vr51HssckGUhz3K5O+KRZo7GcvjKK1dPJP8umRD98rIlPP7N7BSJTYQLNPN2Bh72bRsh7HbDwMkyS5+lqb6tfGvNAoRBEGf3m8oFXSheVpxbbgLoBml3TXK01yjLnFxbLnGo5Q53AghMoORnjOwF1/Ng8KfLNATBiPZ4to9tvhu/IUQ==
signature_date : 2024-07-12T19:00:08.359793
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
# -*- 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)
a5d997857ff5f3c2b3607a24a0eb4cc968a828029ac9b29f4311a78b89d458bc : Setup_SimpleStickyNotes.exe
880690d821bd3d591d98af3a33fc1a8a174b49ae167f60380225d984ae794a9f : setup.py
: __pycache__
01a790fa2fc33a723d2ba4a20f9b2daf940fd1c1d1d9b73d4b24d162efc52366 : update_package.py
11de59a22f67261f13fd76ba2739ce36b3de35a859dbfc14c217defd3090410e : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
f6a5e42c13b3596410a29e6c9f42c40d3a888bd33fbed14e663d0a6ea7849efd : luti.json
842827a27e2001fa54e70e72ba4557f155101f53598a27c30b736b9509204a51 : WAPT/control