en:download

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
en:download [2025/09/18 08:38] 92.184.102.193en:download [2026/04/03 14:40] (Version actuelle) – [Linux] root
Ligne 1: Ligne 1:
-===== Donwload=====+===== Downloads =====
 ==== Linux ==== ==== Linux ====
-^ OS ^ Version ^ Link^ Hash ^ +^ OS ^ Version ^ MD5 Hash ^ Comment ^ Direct link to ''deb'' 
-| Debian | 0.| {{ :wlanguage_0.2.deb |Alpha release}} | To-do +| Debian | 0.6 | ''3739c7c98401e74d348997420edab20c''\\ ''a3550cd4cf464264c0009140bfe56fa4'' | Version 15/03/2026 | {{https://lanisys.fr/wdeb/wlanguage_0.6.0-1~trixie_amd64.deb|wLanguage 0.6 Trixie}}\\ {{https://lanisys.fr/wdeb/wlanguage_0.6.0-1~bookworm_amd64.deb|wLanguage 0.6 Bookworm}} 
-Installation : ''dpkg -i wlanguage_xx.xx.deb''+| Debian | 0.5 | -\\ - | Version 28/02/2026 | {{https://lanisys.fr/wdeb/wlanguage_0.5.0-1~trixie_amd64.deb|wLanguage 0.5 Trixie}}\\ {{https://lanisys.fr/wdeb/wlanguage_0.5.0-1~bookworm_amd64.deb|wLanguage 0.5 Bookworm}} | 
 +=== Debian === 
 +To manage installations/updates/uninstallations with the system tool ''apt'', declare the W repository: 
 +<code bash> 
 +apt update 
 +apt install ca-certificates curl 
 +curl -fsSL http://apt.lanisys.fr/public.key -o /etc/apt/keyrings/wlanguage.gpg 
 +tee /etc/apt/sources.list.d/wlanguage.sources <<EOF 
 +Types: deb 
 +URIs: http://apt.lanisys.fr 
 +Suites: $(. /etc/os-release && echo "$VERSION_CODENAME"
 +Components: main 
 +Signed-By: /etc/apt/keyrings/wlanguage.gpg 
 +EOF 
 +apt update 
 +</code> 
 +Then install W : 
 +<code bash> 
 +apt install wlanguage 
 +</code> 
 +//Note//: To manually install a ''.deb'' file, navigate to the //deb// file's directory, and so on : 
 +<code bash> 
 +# example 
 +sudo apt install ./wlanguage_0.5.0-1~trixie_amd64.deb 
 +</code>
 ==== Windows ==== ==== Windows ====
 +^ OS ^ Version ^ Link^ MD5 Hash ^ Comment ^ 
 +| Debian | 0.6 | {{https://lanisys.fr/wexe/wLanguage_installer_0.6.0.EXE|wLanguage 0.6}}| ''07edf3f6cc252f2ad666c2da8c53b5cb'' | Version 15/03/2026 |
 +| Debian | 0.5 | {{https://lanisys.fr/wexe/wLanguage_installer_0.5.0.EXE|wLanguage 0.5}}| - | Version 28/02/2026 |
 +Run the installer as administrator.\\
 +To uninstall W, go to the directory ''C:\Program Files\wLanguage'' and run ''uninstall.bat'' as administrator.
 +==== Hash calculation ====
 +For fun, here's the code for the program that calculates the hash in W :
 +<code wlang hash.w>
 +begin
 +    declare file, md5, path
 +    let file = ''
 +    let md5 = ''
 +    let path = field(@arg, @fm, 2)
 +    part 1
 +    invoke file&get(path, file)
 +    part 2
 +    invoke hash&MD5(file, md5)
 +    echonl 'MD5 => ':md5
 +except
 +    if @part = 1 then
 +        echonl 'Cannot open file ':path
 +    endif
 +end
 +</code>
  • en/download.1758184683.txt.gz
  • Dernière modification : 2025/09/18 08:38
  • de 92.184.102.193