tis-nofwl icon

NoFWL

Silent install package for NoFWL

0.1.0-1

  • package: tis-nofwl
  • name: NoFWL
  • version: 0.1.0-1
  • maintainer: Amel FRADJ
  • licence: Licence GPL-3.0
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 4.99 Mo
  • homepage : nofwl.com

package           : tis-nofwl
version           : 0.1.0-1
architecture      : x64
section           : base
priority          : optional
name              : NoFWL
categories        : 
maintainer        : Amel FRADJ
description       : A windowed graphical interface for ChatGPT, but NoFWL has more powerful features
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Une interface graphique fenêtrée pour ChatGPT, mais NoFWL a des fonctionnalités plus puissantes
description_pl    : Okienkowy interfejs graficzny dla ChatGPT, ale NoFWL ma bardziej zaawansowane funkcje
description_de    : Eine grafische Fensteroberfläche für ChatGPT, aber NoFWL hat leistungsfähigere Funktionen
description_es    : Una interfaz gráfica con ventanas para ChatGPT, pero NoFWL tiene funciones más potentes
description_pt    : Uma interface gráfica com janelas para o ChatGPT, mas o NoFWL tem características mais poderosas
description_it    : Un'interfaccia grafica a finestre per ChatGPT, ma NoFWL ha caratteristiche più potenti
description_nl    : Een grafische vensterinterface voor ChatGPT, maar NoFWL heeft krachtigere functies
description_ru    : Оконный графический интерфейс для ChatGPT, но NoFWL обладает более мощными возможностями
audit_schedule    : 
editor            : 
keywords          : 
licence           : Licence GPL-3.0
homepage          : nofwl.com
package_uuid      : af0de39a-ead4-4d57-8c47-5bd526d53a50
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : f71851b3982aa40cf1212638e141358437464e255ec6fee7cc3f7340265f5ead
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : oClHrfqo1QC0hHoOlPVmG262ALwF+/VBABxkGaYnQ7YPTkOWQGAMMPJm302IiWUPIYHKNYscHewVJRFKD3AaOt8tBNj4G352ylnTKXGFUpf+k9f6gNuFebymb5YaFPZrtyexWD0U41q+z0cCJyp46scis4iwHuF76+I1flDPfxhka5XOYXgsZ2hKMAOK4V4+HCiQReoGvPsyMB3mDjVHJIwaumQavsk432yPq6KBpKs1J9r5NGFkQk16UkBxFKV9hlBiczZEIPXCo/HbTJ6r25WGzECK1WGyPrmSCFv1vQ3sdfA86A9ia0nROogt+52VYO3ZzKqCowNGoRUxP33Tvw==
signature_date    : 2024-07-24T09:00:09.263159
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 *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob('NoFWL_*.msi')[0]
    # Installing the software
    install_msi_if_needed(bin_name)



# -*- coding: utf-8 -*-
from setuphelpers import *
import re


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    
    git_repo = "lencx/nofwl"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))
    for download in json_load["assets"]:
        if download["browser_download_url"].endswith(".msi") :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl, filename, proxies=proxies)

    # nettoyer les fichiers temporaires
    for f in glob.glob("*.msi"):
        if f != filename:
            remove_file(f)
    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

916a829dcdef48d3c673ead7ff618bd239c124a104da3b825689b8bdee68fe6d : setup.py
ea24e9e631a1d6df0a7741ccca312a5c7c2b241c9cf4e408cad0a6b670eb0dac : NoFWL_0.1.0_windows_x86_64.msi
aed4bf89f51b5bbff54c28001eb0383b1b432d5a8f5fe8f21b89860b90c0f3cd : update_package.py
f71851b3982aa40cf1212638e141358437464e255ec6fee7cc3f7340265f5ead : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
9db975994c63c959b11d04df42c51dfbca536e55bc3a405d4fe5c6fed6f2a04d : luti.json
f492f1756d8532b8dac8dca4ed074bbe9ad96727862b0e31dcead54e5fd063db : WAPT/control