Merge pull request #14 from Stone-Red-Code/develop

Fix snapcraft manifest again
This commit is contained in:
Stone_Red
2026-03-06 14:49:23 +01:00
committed by GitHub
+15 -1
View File
@@ -1,6 +1,6 @@
name: yesnt name: yesnt
title: YesNt
version: "1.0.0.0" version: "1.0.0.0"
grade: stable
summary: A line-based, interpreted scripting language and terminal code editor summary: A line-based, interpreted scripting language and terminal code editor
description: | description: |
YesNt is a line-based, interpreted scripting language. The core idea is simple: each line maps to one primary statement. Lines are processed top-to-bottom, and inline tokens (like `${variable}` or `%read_line`) are substituted before the statement executes. Postfix modifiers like `calc` and `task` can also appear at the end of a line to evaluate arithmetic or fork execution into a background thread. YesNt is a line-based, interpreted scripting language. The core idea is simple: each line maps to one primary statement. Lines are processed top-to-bottom, and inline tokens (like `${variable}` or `%read_line`) are substituted before the statement executes. Postfix modifiers like `calc` and `task` can also appear at the end of a line to evaluate arithmetic or fork execution into a background thread.
@@ -30,14 +30,28 @@ parts:
plugin: dotnet plugin: dotnet
dotnet-version: '10.0' dotnet-version: '10.0'
dotnet-configuration: Release dotnet-configuration: Release
dotnet-self-contained: true
source: . source: .
dotnet-project: src/YesNt.Interpreter.App/YesNt.Interpreter.App.csproj dotnet-project: src/YesNt.Interpreter.App/YesNt.Interpreter.App.csproj
build-packages:
- clang
- zlib1g-dev
stage:
- -YesNt.Interpreter.*
- -*.dbg
yesntcode: yesntcode:
plugin: dotnet plugin: dotnet
dotnet-version: '10.0' dotnet-version: '10.0'
dotnet-configuration: Release dotnet-configuration: Release
dotnet-self-contained: true
source: . source: .
dotnet-project: src/YesNt.CodeEditor/YesNt.CodeEditor.csproj dotnet-project: src/YesNt.CodeEditor/YesNt.CodeEditor.csproj
build-packages:
- clang
- zlib1g-dev
stage:
- -YesNt.Interpreter.*
- -*.dbg
apps: apps:
yesnt: yesnt: