From 97f8bb7e86a58e948fa845b4807867c4957473ff Mon Sep 17 00:00:00 2001 From: Ivan Karlo Date: Thu, 30 Apr 2026 11:11:45 +0300 Subject: [PATCH 1/2] =?UTF-8?q?docs:=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=80=D0=B0=D0=B7=D0=B4=D0=B5?= =?UTF-8?q?=D0=BB=D0=B0=20=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=BA?= =?UTF-8?q?=D0=B8=20=D0=B4=D0=BB=D1=8F=20Linux=20=D0=B2=20README.md=20?= =?UTF-8?q?=D0=B8=20README-EN.md=20=D1=81=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC=20=D0=B8=D0=BD=D1=84=D0=BE?= =?UTF-8?q?=D1=80=D0=BC=D0=B0=D1=86=D0=B8=D0=B8=20=D0=BE=20=D0=B2=D0=B0?= =?UTF-8?q?=D1=80=D0=B8=D0=B0=D0=BD=D1=82=D0=B0=D1=85=20ZIP-=D0=B0=D1=80?= =?UTF-8?q?=D1=85=D0=B8=D0=B2=D0=BE=D0=B2=20=D0=B4=D0=BB=D1=8F=20.NET=208.?= =?UTF-8?q?0=20=D0=B8=20=D0=BD=D0=B5=D0=BE=D0=B1=D1=85=D0=BE=D0=B4=D0=B8?= =?UTF-8?q?=D0=BC=D1=8B=D1=85=20=D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=B8=D0=BC?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D1=8F=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README-EN.md | 18 ++++++++++++++++++ README.md | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/README-EN.md b/README-EN.md index 9c1476095..56d94750c 100644 --- a/README-EN.md +++ b/README-EN.md @@ -34,6 +34,16 @@ The OneScript distribution already includes a set of the most commonly used pack ### Linux ### +#### v2.x (current branch) — .NET 8.0 based + +Two ZIP archive variants are available: + +| Variant | Description | External dependencies | +|-------------------------------|--------------------------------------------|------------------------------------------------------------------------------------| +| **SCD** (self-contained) | .NET Runtime is bundled inside the archive | None | +| **FDD** (framework-dependent) | Smaller archive | Requires [.NET Runtime 8.0](https://learn.microsoft.com/dotnet/core/install/linux) | + +Installation steps: - Download the ZIP archive for Linux from the [Releases](https://github.com/EvilBeaver/OneScript/releases) section or from the [official website](https://oscript.io). - Extract the archive to a convenient directory. - Set executable permissions: @@ -41,6 +51,14 @@ The OneScript distribution already includes a set of the most commonly used pack chmod +x oscript ``` +The FDD variant requires .NET Runtime 8.0 — see installation instructions for your distribution at [learn.microsoft.com/dotnet/core/install/linux](https://learn.microsoft.com/dotnet/core/install/linux). + +#### v1.x LTS — deb package (Mono) + +The LTS branch is distributed as a `.deb` package and runs on Mono. The package automatically installs the minimum required Mono components; however, **the debugger requires `mono-complete`**. + +> **Important for debugging on Ubuntu/Debian:** if breakpoints are not being hit, install `mono-complete` from the **official Mono Project repository** (not from the distribution's default repositories). For instructions specific to your system, see the [Mono Project website](https://www.mono-project.com/download/stable/#download-lin). + ### MacOS ### - Download the ZIP archive for macOS (x64 or arm64) from the [Releases](https://github.com/EvilBeaver/OneScript/releases) section or from the [official website](https://oscript.io). diff --git a/README.md b/README.md index 95779d67d..4e9589a04 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,16 @@ OneScript позволяет создавать и выполнять текст ### Linux ### +#### v2.x (текущая ветка) — на базе .NET 8.0 + +Существуют два варианта ZIP-архива: + +| Вариант | Описание | Внешние зависимости | +|-------------------------------|----------------------------------|-------------------------------------------------------------------------------------| +| **SCD** (self-contained) | .NET Runtime уже включён в архив | Нет | +| **FDD** (framework-dependent) | Более компактный архив | Требуется [.NET Runtime 8.0](https://learn.microsoft.com/dotnet/core/install/linux) | + +Шаги установки: - Скачать ZIP-архив для Linux со [страницы релизов](https://github.com/EvilBeaver/OneScript/releases) или с [официального сайта](https://oscript.io). - Распаковать архив в удобный каталог. - Установить права на выполнение: @@ -41,6 +51,14 @@ OneScript позволяет создавать и выполнять текст chmod +x oscript ``` +Для FDD-варианта необходим .NET Runtime 8.0 — инструкция по установке на вашем дистрибутиве: [learn.microsoft.com/dotnet/core/install/linux](https://learn.microsoft.com/dotnet/core/install/linux). + +#### v1.x LTS — deb-пакет (Mono) + +LTS-ветка распространяется в виде `.deb`-пакета и работает на базе Mono. Пакет автоматически устанавливает минимально необходимые компоненты Mono, однако **для работы отладчика** требуется `mono-complete`. + +> **Важно для отладки на Ubuntu/Debian:** если точки останова не срабатывают, установите `mono-complete` из **официального репозитория Mono Project** (не из репозиториев дистрибутива). Инструкция для вашей системы — на [сайте Mono Project](https://www.mono-project.com/download/stable/#download-lin). + ### MacOS ### - Скачать ZIP-архив для macOS (x64 или arm64) со [страницы релизов](https://github.com/EvilBeaver/OneScript/releases) или с [официального сайта](https://oscript.io). From 8c222025158813322b5700887a220c8d8eab3af8 Mon Sep 17 00:00:00 2001 From: Ivan Karlo Date: Thu, 30 Apr 2026 12:08:59 +0300 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20=D0=BE=D0=B1=D0=BD=D0=BE=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B7=D0=B0=D0=B3=D0=BE=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=D0=BA=D0=BE=D0=B2=20=D0=B2=20README.md=20=D0=B8=20?= =?UTF-8?q?README-EN.md=20=D0=B4=D0=BB=D1=8F=20=D1=80=D0=B0=D0=B7=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D0=BE=D0=B2=20=D0=BE=20.NET=208.0=20=D0=B8=20LTS?= =?UTF-8?q?=20=D0=B2=D0=B5=D1=80=D1=81=D0=B8=D0=B8,=20=D0=B4=D0=BE=D0=B1?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=81=D0=B8=D0=BC?= =?UTF-8?q?=D0=B2=D0=BE=D0=BB=D0=BE=D0=B2=20=D0=B7=D0=B0=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D1=88=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README-EN.md | 6 +++--- README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README-EN.md b/README-EN.md index 56d94750c..36c6e80cb 100644 --- a/README-EN.md +++ b/README-EN.md @@ -34,7 +34,7 @@ The OneScript distribution already includes a set of the most commonly used pack ### Linux ### -#### v2.x (current branch) — .NET 8.0 based +#### v2.x (current branch) — .NET 8.0 based #### Two ZIP archive variants are available: @@ -48,12 +48,12 @@ Installation steps: - Extract the archive to a convenient directory. - Set executable permissions: ```bash - chmod +x oscript + chmod +x ./oscript ``` The FDD variant requires .NET Runtime 8.0 — see installation instructions for your distribution at [learn.microsoft.com/dotnet/core/install/linux](https://learn.microsoft.com/dotnet/core/install/linux). -#### v1.x LTS — deb package (Mono) +#### v1.x LTS — deb package (Mono) #### The LTS branch is distributed as a `.deb` package and runs on Mono. The package automatically installs the minimum required Mono components; however, **the debugger requires `mono-complete`**. diff --git a/README.md b/README.md index 4e9589a04..55b917ba8 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ OneScript позволяет создавать и выполнять текст ### Linux ### -#### v2.x (текущая ветка) — на базе .NET 8.0 +#### v2.x (текущая ветка) — на базе .NET 8.0 #### Существуют два варианта ZIP-архива: @@ -53,7 +53,7 @@ OneScript позволяет создавать и выполнять текст Для FDD-варианта необходим .NET Runtime 8.0 — инструкция по установке на вашем дистрибутиве: [learn.microsoft.com/dotnet/core/install/linux](https://learn.microsoft.com/dotnet/core/install/linux). -#### v1.x LTS — deb-пакет (Mono) +#### v1.x LTS — deb-пакет (Mono) #### LTS-ветка распространяется в виде `.deb`-пакета и работает на базе Mono. Пакет автоматически устанавливает минимально необходимые компоненты Mono, однако **для работы отладчика** требуется `mono-complete`.