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

@@ -2,13 +2,18 @@
title = "CrossLang"
type = "home"
+++
> Rest in Peace Charlie Kirk (He died too soon)
My dynamic programming language
- [Try It In Browser](https://crosslang.tesseslanguage.com/try-crosslang/)
- [Try It In Browser (Old version)](https://crosslang.tesseslanguage.com/try-crosslang/)
```
For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. (John 3.16)
```
```
Ye are of God, little children, and have overcome them: because greater is he that is in you, than he that is in the world. (1 John 4:4)
```

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
+++

View File

@@ -0,0 +1,128 @@
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://crosslang.tesseslanguage.com/schema/cross-json-schema.json",
"title": "CrossLang Project File",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"icon": {
"type": "string"
},
"info": {
"type": "object",
"properties": {
"type": {
"type": "string",
"examples": ["console","lib","webapp","template","compile_tool","tool"]
},
"plugin_host": {
"type": "string"
},
"maintainer": {
"type": "string"
},
"repo": {
"type": "string"
},
"homepage": {
"type": "string"
},
"license": {
"type": "string"
},
"description": {
"type": "string"
},
"executable_name": {
"type": "string"
},
"executable_can_be_renamed": {
"type": "string"
},
"executable_runtime": {
"type": "string"
},
"template_ignored_files": {
"type": "array",
"items": {
"type": "string"
}
},
"template_info": {
"type": "object",
"properties": {
"type": {
"type": "string",
"examples": ["console","lib","webapp","template","compile_tool","tool"]
},
"plugin_host": {
"type": "string"
},
"maintainer": {
"type": "string"
},
"repo": {
"type": "string"
},
"homepage": {
"type": "string"
},
"license": {
"type": "string"
},
"description": {
"type": "string"
},
"executable_name": {
"type": "string"
},
"executable_can_be_renamed": {
"type": "string"
},
"executable_runtime": {
"type": "string"
}
},
"required": ["type"]
}
},
"required": ["type"]
},
"resource_directory": {
"type": "string"
},
"source_directory": {
"type": "string"
},
"bin_directory": {
"type": "string"
},
"obj_directory": {
"type": "string"
},
"project_dependencies": {
"type": "array",
"items": {"type":"string"}
},
"dependencies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": ["name","version"]
}
}
},
"required": ["name","version","info"]
}