tis-ivpn-client icon

IVPN Client

Paquet d’installation silencieuse pour IVPN Client

3.14.34-1

  • package: tis-ivpn-client
  • name: IVPN Client
  • version: 3.14.34-1
  • maintainer: Amel FRADJ
  • licence: GPL-3.0 license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 95.74 Mo
  • homepage : https://www.ivpn.net/en/

package           : tis-ivpn-client
version           : 3.14.34-1
architecture      : x64
section           : base
priority          : optional
name              : IVPN Client
categories        : 
maintainer        : Amel FRADJ
description       : IVPN for Desktop is the official IVPN application for desktop platforms. Features include multiple protocols (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, Custom DNS, Dark mode, and more
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : IVPN for Desktop est l'application officielle IVPN pour les plateformes de bureau. Certaines des fonctionnalités incluent , plusieurs protocoles (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, Custom DNS, Dark mode, et plus encore
description_pl    : IVPN for Desktop to oficjalna aplikacja IVPN dla platform stacjonarnych. Niektóre z funkcji obejmują wiele protokołów (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, niestandardowy DNS, tryb ciemny i wiele innych
description_de    : IVPN for Desktop ist die offizielle IVPN-Anwendung für Desktop-Plattformen. Einige der Funktionen umfassen , mehrere Protokolle (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, Custom DNS, Dark mode, uvm
description_es    : IVPN para Escritorio es la aplicación oficial de IVPN para plataformas de escritorio. Algunas de las características incluyen, múltiples protocolos (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, Custom DNS, Dark mode, y más
description_pt    : O IVPN para Ambiente de Trabalho é a aplicação oficial do IVPN para plataformas de ambiente de trabalho. Algumas das características incluem múltiplos protocolos (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, DNS personalizado, Dark mode e muito mais
description_it    : IVPN for Desktop è l'applicazione ufficiale IVPN per piattaforme desktop. Alcune delle sue caratteristiche sono: protocolli multipli (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, DNS personalizzato, modalità Dark e altro ancora
description_nl    : IVPN voor Desktop is de officiële IVPN-toepassing voor desktopplatformen. Enkele van de functies zijn: meerdere protocollen (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, aangepaste DNS, donkere modus en nog veel meer
description_ru    : IVPN for Desktop - это официальное приложение IVPN для настольных платформ. Среди функций - несколько протоколов (OpenVPN, WireGuard), Kill-switch, Multi-Hop, Trusted Networks, AntiTracker, Custom DNS, Dark mode и другие
audit_schedule    : 
editor            : 
keywords          : 
licence           : GPL-3.0 license
homepage          : https://www.ivpn.net/en/
package_uuid      : e11a8c2a-ad85-4cd3-9e0a-74a4dfd31854
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 27a5778190a4cd78953a6e404e9ea506bd7693497e868104067c59e00e920bc8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-07-26T16:03:45.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         : KDdrf4KSYfech93RpPjnNjFG92ntaGekpT5NVxYy29kg1F5rm7ulAbQk8m3Cv9Hqpwx270stmBZwdEiBJiVgHqeCeCJ2csBejCc0AMOJ18Ga97qPKYTT+q8djd9C8SeBZX+MzXRmz4tdF0jCvMbXxp12k74XtlaMdQna/kpQoRl7TQ/Rd/PEJrHyvwCTRovyVl6DiWUVRfE2yB17lThIMx11EmwdxSQ6C0X1MIXuM1PLVWJbvPtteOX374S78cUhpykVnyMoqOt7QqtRFVA7nw6sGfyZoYELdhlycAOP6huc0ZkH0T+n/hXJ20e3Oj+IL98G4aAVuGHe7fEv0PYAaw==

# -*- 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('IVPN-Client-*.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/S / allusers',
        key='IVPN Client',
        min_version=control.get_software_version(),
    )




# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import zipfile



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

  
    url_base = "https://www.ivpn.net/en/apps-windows/"
    response = requests.get(url_base,allow_redirects=True, proxies=proxies)
    # Extract the correct div using bs_find_all
    divs = bs_find_all(response.text, "div","class","heading--text-image", proxies=proxies)
    exe_file = None
    for div in divs:
        if exe_file:
            break
        links = div.find_all('a', href=True)
        for link in links:
            if link['href'].endswith('.exe'):
                href = link['href']
                exe_file = href
                download_url = exe_file
                version = download_url.split('/')[-1].split("-")[-1].replace("v","").replace(".exe","")
                latest_bin = exe_file.split('/')[-1]
                break


    # 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)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)


    # Deleting outdated binaries
    for f in glob.glob('*.exe'):
        if f != latest_bin:
            remove_file(f)

    
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

619bfd062feaf9f2bcbed73cf27ad384aeeda7d0b51fa126b79aa59d1c8614ee : IVPN-Client-v3.14.34.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4c7c96149edda90b6fb03d8fdcbe54408d744b37a68e003782bfe49d9e56b6bc : WAPT/control
27a5778190a4cd78953a6e404e9ea506bd7693497e868104067c59e00e920bc8 : WAPT/icon.png
78449df54177b177c6196389b9216449bab2e15b137c1f36da2a5e3dd44072da : luti.json
c0a78c0aff07ba3b20f74e0bc6d8e181d8295e67108e6ec3b562fa9843c9071d : setup.py
4b16ebfeaac9d42a6e1aa4aa0a1b0f8f1860ed6c6dc1614059a644105086059b : update_package.py