tis-gitahead
2.7.1-1
GitAhead is a graphical Git client for Windows, Linux and macOS. It features a fast, native interface designed to help you understand and manage your source code history
258 downloads
Download
See build result See VirusTotal scan

- package : tis-gitahead
- name : GitAhead
- version : 2.7.1-1
- categories :
- maintainer : Amel FRADJ
- installed_size :
- editor :
- licence : MIT license
- signature_date : 2024-07-17T16:00:08.890763
- size : 31.16 Mo
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- Homepage : gitahead.com
package : tis-gitahead
version : 2.7.1-1
architecture : x64
section : base
priority : optional
name : GitAhead
categories :
maintainer : Amel FRADJ
description : GitAhead is a graphical Git client for Windows, Linux and macOS. It features a fast, native interface designed to help you understand and manage your source code history
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : GitAhead est un client Git graphique pour Windows, Linux et macOS. Il dispose d'une interface native rapide conçue pour vous aider à comprendre et à gérer l'historique de votre code source
description_pl : GitAhead to graficzny klient Git dla systemów Windows, Linux i macOS. Posiada szybki, natywny interfejs zaprojektowany, aby pomóc zrozumieć i zarządzać historią kodu źródłowego
description_de : GitAhead ist ein grafischer Git-Client für Windows, Linux und macOS. Er verfügt über eine schnelle, native Benutzeroberfläche, die Ihnen helfen soll, die Historie Ihres Quellcodes zu verstehen und zu verwalten
description_es : GitAhead es un cliente Git gráfico para Windows, Linux y macOS. Cuenta con una interfaz rápida y nativa diseñada para ayudarte a comprender y gestionar el historial de tu código fuente
description_pt : O GitAhead é um cliente Git gráfico para Windows, Linux e macOS. Tem uma interface rápida e nativa concebida para o ajudar a compreender e gerir o histórico do seu código-fonte
description_it : GitAhead è un client Git grafico per Windows, Linux e macOS. Ha un'interfaccia veloce e nativa, progettata per aiutarvi a comprendere e gestire la cronologia del vostro codice sorgente
description_nl : GitAhead is een grafische Git client voor Windows, Linux en macOS. Het heeft een snelle, native interface die is ontworpen om je te helpen de geschiedenis van je broncode te begrijpen en te beheren
description_ru : GitAhead - это графический Git-клиент для Windows, Linux и macOS. Он обладает быстрым, нативным интерфейсом, призванным помочь вам понять и управлять историей вашего исходного кода
audit_schedule :
editor :
keywords :
licence : MIT license
homepage : gitahead.com
package_uuid : 340de6f2-fd92-4e38-8cd8-2fcdd8cebb51
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : dd2447c098f9064f6fdb7331fd45b312ac4753c4bc392f6d82613a18d21e1722
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : dH3DPRlHlcXHCo1h9AqVBNrPRhtE1iKaZTq6RIbe+jDqnlCY4Lgvf/m2+oJRe7WqChEeeW2ZJY/mefKxURuhLtDLWbBS7XGq9tvW2VaXmkmjHIaLv3HDrklxxKuGMjFweYSNiuKaix7K1DM6ouRTeFd808dzu+sTc/VeU3oHRVqgWLG7ZU6Td6QatuxTRyjWTK5OnYHUeD9wQte70iPgqdt/SsXMXRowpysXDn7x2SUwL6Btjw3lrjMopBistuTDvMqeojMnF7cMqBALzrmoipjAn+4cszk5I3sNZtPMdj6ZElEZxvUlVEPUCvvJIvZxlumqX/gwO1TuDqw5Bxtxlg==
signature_date : 2024-07-17T16:00:08.890763
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 *
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('GitAhead-win64-*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S /allusers',
key='GitAhead',
min_version=control.get_software_version(),
)
# -*- 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 = "gitahead/gitahead"
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["browser_download_url"].endswith('.exe') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.exe'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
954b08a59512b7cd1429fa81ec0e03d748ab3f798bd2ee67b8745a34e71d87d9 : setup.py
: __pycache__
4b0253d986e7cee99955c93670f00381fa0c8b25d2f7c0c65d96077524a805d1 : update_package.py
dd2447c098f9064f6fdb7331fd45b312ac4753c4bc392f6d82613a18d21e1722 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
c56dbe2404b426bc8ac279f9295becd5a3dafdbf9f41c70b1cab789b03da2a2f : luti.json
6e51cd17e228ac2043e15f2b162048bf751547a91183c5b93336a0255c2306da : GitAhead-win64-2.7.1.exe
29d8cb27c9bc295c79bf41cad38102f515571e19a13819867d3813025bd16542 : WAPT/control