tis-neovide icon

Neovide

Paquet d’installation silencieuse pour Neovide

0.15.0-1

  • package: tis-neovide
  • name: Neovide
  • version: 0.15.0-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: opensource_free,wapt_public
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 12.57 Mo
  • homepage : https://neovide.dev/
  • depends:

package           : tis-neovide
version           : 0.15.0-1
architecture      : x64
section           : base
priority          : optional
name              : Neovide
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : A simple graphical user interface for Neovim
depends           : tis-neovim
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Il s'agit d'une interface utilisateur graphique simple pour Neovim
description_pl    : Prosty graficzny interfejs użytkownika dla Neovim
description_de    : Es handelt sich um eine einfache grafische Benutzeroberfläche für Neovim
description_es    : Una sencilla interfaz gráfica de usuario para Neovim
description_pt    : Uma interface gráfica de utilizador simples para o Neovim
description_it    : Una semplice interfaccia grafica per Neovim
description_nl    : Een eenvoudige grafische gebruikersinterface voor Neovim
description_ru    : Простой графический интерфейс пользователя для Neovim
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_public
homepage          : https://neovide.dev/
package_uuid      : ba10e182-21a9-4f5b-b504-ef0a102721a9
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d8283e53dc30b7a05b7461668087d7bfff1bc2036be78e317f524a1b4f720372
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-04-08T09:32:56.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         : shz339Ow2MO+fuTOjZLKl4FS9DlLAmn2rFWXw58Eqw7e6fkNup6z2TMVnAgLGgFzFeiFxUc62KMNuI/zuk9149P7dt6CK6nAeLxI+jeI8t9MMHjsf0MePJ7Ua93LZrBOqqBgddnzEdno4ycwIgc35hu1gz/ZFAguDYqizK9U9e4418qvNMFqUuuMZuxmWSiKdixNNTl/hFcSBFE94e6RasjG0UHMJM5FTh2mYPIHdwcEPQ7tAFMouTCIhGmZHKeGjWX/YXu7x40ZXW8nqexNOwj6Rv6Fc24jLsxOtWGoPWA9XQEf6Zp7ceZbDPpAG2/tSjDwDXHZ4rvHIrOgmeGGOw==

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

    # Installing the software
    print("Installing: neovide.msi")
    install_msi_if_needed('neovide.msi')



# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json

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


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()

    git_repo = "neovide/neovide"
    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["name"].endswith('.msi') :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            break


    for f in glob.glob('*.msi'):
        if get_version_from_binary(f) < version :
            remove_file(f)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

        # Checking version from file
        version = get_version_from_binary(latest_bin)

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
        control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
        # control.set_software_version(Version(version))
        control.save_control_to_wapt()

    # Validating update-package-sources
    return result

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
68fbb2befda99b7d5f0f86f0fe32aa6082c3812382185e7517f2b1f10045e8d3 : WAPT/control
d8283e53dc30b7a05b7461668087d7bfff1bc2036be78e317f524a1b4f720372 : WAPT/icon.png
4ce8aed4b824247f53eea1a9c69f1870246c9f5b8f793aabd80528f05692ce13 : luti.json
53bdcb4901b61790dfdd61328bed58b0bf3950a8356c439e01f25d25aad9d32c : neovide.msi
45728fd48077be9d1bbf479fa4cd80534fce9fb3b2ff6a0d95b8294b19d4ab84 : setup.py
2379469f1a6fa23437f1268b0f95714e77c181deb71edc81a1c10dfb689e9fcb : update_package.py