tis-simple-sticky-notes
6.6-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.6-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-09-20 19:13
- size : 2.41 Mo
- installed_size : 6.51 Mo
- homepage : https://www.simplestickynotes.com/
package : tis-simple-sticky-notes
version : 6.6-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 : 1748e7ec-4f48-4ff6-b4ab-f90e804c3a03
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 : 2024-09-20T19:13:47.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 : Whmd+H0BTZD75LGQIXdikgq7tmv4BlnSggtfTPiyJnkVRTm45g64nCnr3a7bw2BDynAXVf84ZLHu8JrU5Y2k3Smrl5kdQRk8AOemw7H/VijMqh33uU5dyaYVLxeLxkTBzKpCbf9m790SQuXGFNNH44TlzpqGSuQPL3i/22KAZ69eWIg1abnHYOgbkkpWbnG8gGzzEZbC9MTz7Mw7LcAxebPvG92Aa5dA7LPGbxI74N+5Grm6ztd6wGhLWYzF7OaM+dyOLkl9RXaRJo/6BN/C26C8SYjihg3MMImnILcTDRiMAkh0PplXcZvOi5n0REaskZ4nmjYGuF1ufjJDECMzOQ==
# -*- 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)
e8e365d96ac1010aa4cf07352861f87e30f996bf874f1565994f17f06f6c1079 : Setup_SimpleStickyNotes.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5778744aab7e164be73bcd465e8403771566c08e07558fb7027cd6726d4bff4c : WAPT/control
11de59a22f67261f13fd76ba2739ce36b3de35a859dbfc14c217defd3090410e : WAPT/icon.png
e9310ea3a9575fd14a36a932fc63e46ba25eac6783412e936e5f618559c1acf4 : luti.json
880690d821bd3d591d98af3a33fc1a8a174b49ae167f60380225d984ae794a9f : setup.py
01a790fa2fc33a723d2ba4a20f9b2daf940fd1c1d1d9b73d4b24d162efc52366 : update_package.py