tis-simple-sticky-notes icon

Sticky notes

Paquet d’installation silencieuse pour Sticky notes

6.9-12
Utilities
Utilities

  • package: tis-simple-sticky-notes
  • name: Sticky notes
  • version: 6.9-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.9-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      : 3f3c6587-bcdd-43b5-938b-51a86d2cf734
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    : 2026-02-27T21:15:33.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         : yxeU+CWc6rfE9edNSoUfsmu+HBrJ87nGdbUEDiYjrdBoFkp133UruAbx9DUSAqKYvE1rzFXFnJQER+oWChTWgosQSRMqJA4Wgmtw8rb0fgQxyxyWi0bYVkemviB+DrHVDFLvKwfptAuV2cgi0sygikfh7KhX8l6OythFNEmQHWk4T+39AAaaUXL8JnERSFO6P28dmgLMa/G4osGDWSXu+kUuNlrKZnFqIPyRbgYcqHyaxHdsGrl0AGNLoA9esOSK5FPYkTYtYUFMJ/jKYzUgMXLAr6QnLgx55IuNUXg5Y3klfuh8MIzQDOTVYfEZGkwDaYnXRi1lgQjasTkW/NTdoQ==

# -*- 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)

5a5dcadee27c31179e0a8d8b8b96d1bcefc90d1fdceddcc0da759a3b9a8850fc : Setup_SimpleStickyNotes.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fcf317f23248ce5290e7f6fdae4d43c6aa9ab2f88b5ce963ddcb6fd9bea79987 : WAPT/control
11de59a22f67261f13fd76ba2739ce36b3de35a859dbfc14c217defd3090410e : WAPT/icon.png
7581424e3303510bf4b27f1c8d7cc2f4118ba49784373f78953a2b1aa7dac98b : luti.json
880690d821bd3d591d98af3a33fc1a8a174b49ae167f60380225d984ae794a9f : setup.py
01a790fa2fc33a723d2ba4a20f9b2daf940fd1c1d1d9b73d4b24d162efc52366 : update_package.py