tis-vscodium icon

VSCodium

Paquet d’installation silencieuse pour VSCodium

1.109.31074-43
Development
Development

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-vscodium
  • name: VSCodium
  • version: 1.109.31074-43
  • categories: Development
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: VSCodium
  • licence: opensource_free,cpe:/a:mit:x11_license,wapt_public
  • locale: all
  • target_os: debian(>=11),ubuntu(>=20)
  • impacted_process: VSCodium,codium
  • architecture: arm64
  • signature_date:
  • size: 106.02 Mo
  • installed_size: 366.79 Mo
  • homepage : https://vscodium.com/

package           : tis-vscodium
version           : 1.109.31074-43
architecture      : arm64
section           : base
priority          : optional
name              : VSCodium
categories        : Development
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : VSCodium is a community-driven, freely-licensed binary distribution of Microsoft's editor VS Code
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : debian(>=11),ubuntu(>=20)
min_wapt_version  : 2.3
sources           : https://github.com/VSCodium/vscodium/releases
installed_size    : 366789546
impacted_process  : VSCodium,codium
description_fr    : VSCodium est une distribution binaire sous licence libre de l'éditeur VS Code de Microsoft
description_pl    : VSCodium to wspierana przez społeczność, udostępniana na wolnej licencji binarna dystrybucja edytora VS Code firmy Microsoft
description_de    : VSCodium ist eine von der Gemeinschaft betriebene, frei lizenzierte Binärdistribution von Microsofts Editor VS Code
description_es    : VSCodium es una distribución binaria del editor VS Code de Microsoft, impulsada por la comunidad y de licencia libre
description_pt    : O VSCodium é uma distribuição binária livremente licenciada e orientada para a comunidade do editor VS Code da Microsoft
description_it    : VSCodium è una distribuzione binaria con licenza libera e guidata dalla comunità dell'editor VS Code di Microsoft
description_nl    : VSCodium is een door de gemeenschap gestuurde binaire distributie onder vrije licentie van Microsofts editor VS Code
description_ru    : VSCodium - это свободно лицензируемый сообществом бинарный дистрибутив редактора VS Code от Microsoft
audit_schedule    : 
editor            : VSCodium
keywords          : code,editor,debugger,visual,studio,vs,vscodium,codium
licence           : opensource_free,cpe:/a:mit:x11_license,wapt_public
homepage          : https://vscodium.com/
package_uuid      : 9af44693-5e66-4a44-9614-a8475f0fe2c9
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/VSCodium/vscodium/releases
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : 9276eaee7406da4acedd4d7cae85a6cf041df867131323b231c24c65e223faae
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-02-13T19:25: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         : IFxSIdbObfwZxxjadg3NWQyM34M0TU0Eg15k+g843LV0V3NRuGVj6ftkX5IqcfQM8gR49CLxjxvHASljXi6/7jxKkqxXb0gQE2+gybFvvKD5vyMyRDmsiKoyKjPGqcESQEBXkxJOdmGT3LnUGLIiaCMiUEqwUJKIiE9PRsIQ17NmY4Nz8TmLtjSXi5VKlpg0mPI9FU5VgANRBJ+TsGyRhTyfOGNTj8g1rW/rt0gCKxQAAeI4Hewgd4WKg3Uh4pJAFVE5CYFGrz+qctlTSMMY5tbHrKnHrPxvB+aPxOmbS5/2pclCoZOCjB/kUTrTT6x3Gm+6OBaiPb1uZ91KnQXdtg==

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


# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "codium_"
package_name = "codium"
app_dist_source_path = "/etc/apt/sources.list.d/vscodium.list"


def install():
    # Declaring local variables
    bin_name = glob.glob("*%s*.deb" % bin_contains)[0]

    update_apt()

    # Installing the software
    print("Installing: %s" % bin_name)
    install_deb(bin_name)

    # Deleting the distribution source file of the application
    if isfile(app_dist_source_path):
        print("Removing: %s" % app_dist_source_path)
        remove_file(app_dist_source_path)


def uninstall():
    # Uninstalling the package
    print("Uninstalling: %s" % package_name)
    uninstall_apt(package_name)


def session_setup():
    print("Disabling: Telemetry, automatic updates, surveys")

    # Configuration procedure: https://supunkavinda.blog/vscode-editing-settings-json
    # C:\Users\username\AppData\Roaming\VSCodium\User\settings.json

    # Initializing variables
    user_conf_dir = makepath(user_home_directory(), ".config", "VSCodium", "User")
    user_conf_file = makepath(user_conf_dir, "settings.json")
    user_conf_content = r"""{
    "update.mode": "none",
    "update.showReleaseNotes": false,
    "update.enableWindowsBackgroundUpdates": false,
    "telemetry.enableCrashReporter": false,
    "telemetry.enableTelemetry": false,
    "typescript.surveys.enabled": false,
    "extensions.autoCheckUpdates": true,
    "extensions.autoUpdate": false
}"""

    user_conf_data = json.loads(user_conf_content.strip(","))
    if not isdir(user_conf_dir):
        mkdirs(user_conf_dir)
    if not isfile(user_conf_file):
        print("Creating: %s" % user_conf_file)
        json_write_file(user_conf_file, user_conf_data)
    else:
        new_user_conf_data = json_load_file(user_conf_file)
        new_user_conf_data.update(user_conf_data)
        print("Updating: %s" % user_conf_file)
        json_write_file(user_conf_file, new_user_conf_data)

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

bin_contains = "codium_"


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    repo_git = "VSCodium/vscodium"
    api_url = "https://api.github.com/repos/%s/releases/latest" % repo_git

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for download in json_load["assets"]:
        if bin_contains in download["name"] and "_arm64.deb" in download["name"]:
            download_url = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            break

    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)

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

    # 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
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return result

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
36527ea69058b7d6f122a4f00c85a963d65ed73bdf989bfc8a1e7e347ae756ab : WAPT/control
9276eaee7406da4acedd4d7cae85a6cf041df867131323b231c24c65e223faae : WAPT/icon.png
68ed0834a94615e69fe74a2c51fc0b1140b1cd65bf8cbdd939f3b6f8737f8a8e : codium_1.109.31074_arm64.deb
9de6b88c634079b52f2e247ebd8f0060278f017b525b14d8b67cd44ee98d43b9 : luti.json
e76516b499356c5498ea04912f9b7c5781a58c8af4999804cb608abdbd672798 : setup.py
21b06df7a230c411e8bc6d31bea8e63b322efb3ea1c6bcd3161e5c1feb5dd1bd : update_package.py