tis-xournal

1.2.4-4
Xournal++ is an open source, cross-platform note-taking software that is fast, flexible and functional
819 downloads
Download
See build result See VirusTotal scan
tis-xournal icon
  • package : tis-xournal
  • name : Xournal++
  • version : 1.2.4-4
  • categories :
  • maintainer : Jordan ARNAUD
  • editor :
  • licence : open source
  • locale : all
  • target_os : darwin
  • impacted_process : xournalpp
  • architecture : x64
  • signature_date : 2024-10-29 16:34
  • size : 27.09 Mo
  • homepage : https://xournalpp.github.io/
package           : tis-xournal
version           : 1.2.4-4
architecture      : x64
section           : base
priority          : optional
name              : Xournal++
categories        : 
maintainer        : Jordan ARNAUD
description       : Xournal++ is an open source, cross-platform note-taking software that is fast, flexible and functional
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.3
sources           : https://github.com/xournalpp/xournalpp
installed_size    : 
impacted_process  : xournalpp
description_fr    : Xournal++ est un logiciel de prise de notes open source et multiplateforme rapide, flexible et fonctionnel
description_pl    : Xournal++ to otwarte, wieloplatformowe oprogramowanie do tworzenia notatek, które jest szybkie, elastyczne i funkcjonalne
description_de    : Xournal++ ist eine schnelle, flexible und funktionale Open-Source- und plattformübergreifende Notiz-Software
description_es    : Xournal++ es un software de código abierto y multiplataforma para tomar notas, rápido, flexible y funcional
description_pt    : O Xournal++ é um software de anotações de fonte aberta e multiplataforma que é rápido, flexível e funcional
description_it    : Xournal++ è un software open source multipiattaforma per prendere appunti, veloce, flessibile e funzionale
description_nl    : Xournal++ is een open source, cross-platform notitiesoftware die snel, flexibel en functioneel is
description_ru    : Xournal++ - это кроссплатформенное программное обеспечение для ведения заметок с открытым исходным кодом, быстрое, гибкое и функциональное
audit_schedule    : 
editor            : 
keywords          : 
licence           : open source
homepage          : https://xournalpp.github.io/
package_uuid      : aa5536ef-fd3e-4afb-9216-5708a8a3518e
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/xournalpp/xournalpp/blob/master/CHANGELOG.md
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9b5dc08f12257bc882402d80b81bfa11a67ac526d5d9b3e932dee13e6e5ea52b
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-10-29T16:34: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         : fLOu6zC20Q8sRw2fwMNStpCPTRRilL6cILNRPuDTIB9BM3SFRG2UPgg4tcKdRN87eH+azbzE+cpotPAVFDIV/r06on+gaAIO5cIIosRgpYZZmzaaoo+WiiEXIv8ykPghjhThMMFudV3Q84G7n5ZLmKwgKgaRD1P/NYLPAjDJUfwCyQ7H5niJtjz2OWSlri3b729XAenI95gpjFnlaofmFBfAqgQxwLXgO4+jSvw5Cx+jkCnxYNV31EsGBGDhYTdrmaqrZ1BcyggkmE8G3vlurU4QZPT5+25tNm491Y5jcPaJo23znk9CE7wa+Ls6ViI378xQzDIe6comYGdv8p+Cjg==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    bin_name = f"xournalpp-{control.get_software_version()}-macos.zip"
    app_dir = "/Applications/Xournal++.app"

    if isfile(app_dir):
        remove_tree("/Applications/Xournal++.app")
    unzip(bin_name, target='/Applications')

def uninstall():
    remove_tree("/Applications/Xournal++.app")
    
# -*- coding: utf-8 -*-
from setuphelpers import *


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    api_url = "https://api.github.com/repos/xournalpp/xournalpp/releases/latest"
    releases_dict = wgets(api_url, proxies=proxies, as_json=True)

    for asset in releases_dict["assets"]:
        if asset["browser_download_url"].endswith("macos.zip"):
            url_download = asset["browser_download_url"]
            latest_bin = url_download.rsplit('/', 1)[-1]
            version = releases_dict["tag_name"][1:]
            break

    # Deleting binaries
    for f in glob.glob("*.zip"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_download )
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_download , latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Updating the package
    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a93937d9dcc8588f86fe518d40ddfd0f4787527fee7ed368b7f48f56f1cec35f : WAPT/control
9b5dc08f12257bc882402d80b81bfa11a67ac526d5d9b3e932dee13e6e5ea52b : WAPT/icon.png
158203d0b512308619c7e37c970d5227bd7722349a83081c87229a3397025c09 : luti.json
c2a7936268f182afe1a21691b39d0dd4df5e353ff9923ceca478f8facf4c85ed : setup.py
c43ed4134cebf2d7ee54c2a17bb303f2a99ad9bce99e89e3765266c7aa59e7ca : update_package.py
441f4b075548ae942a6a1217c958b2dcaa05575d0016c8cc27541358e8669c3a : xournalpp-1.2.4-macos.zip