
- package: tis-vscodium
- name: VSCodium
- version: 1.82.2.23257-21
- categories: Development
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Microsoft
- licence: MIT
- locale: all
- target_os: debian(>=10),ubuntu
- impacted_process: VSCodium,codium
- architecture: x64
- signature_date:
- size: 87.16 Mo
- homepage : https://vscodium.com/
package : tis-vscodium
version : 1.82.2.23257-21
architecture : x64
section : base
priority : optional
name : VSCodium
categories : Development
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : VSCode (Visual Studio Code) without Microsoft branding/telemetry/licensing
depends :
conflicts :
maturity : PROD
locale : all
target_os : debian(>=10),ubuntu
min_wapt_version : 2.0
sources : https://github.com/VSCodium/vscodium/releases
installed_size :
impacted_process : VSCodium,codium
description_fr : VSCode (Visual Studio Code) sans les outils de télémétrie, marquage et licence Microsoft
description_pl : VSCode (Visual Studio Code) bez marki Microsoft/telemetrii/licencji
description_de : VSCode (Visual Studio Code) ohne Microsoft Branding/Telemetrie/Lizenzierung
description_es : VSCode (Visual Studio Code) sin marca/telemetría/licencia de Microsoft
description_pt : VSCode (Visual Studio Code) sem marca/telemetria/licenciamento Microsoft
description_it : VSCode (Visual Studio Code) senza marchio/telemetria/licenza Microsoft
description_nl : VSCode (Visual Studio Code) zonder Microsoft branding/telemetrie/licenties
description_ru : VSCode (Visual Studio Code) без брендинга/телеметрии/лицензирования Microsoft
audit_schedule :
editor : Microsoft
keywords : code,editor,debugger,visual,studio,vs,vscodium,codium
licence : MIT
homepage : https://vscodium.com/
package_uuid : 6d0ef711-1f8a-4432-9c48-b11cc2f24842
valid_from :
valid_until :
forced_install_on :
changelog : https://code.visualstudio.com/updates
min_os_version : 6.1
max_os_version :
icon_sha256sum : 45485096724fd036f82e16bbf746a2673024fd9972e697a2e9aaffd625a7b666
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : BZMlTjJW7Xap6YJ2T8g6l2luypV5TU80KzRfg0jSUN/JAhvmQ+nYc/LHQTZcq8FTo3SOG/60dY4nou7bxz1nS+P9hp7JWubp8bXi3GNWGT63haO7yTbo7fofubVfPK+mPekAB/LxYw58pAmQw1R9u1WW8w1JTwxJu4OsMcnLAIgT4BWpJAevZfvE5f3ZNdEIcQ0eSEGqE2eZvFnM2OdAaQNZbSzSuekUoFDtaJ7OrI3e1eD6+qh5aU9PdliQKeug0qFppu2w80f2JMcZ3jx4GTK4HwMFFd9yIdfsvCxmo3/L8EmfFYw/7G0Z2rDKGkv76P6vUYdNfs7ZHs3PIqA8hA==
signature_date : 2023-09-20T00:01:04.837145
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 *
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 download["name"].endswith('_amd64.deb') :
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
e76516b499356c5498ea04912f9b7c5781a58c8af4999804cb608abdbd672798 : setup.py
ea52cbc4400087f13517ef9f48d41d4ac2a7f8ccb456aa5a718a5f91c68244ba : update_package.py
c7d99758ea21c839cb6b39bb5c1c4679844a2180fa8d401c76cae3e248f7b065 : codium_1.82.2.23257_amd64.deb
45485096724fd036f82e16bbf746a2673024fd9972e697a2e9aaffd625a7b666 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
e5ae641a366b79f7e834a1c14bbce61cfe147378510d1d42ffab94e2b6bd0081 : WAPT/changelog.txt
d2e4079500c0f9360060606a7a7f7a8a7c3a9c005ee9703e6d07b36bc8f7b67a : luti.json
eae365ee5f7a71dfe2f586a0d7455e380fc8ef2ee3217d54b6a6eb012c50d673 : WAPT/control
https://code.visualstudio.com/updates
1.61.2-21
--------------------
Split arm and x64 packages