
GitHub Desktop
Paquet d’installation silencieuse pour GitHub Desktop
3.4.20.0-1
- package: tis-github-desktop
- name: GitHub Desktop
- version: 3.4.20.0-1
- maintainer: Amelf
- licence: End-User License Agreement
- target_os: windows
- architecture: x64
- signature_date:
- size: 172.56 Mo
- homepage : https://desktop.github.com/
package : tis-github-desktop
version : 3.4.20.0-1
architecture : x64
section : base
priority : optional
name : GitHub Desktop
categories :
maintainer : Amelf
description : GitHub Desktop is a free, open source application that helps you to work with code hosted on GitHub or other Git hosting services. With GitHub Desktop, you can perform Git commands, such as committing and pushing changes, in a graphical user interface, rather than using the command line
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : GitHub Desktop est une application gratuite et open source qui vous aide à travailler avec du code hébergé sur GitHub ou d'autres services d'hébergement Git. Avec GitHub Desktop, vous pouvez exécuter des commandes Git, telles que la validation et le transfert de modifications, dans une interface utilisateur graphique, plutôt qu'en utilisant la ligne de commande
description_pl : GitHub Desktop to darmowa aplikacja typu open source, która pomaga w pracy z kodem hostowanym na GitHub lub innych usługach hostingowych Git. Dzięki GitHub Desktop można wykonywać polecenia Git, takie jak zatwierdzanie i wypychanie zmian, w graficznym interfejsie użytkownika, a nie za pomocą wiersza poleceń
description_de : GitHub Desktop ist eine kostenlose Open-Source-Anwendung, die Sie bei der Arbeit mit Code unterstützt, der auf GitHub oder anderen Git-Hosting-Diensten gehostet wird. Mit GitHub Desktop können Sie Git-Befehle, wie z. B. das Übertragen und Pushen von Änderungen, über eine grafische Benutzeroberfläche ausführen, anstatt die Befehlszeile zu verwenden
description_es : GitHub Desktop es una aplicación gratuita de código abierto que te ayuda a trabajar con código alojado en GitHub u otros servicios de alojamiento de Git. Con GitHub Desktop, puedes ejecutar comandos Git, como confirmar y enviar cambios, en una interfaz gráfica de usuario, en lugar de utilizar la línea de comandos
description_pt : O GitHub Desktop é uma aplicação gratuita e de código aberto que o ajuda a trabalhar com código alojado no GitHub ou noutros serviços de alojamento do Git. Com o GitHub Desktop, é possível executar comandos do Git, como fazer commit e push de alterações, numa interface gráfica de utilizador, em vez de utilizar a linha de comandos
description_it : GitHub Desktop è un'applicazione open source gratuita che aiuta a lavorare con il codice ospitato su GitHub o altri servizi di hosting Git. Con GitHub Desktop, è possibile eseguire i comandi di Git, come il commit e il push delle modifiche, in un'interfaccia grafica, invece di utilizzare la riga di comando
description_nl : GitHub Desktop is een gratis, open source applicatie die je helpt om te werken met code gehost op GitHub of andere Git hosting diensten. Met GitHub Desktop kun je Git commando's uitvoeren, zoals het committen en pushen van wijzigingen, in een grafische gebruikersinterface, in plaats van de commandoregel te gebruiken
description_ru : GitHub Desktop - это бесплатное приложение с открытым исходным кодом, которое помогает вам работать с кодом, размещенным на GitHub или других сервисах хостинга Git. С помощью GitHub Desktop вы можете выполнять команды Git, такие как фиксация и перенос изменений, в графическом интерфейсе, а не в командной строке
audit_schedule :
editor :
keywords :
licence : End-User License Agreement
homepage : https://desktop.github.com/
package_uuid : b659b01b-514b-490c-b361-56a5693d23e3
valid_from :
valid_until :
forced_install_on :
changelog : https://desktop.github.com/release-notes/
min_os_version :
max_os_version :
icon_sha256sum : 765d36cb54f7f19f06db31399d8a67781c148ae049435e2984a3601d2ee08d7a
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-05-26T15:00:19.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 : MQ8JjFsk6se41X5T/YrapHnSXOgl0uxy/QX8+BI7oKloICOl6KaUVIZG4613DNLnpuwjg4F5REw4xajHsRJcWn+IY+OvlrlNc6Kf+6/7p/MIN/6E1/tKecsBq5HZTsITn/PAQ2lHqUHYiVxiTzoLQNz4D+xlHvBNTfOV9BjsFaYqcUKYwT8bWook/X5qrm3AozS5yuCubqF5inyq2HZO9uz0Hv0G0KJ8RKZwLPUAbmdWdJFLKlQ0G1UaS2fcUWP6GhSgxzZ1frRwLcTdfTkGoUVHfsikdZNLOJd7yOG1rjrhvRLlif+8aG0O6+YSUdovl/pmqkwvpxVNV27bYAa1VA==
# -*- 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("GitHubDesktopSetup-*.msi")[0]
# Installing the software
install_msi_if_needed(
bin_name,
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_dict = {
"windows": " https://central.github.com/deployments/desktop/desktop/latest/win32?format=msi",
}
download_url = download_dict[ensure_list(control.target_os)[0]]
latest_bin = "GitHubDesktopSetup-x64.msi"
# Deleting binaries
remove_outdated_binaries("*")
# 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)
else:
print("Binary is present: %s" % latest_bin)
latest_version=get_msi_properties(latest_bin)["ProductVersion"]
# Updating the package
control.set_software_version(latest_version)
control.save_control_to_wapt()
return package_updated
c142e1e7974b4a44b0544e29d0d4dbe9b214c619297e0f50b56f22b8ab8f7ede : GitHubDesktopSetup-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
0269ac17d13e09834e3bacdfb76e07dd97fba5462879ecc478b182e16b5b0860 : WAPT/control
765d36cb54f7f19f06db31399d8a67781c148ae049435e2984a3601d2ee08d7a : WAPT/icon.png
f11984ce61597e7c32ebb7403fd5d9f04b9ab5b5ba78d6770c0acc21659215ab : luti.json
6f214d9eafcf5a645f68eb83d10e38056c4343a14b0310b44029e6f4841ed96b : setup.py
61018786539ad5e9d974fcfcad9bb91db002e66a738f10edef8e58fc72de6a2d : update_package.py