-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the rockspec and made iup text box the default terminal control
- Loading branch information
Showing
4 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package = "LuaTerminal" | ||
version = "1.16.06.16-1" | ||
source = { | ||
url = "https://github.com/aryajur/LuaTerminal.git", | ||
tag = "1.16.06" | ||
} | ||
description = { | ||
summary = "To provide Lua Terminal GUI element using the IUP toolkit", | ||
detailed = [[ | ||
LuaTerminal is a standalone Lua 5.2+ module that allows you to create a Lua terminal in a IUP text box/scintilla or opens a socket terminal allowing remote dumb consoles to remotely execute lua code and receive responses or it can have both running simultaneously with multiple instances of each. | ||
]], | ||
homepage = "http://www.amved.com/milindsweb/LuaTerminal.html", | ||
license = "MIT" | ||
} | ||
dependencies = { | ||
"lua >= 5.2", | ||
"luasocket", | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
LuaTerminal = "src/LuaTerminal.lua" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
for i = 1,5 do | ||
print("Hello") | ||
end | ||
Hello | ||
Hello | ||
Hello | ||
Hello | ||
Hello | ||
>exit | ||
; | ||
stdin:2: syntax error near ';' | ||
> |