Update website

This commit is contained in:
2025-10-18 22:23:51 -05:00
parent 6ced2b152e
commit 495bbb8464
7 changed files with 183 additions and 37 deletions

View File

@@ -4,6 +4,6 @@ type = "chapter"
weight = 1
+++
- [Linux](linux)
- [Windows](windows.md)
- [Linux](linux.md)
- [Shell Binary](https://downloads.tesses.net/ShellPackage.crvm)

View File

@@ -1,34 +0,0 @@
+++
title = 'Linux Downloads'
date = 2025-08-31T22:09:31-05:00
+++
# Install using package manager
Ubuntu 22:04 or later, and doesn't work on debian trixie (or maybe earlier) or later due to mbedtls
## Install Repository
````bash
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian jammy main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
sudo apt update
````
## Install the language
````bash
sudo apt install crosslang
````
## Or the IDE
The IDE can also be downloaded from [here](https://dl.tesseslanguage.com/CrossLangDevStudio-x86_64.tar.gz), make sure that crosslang is in your path though
````bash
sudo apt install crosslang-devstudio # FOR IDE as well
````
# Or you can Download as tarball
[x86_64](https://dl.tesseslanguage.com/crosslang-x86_64.tar.gz)
# Or use this docker container
```onedev.site.tesses.net/crosslang/crosslangextras/crosslangextras:latest``` (no IDE though)

View File

@@ -0,0 +1,15 @@
+++
title = 'Linux'
date = 2025-09-24T20:19:48-05:00
+++
# Package Managers
- [Ubuntu](ubuntu.md)
# Tarballs
- [x86_64](https://dl.tesseslanguage.com/crosslang-x86_64.tar.gz)
# Containers
- CLI x86_64 ```onedev.site.tesses.net/crosslang/crosslangextras/crosslangextras:latest``` (no IDE though)

View File

@@ -0,0 +1,32 @@
+++
title = 'Ubuntu'
date = 2025-09-24T20:29:28-05:00
+++
This requires Ubuntu 22:04 or later.
## Install the repository (For Ubuntu jammy - oracular)
````bash
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian jammy main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
sudo apt update
````
## Install the repository (For Ubuntu plucky or later)
````bash
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian plucky main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
sudo apt update
````
## Install the language (also installs tesses-framework)
````bash
sudo apt install crosslang
````
## Or the IDE
````bash
sudo apt install crosslang-devstudio # FOR IDE as well
````

View File

@@ -1,5 +1,5 @@
+++
title = 'Windows Downloads'
title = 'Windows'
date = 2025-08-31T22:09:58-05:00
+++